|
|
@ -15,14 +15,13 @@ import org.springframework.http.MediaType;
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* <pre>
|
|
|
|
* <pre>
|
|
|
|
* description : 전자문서 중개자 모바일 페이지 API Controller
|
|
|
|
* description : 전자문서 중개자 모바일 페이지 API Controller
|
|
|
|
*
|
|
|
|
* - mens-web에서 호출
|
|
|
|
* packageName : kr.xit.biz.mbl.web
|
|
|
|
* packageName : kr.xit.biz.mbl.web
|
|
|
|
* fileName : MobilePageController
|
|
|
|
* fileName : MobilePageController
|
|
|
|
* author : limju
|
|
|
|
* author : limju
|
|
|
@ -42,9 +41,13 @@ public class MobilePageController {
|
|
|
|
private final IMobilePageService service;
|
|
|
|
private final IMobilePageService service;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
|
|
|
|
* <pre>
|
|
|
|
* 카카오 모바일 페이지 요청
|
|
|
|
* 카카오 모바일 페이지 요청
|
|
|
|
* @param reqDTO
|
|
|
|
* - mens-web에서 호출 : {@code EnsMobileApiClientController.findKkoMyDocReadyAndMblPage}
|
|
|
|
|
|
|
|
* <a href="http://localhost:8080/api/web/mbl/v1/kko/mblPage.do">kakao mobile page</a>
|
|
|
|
|
|
|
|
* @param reqDTO OneTimeToken
|
|
|
|
* @return IApiResponse 모바일 페이지 데이타 String return
|
|
|
|
* @return IApiResponse 모바일 페이지 데이타 String return
|
|
|
|
|
|
|
|
* </pre>
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Operation(summary = "카카오 모바일 데이타 요청(모바일 페이지에서 호출)", description = "카카오 모바일 데이타 요청(모바일 페이지에서 호출)")
|
|
|
|
@Operation(summary = "카카오 모바일 데이타 요청(모바일 페이지에서 호출)", description = "카카오 모바일 데이타 요청(모바일 페이지에서 호출)")
|
|
|
|
@PostMapping(value = "/kko/mblPage", produces = MediaType.APPLICATION_JSON_VALUE)
|
|
|
|
@PostMapping(value = "/kko/mblPage", produces = MediaType.APPLICATION_JSON_VALUE)
|
|
|
@ -60,20 +63,26 @@ public class MobilePageController {
|
|
|
|
* -> callback url ? token=... 형태로
|
|
|
|
* -> callback url ? token=... 형태로
|
|
|
|
* - 토큰인증확인조회요청(BC-AG-SN-008) API call
|
|
|
|
* - 토큰인증확인조회요청(BC-AG-SN-008) API call
|
|
|
|
* - 토큰열람확인결과 전송(BC-AG-SN-009) API call
|
|
|
|
* - 토큰열람확인결과 전송(BC-AG-SN-009) API call
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* - mens-web에서 호출 : {@code EnsMobileApiClientController.findKtMblPage}
|
|
|
|
|
|
|
|
* <a href="http://localhost:8080/api/web/mbl/v1/kt/dpMblPage.do?token=">KT DP mobile page</a>
|
|
|
|
|
|
|
|
* - mens-web에서 호출 : {@code EnsMobileApiClientController.findKtMblPage}
|
|
|
|
|
|
|
|
* <a href="http://localhost:8080/api/web/mbl/v1/kt/meMblPage.do?token=">KT ME mobile page</a>
|
|
|
|
|
|
|
|
*
|
|
|
|
* @param token OTT token
|
|
|
|
* @param token OTT token
|
|
|
|
* @param request HttpServletRequest
|
|
|
|
* @param request HttpServletRequest
|
|
|
|
* @return IApiResponse 모바일 페이지 데이타 String return
|
|
|
|
* @return IApiResponse 모바일 페이지 데이타 String return
|
|
|
|
* </pre>
|
|
|
|
* </pre>
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Operation(summary = "KT 모바일 데이타 요청(모바일 페이지에서 호출)", description = "KT 모바일 데이타 요청(모바일 페이지에서 호출)")
|
|
|
|
@Operation(summary = "KT 모바일 데이타 요청(모바일 페이지에서 호출)", description = "KT 모바일 데이타 요청(모바일 페이지에서 호출)")
|
|
|
|
// @PostMapping(
|
|
|
|
@PostMapping(
|
|
|
|
// value = {"/kt/dp_mblPage", "/kt/me_mblPage"},
|
|
|
|
|
|
|
|
// produces = MediaType.APPLICATION_JSON_VALUE)
|
|
|
|
|
|
|
|
@RequestMapping(
|
|
|
|
|
|
|
|
method = {RequestMethod.GET, RequestMethod.POST},
|
|
|
|
|
|
|
|
value = {"/kt/dpMblPage", "/kt/meMblPage"},
|
|
|
|
value = {"/kt/dpMblPage", "/kt/meMblPage"},
|
|
|
|
produces = MediaType.APPLICATION_JSON_VALUE)
|
|
|
|
produces = MediaType.APPLICATION_JSON_VALUE)
|
|
|
|
public IApiResponse cfmTokenDp(@RequestParam final String token, final HttpServletRequest request) {
|
|
|
|
// @RequestMapping(
|
|
|
|
|
|
|
|
// method = {RequestMethod.GET, RequestMethod.POST},
|
|
|
|
|
|
|
|
// value = {"/kt/dpMblPage", "/kt/meMblPage"},
|
|
|
|
|
|
|
|
// produces = MediaType.APPLICATION_JSON_VALUE)
|
|
|
|
|
|
|
|
public IApiResponse findKtMblPage(@RequestParam final String token, final HttpServletRequest request) {
|
|
|
|
final String uri = request.getRequestURI();
|
|
|
|
final String uri = request.getRequestURI();
|
|
|
|
final KtTokenDTO.KtTokenConfirmRequest cfmReqDTO = KtTokenDTO.KtTokenConfirmRequest.builder()
|
|
|
|
final KtTokenDTO.KtTokenConfirmRequest cfmReqDTO = KtTokenDTO.KtTokenConfirmRequest.builder()
|
|
|
|
.signguCode(SignguCode.TRAFFIC.getCode())
|
|
|
|
.signguCode(SignguCode.TRAFFIC.getCode())
|
|
|
|