|
|
@ -1,6 +1,7 @@
|
|
|
|
package kr.xit.biz.mbl.service;
|
|
|
|
package kr.xit.biz.mbl.service;
|
|
|
|
|
|
|
|
|
|
|
|
import kr.xit.biz.ens.model.kakao.KkopayDocDTO;
|
|
|
|
import kr.xit.biz.ens.model.kakao.KkopayDocDTO;
|
|
|
|
|
|
|
|
import kr.xit.biz.ens.model.kt.KtCommonDTO;
|
|
|
|
import kr.xit.biz.ens.model.kt.KtTokenDTO;
|
|
|
|
import kr.xit.biz.ens.model.kt.KtTokenDTO;
|
|
|
|
import kr.xit.biz.mbl.mapper.IMobilePageMapper;
|
|
|
|
import kr.xit.biz.mbl.mapper.IMobilePageMapper;
|
|
|
|
import kr.xit.biz.mbl.model.MobilePageDTO.MobilePageManage;
|
|
|
|
import kr.xit.biz.mbl.model.MobilePageDTO.MobilePageManage;
|
|
|
@ -94,9 +95,9 @@ public class MobilePageService extends EgovAbstractServiceImpl implements IMobil
|
|
|
|
@TraceLogging
|
|
|
|
@TraceLogging
|
|
|
|
public IApiResponse findKtMblPage(final KtTokenDTO.KtTokenConfirmRequest reqDTO) {
|
|
|
|
public IApiResponse findKtMblPage(final KtTokenDTO.KtTokenConfirmRequest reqDTO) {
|
|
|
|
//TODO::테스트
|
|
|
|
//TODO::테스트
|
|
|
|
MobilePageManage mblDTO = mapper.selectKtMobilePage("DPDKT202311080000111");
|
|
|
|
//MobilePageManage mblDTO = mapper.selectKtMobilePage("DPDKT202311080000111");
|
|
|
|
return ApiResponseDTO.success(mblDTO.getMobilePageCn());
|
|
|
|
//return ApiResponseDTO.success(mblDTO.getMobilePageCn());
|
|
|
|
/*
|
|
|
|
|
|
|
|
//TODO::실운영시 코멘트 제거
|
|
|
|
//TODO::실운영시 코멘트 제거
|
|
|
|
if (Checks.isEmpty(reqDTO.getAccessToken()))
|
|
|
|
if (Checks.isEmpty(reqDTO.getAccessToken()))
|
|
|
|
throw BizRuntimeException.create(String.valueOf(ErrorCode.BAD_REQUEST.getHttpStatus().value()), "정상적인 요청이 아닙니다. 재인증 후 시도하시기 바랍니다.");
|
|
|
|
throw BizRuntimeException.create(String.valueOf(ErrorCode.BAD_REQUEST.getHttpStatus().value()), "정상적인 요청이 아닙니다. 재인증 후 시도하시기 바랍니다.");
|
|
|
@ -116,17 +117,11 @@ public class MobilePageService extends EgovAbstractServiceImpl implements IMobil
|
|
|
|
|
|
|
|
|
|
|
|
if(readRes.getResultCd().equals("00")){
|
|
|
|
if(readRes.getResultCd().equals("00")){
|
|
|
|
String srcKey = cfmRes.getSrcKey();
|
|
|
|
String srcKey = cfmRes.getSrcKey();
|
|
|
|
log.error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ read token result - {}@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", readRes.getResultCd());
|
|
|
|
|
|
|
|
final MobilePageManage mobilePageManage = mapper.selectKtMobilePage(srcKey);
|
|
|
|
final MobilePageManage mobilePageManage = mapper.selectKtMobilePage(srcKey);
|
|
|
|
return ApiResponseDTO.success(mobilePageManage.getMobilePageCn());
|
|
|
|
return ApiResponseDTO.success(mobilePageManage.getMobilePageCn());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ read token result - {} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", readRes.getResultCd());
|
|
|
|
|
|
|
|
log.error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ read token result error - {} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", readRes.toStringErrorMsg());
|
|
|
|
|
|
|
|
throw BizRuntimeException.create(readRes.getResultCd(), readRes.toStringErrorMsg());
|
|
|
|
throw BizRuntimeException.create(readRes.getResultCd(), readRes.toStringErrorMsg());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ token confirm result - {} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", cfmRes.getResultCd());
|
|
|
|
|
|
|
|
log.error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ token confirm result error - {} @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", cfmRes.toStringErrorMsg());
|
|
|
|
|
|
|
|
throw BizRuntimeException.create(cfmRes.getResultCd(), cfmRes.toStringErrorMsg());
|
|
|
|
throw BizRuntimeException.create(cfmRes.getResultCd(), cfmRes.toStringErrorMsg());
|
|
|
|
*/
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|