|
@ -6,6 +6,7 @@ import com.yihu.jw.entity.base.login.BaseLoginLogDO;
|
|
import com.yihu.jw.entity.base.patient.BasePatientDO;
|
|
import com.yihu.jw.entity.base.patient.BasePatientDO;
|
|
import com.yihu.jw.entity.ylzinfo.OauthYlzConfigDO;
|
|
import com.yihu.jw.entity.ylzinfo.OauthYlzConfigDO;
|
|
import com.yihu.jw.restmodel.ResultStatus;
|
|
import com.yihu.jw.restmodel.ResultStatus;
|
|
|
|
import com.yihu.jw.restmodel.web.Envelop;
|
|
import com.yihu.jw.restmodel.web.ObjEnvelop;
|
|
import com.yihu.jw.restmodel.web.ObjEnvelop;
|
|
import com.yihu.jw.security.core.userdetails.jdbc.WlyyUserDetailsService;
|
|
import com.yihu.jw.security.core.userdetails.jdbc.WlyyUserDetailsService;
|
|
import com.yihu.jw.security.dao.OauthKeypairDao;
|
|
import com.yihu.jw.security.dao.OauthKeypairDao;
|
|
@ -633,7 +634,7 @@ public class WlyyLoginEndpoint extends AbstractEndpoint {
|
|
}
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/oauth/getHwlyyDecrypt", method = RequestMethod.POST)
|
|
@RequestMapping(value = "/oauth/getHwlyyDecrypt", method = RequestMethod.POST)
|
|
public ObjEnvelop getHwlyyDecrypt(String openid,String idcard,String wechatId){
|
|
|
|
|
|
public ObjEnvelop getHwlyyDecrypt(String openid,String idcard,String wechatId,String code){
|
|
Map<String,Object> rs = new HashedMap();
|
|
Map<String,Object> rs = new HashedMap();
|
|
try{
|
|
try{
|
|
OauthKeypairDO keypairDO = oauthKeypairDao.findByCode("hwlyyKey");
|
|
OauthKeypairDO keypairDO = oauthKeypairDao.findByCode("hwlyyKey");
|
|
@ -644,6 +645,14 @@ public class WlyyLoginEndpoint extends AbstractEndpoint {
|
|
}else {
|
|
}else {
|
|
rs.put("idcard",idcard);
|
|
rs.put("idcard",idcard);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
//解析code
|
|
|
|
if(org.apache.commons.lang3.StringUtils.isNotBlank(code)){
|
|
|
|
rs.put("code",com.yihu.jw.security.utils.RSAUtils.decryptBase64(code, keyPair));
|
|
|
|
}else {
|
|
|
|
rs.put("code",code);
|
|
|
|
}
|
|
|
|
|
|
//解密wechatId
|
|
//解密wechatId
|
|
if(org.apache.commons.lang3.StringUtils.isNotBlank(wechatId)){
|
|
if(org.apache.commons.lang3.StringUtils.isNotBlank(wechatId)){
|
|
String wxid =com.yihu.jw.security.utils.RSAUtils.decryptBase64(wechatId, keyPair);
|
|
String wxid =com.yihu.jw.security.utils.RSAUtils.decryptBase64(wechatId, keyPair);
|
|
@ -748,22 +757,29 @@ public class WlyyLoginEndpoint extends AbstractEndpoint {
|
|
if (StringUtils.isEmpty(code)) {
|
|
if (StringUtils.isEmpty(code)) {
|
|
throw new InvalidRequestException("doctor is null");
|
|
throw new InvalidRequestException("doctor is null");
|
|
}
|
|
}
|
|
KeyPair keyPair = (KeyPair) httpSession.getAttribute("privateKey");
|
|
|
|
String doctorCode = com.yihu.jw.security.utils.RSAUtils.decryptBase64(code, keyPair);
|
|
|
|
|
|
|
|
JSONObject map = oauthWlyyConfigService.checkWlyyDoctor(doctorCode);
|
|
|
|
|
|
// KeyPair keyPair = (KeyPair) httpSession.getAttribute("privateKey");
|
|
|
|
// String doctorCode = com.yihu.jw.security.utils.RSAUtils.decryptBase64(code, keyPair);
|
|
|
|
|
|
|
|
JSONObject map = null;
|
|
|
|
try{
|
|
|
|
map= oauthWlyyConfigService.checkWlyyDoctor(code);
|
|
|
|
}catch (Exception e){
|
|
|
|
logger.error(e);
|
|
|
|
return ObjEnvelop.getError("授权失败");
|
|
|
|
}
|
|
String authCode = map.getString("authCode");
|
|
String authCode = map.getString("authCode");
|
|
if(!"1".equals(authCode)){
|
|
if(!"1".equals(authCode)){
|
|
return ObjEnvelop.getSuccess("error",map);
|
|
|
|
|
|
map.remove("doctor");
|
|
|
|
return ObjEnvelop.getError("授权失败");
|
|
}
|
|
}
|
|
|
|
|
|
ClientDetails authenticatedClient = clientDetailsService.loadClientByClientId(client_id);
|
|
ClientDetails authenticatedClient = clientDetailsService.loadClientByClientId(client_id);
|
|
JSONObject doctor = map.getJSONObject("doctor");
|
|
JSONObject doctor = map.getJSONObject("doctor");
|
|
Map<String, String> parameters = new HashedMap();
|
|
Map<String, String> parameters = new HashedMap();
|
|
|
|
|
|
|
|
parameters.put("login_type","2");
|
|
parameters.put("username",doctor.getString("idcard"));
|
|
parameters.put("username",doctor.getString("idcard"));
|
|
parameters.put("grant_type", "ihealthCode");
|
|
|
|
|
|
parameters.put("grant_type", "ihealthDcotor");
|
|
|
|
|
|
TokenRequest tokenRequest = oAuth2RequestFactory.createTokenRequest(parameters, authenticatedClient);
|
|
TokenRequest tokenRequest = oAuth2RequestFactory.createTokenRequest(parameters, authenticatedClient);
|
|
if (authenticatedClient != null) {
|
|
if (authenticatedClient != null) {
|