拷贝阿里调用药品查询接口到国家库

v3
qiuyt 3 months ago
parent 737c4ea464
commit f168f77605

@ -0,0 +1,66 @@
package com.glxp.udidl.admin.constant;
public class AliConstants {
public static final String APP_KEY = "app_key";
public static final String FORMAT = "format";
public static final String METHOD = "method";
public static final String TIMESTAMP = "timestamp";
public static final String VERSION = "v";
public static final String SIGN = "sign";
public static final String SIGN_METHOD = "sign_method";
public static final String PARTNER_ID = "partner_id";
public static final String SESSION = "session";
public static final String SIMPLIFY = "simplify";
public static final String TARGET_APP_KEY = "target_app_key";
public static final String ERROR_RESPONSE = "error_response";
public static final String ERROR_CODE = "code";
public static final String ERROR_MSG = "msg";
public static final String ERROR_SUB_CODE = "sub_code";
public static final String ERROR_SUB_MSG = "sub_msg";
public static final String QIMEN_CLOUD_ERROR_RESPONSE = "response";
public static final String QM_ROOT_TAG = "request";
public static final String QM_CUSTOMER_ID = "customerId";
public static final String QM_CONTENT_TYPE = "text/xml;charset=utf-8";
public static final String QM_CONTENT_TYPE_JSON = "application/json;charset=utf-8";
public static final String DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm:ss";
public static final String DATE_TIMEZONE = "GMT+8";
public static final String CHARSET_UTF8 = "UTF-8";
public static final String METHOD_POST = "POST";
public static final String METHOD_GET = "GET";
public static final String CTYPE_FORM_DATA = "application/x-www-form-urlencoded";
public static final String CTYPE_FILE_UPLOAD = "multipart/form-data";
public static final String CTYPE_TEXT_XML = "text/xml";
public static final String CTYPE_APPLICATION_XML = "application/xml";
public static final String CTYPE_TEXT_PLAIN = "text/plain";
public static final String CTYPE_APP_JSON = "application/json";
public static final String CHARSET_GBK = "GBK";
public static final String FORMAT_JSON = "json";
public static final String FORMAT_XML = "xml";
public static final String FORMAT_JSON2 = "json2";
public static final String FORMAT_XML2 = "xml2";
public static final String SIGN_METHOD_MD5 = "md5";
public static final String SIGN_METHOD_HMAC = "hmac";
public static final String SIGN_METHOD_HMAC_SHA256 = "hmac-sha256";
public static final String SDK_VERSION = "top-sdk-java-20201231";
public static final String SDK_VERSION_CLUSTER = "top-sdk-java-cluster-20201231";
public static final String SDK_VERSION_HTTPDNS = "top-sdk-java-httpdns-20201231";
public static final String QIMEN_SDK_VERSION_HTTPDNS = "top-qimen-sdk-java-httpdns";
public static final String ACCEPT_ENCODING = "Accept-Encoding";
public static final String CONTENT_ENCODING = "Content-Encoding";
public static final String CONTENT_ENCODING_GZIP = "gzip";
public static final String MIME_TYPE_DEFAULT = "application/octet-stream";
public static final int READ_BUFFER_SIZE = 4096;
public static final String TOP_HTTP_DNS_HOST = "TOP_HTTP_DNS_HOST";
public static final String CONTENT_TYPE_XML = "xml";
public static final String CONTENT_TYPE_JSON = "json";
public static final String CONTENT_TYPE_FORM = "form";
public static final String RESPONSE_TYPE_TOP = "top";
public static final String RESPONSE_TYPE_QIMEN = "qimen1";
public static final String RESPONSE_TYPE_QIMEN2 = "qimen2";
public static final String RESPONSE_TYPE_DINGTALK_OAPI = "dingtalk";
public static final String CALL_TYPE_TOP = "top";
public static final String CALL_TYPE_OAPI = "oapi";
public AliConstants() {
}
}

@ -0,0 +1,9 @@
package com.glxp.udidl.admin.dao.auth;
import com.glxp.udidl.admin.dao.BaseMapperPlus;
import com.glxp.udidl.admin.entity.auth.AuthAliUser;
public interface AuthAliUserDao extends BaseMapperPlus<AuthAliUser, AuthAliUser, AuthAliUser> {
}

@ -0,0 +1,40 @@
package com.glxp.udidl.admin.entity.auth;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@TableName("auth_ali_user")
@Data
public class AuthAliUser {
private Long id;
/**
* ID
*/
@TableField(value = "erpid")
private String erpid;
/**
* KEY
*/
@TableField(value = "appkey")
private String appkey;
/**
*
*/
@TableField(value = "appsecret")
private String appsecret;
/**
*
*/
@TableField(value = "refentid")
private String refentid;
/**
* 1 2
*/
@TableField(value = "type")
private String type;
}

@ -0,0 +1,53 @@
package com.glxp.udidl.admin.req.alihealth;
import lombok.Data;
/**
*
*/
@Data
public class AlihealthKytCommonParametersReqeust {
/**
* API
*/
private String method;
/**
* key
*/
private String app_key;
/**
*
*/
private String session;
/**
*
*/
private String timestamp;
/**
*
*/
private String v;
/**
*
*/
private String sign_method;
/**
*
*/
private String sign;
/**
*
*/
private String format;
// /**
// * 精简开关
// */
// private boolean simplify;
public AlihealthKytCommonParametersReqeust(){
this.v = "2.0";
this.sign_method = "md5";
this.format = "json";
}
}

@ -0,0 +1,23 @@
package com.glxp.udidl.admin.req.alihealth;
import lombok.Data;
@Data
public class AlihealthKytDrugrescodeReqeust extends AlihealthKytCommonParametersReqeust {
private String ref_ent_id;
private String physic_name;
private String approval_licence_no;
private String start_date;
private String end_date;
private String ent_name;
private String package_spec;
private String prepn_spec;
private Integer page_size;
private Integer page;
public AlihealthKytDrugrescodeReqeust(){
this.setMethod("alibaba.alihealth.drug.kyt.drugrescode");
}
}

@ -0,0 +1,14 @@
package com.glxp.udidl.admin.req.alihealth.local;
import com.glxp.udidl.admin.req.alihealth.AlihealthKytDrugrescodeReqeust;
import lombok.Data;
@Data
public class AlihealthThirdAliDrugInsertReqeust {
private String erpId;
private String appSecret;
private String manufactory;
private Boolean gjkSwitch = true;
private AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust;
}

@ -0,0 +1,21 @@
package com.glxp.udidl.admin.res.alihealth;
import lombok.Data;
import org.apache.commons.lang3.StringUtils;
@Data
public class AlihealthKytCommonParametersResponse {
private String msg_code;
private String msg_info;
private String response_success;
public boolean judgeCall(){
if(StringUtils.isNotEmpty(this.getMsg_info()) && this.getMsg_info().equals("调用成功")){
return true;
}
return false;
}
}

@ -0,0 +1,135 @@
package com.glxp.udidl.admin.res.alihealth;
import cn.hutool.json.JSONArray;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import com.glxp.udidl.admin.entity.collect.ThirdAliDrug;
import lombok.Data;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.BeanUtils;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Objects;
@Data
public class AlihealthKytDrugrescodeResponse extends AlihealthKytCommonParametersResponse {
private Integer total_num;
private JSONArray drug_table_dto;
private Integer page;
private Integer page_size;
public boolean judgeCall(String manufactory){
boolean bo = false;
if(StringUtils.isNotEmpty(manufactory)){
List<JSONObject> jsonArray = (List) this.getDrug_table_dto();
if (jsonArray != null && jsonArray.size() > 0) {
for (JSONObject jsonObject : jsonArray) {
String entName = jsonObject.getStr("ent_name");
if(manufactory.replaceAll("\\(", "").replace(")", "")
.equals(entName.replaceAll("\\(", "").replace(")", ""))){
bo = true;
}
}
}
}else {
bo = true;
}
if(StringUtils.isNotEmpty(this.getMsg_info()) && this.getMsg_info().equals("调用成功") && bo){
return true;
}
return false;
}
public AlihealthKytDrugrescodeResponse(String json) {
// 初始化请求的值
JSONObject jsonObject = JSONUtil.parseObj(json);
JSONObject jsonObjectResult = null;
for (String s : jsonObject.keySet()) {
jsonObjectResult = jsonObject.getJSONObject(s).getJSONObject("result");
}
AlihealthKytCommonParametersResponse alihealthKytCommonParametersResponse = JSONUtil.toBean(jsonObjectResult.toString(),
AlihealthKytCommonParametersResponse.class);
BeanUtils.copyProperties(alihealthKytCommonParametersResponse, this);
if (StringUtils.isNotEmpty(this.getMsg_info())
&& this.getMsg_info().equals("调用成功")
) {
this.disposeResult(jsonObjectResult);
}
}
public void disposeResult(JSONObject jsonObjectResult) {
JSONObject jsonObjectModel = jsonObjectResult.getJSONObject("model");
if (!Objects.isNull(jsonObjectModel)) {
this.setTotal_num(jsonObjectModel.getInt("total_num"));
this.setDrug_table_dto(jsonObjectModel.getJSONObject("result_list").getJSONArray("drug_table_dto"));
this.setPage(jsonObjectModel.getInt("page"));
this.setPage_size(jsonObjectModel.getInt("page_size"));
}
}
public List<ThirdAliDrug> disposeThirdAliDrugList(String erpId) {
List<ThirdAliDrug> list = new ArrayList<>();
List<JSONObject> jsonArray = (List) this.getDrug_table_dto();
if (jsonArray != null && jsonArray.size() > 0) {
for (JSONObject jsonObject : jsonArray) {
if (!Objects.isNull(jsonObject)) {
ThirdAliDrug thirdAliDrugShare = new ThirdAliDrug();
// thirdAliDrug.setId();
thirdAliDrugShare.setType(jsonObject.getStr("physic_type"));
thirdAliDrugShare.setManufacturer(jsonObject.getStr("ent_name"));
thirdAliDrugShare.setCpmctymc(jsonObject.getStr("physic_name").trim());
thirdAliDrugShare.setForm(jsonObject.getStr("prepn_type_desc"));
thirdAliDrugShare.setSpmc(jsonObject.getStr("prod_name"));
thirdAliDrugShare.setErpId(erpId);
thirdAliDrugShare.setCreateTime(new Date());
thirdAliDrugShare.setUpdateTime(new Date());
thirdAliDrugShare.setPhysicDetailType(jsonObject.getStr("physic_detail_type"));
thirdAliDrugShare.setPhysicDetailTypeDesc(jsonObject.getStr("physic_detail_type_desc"));
thirdAliDrugShare.setPhysicTypeDesc(jsonObject.getStr("physic_type_desc"));
// 阿里额外的字段 prepn_unit prepn_unit_name physic_detail_type physic_detail_type_desc physic_type_desc
;
List<JSONObject> jsonArraySubType = (List) jsonObject.getJSONObject("sub_type_list").getJSONArray("sub_type_list");
if (jsonArraySubType != null && jsonArraySubType.size() > 0) {
for (JSONObject oubType : jsonArraySubType) {
ThirdAliDrug thirdAliDrugShareTwo = new ThirdAliDrug();
BeanUtils.copyProperties(thirdAliDrugShare,thirdAliDrugShareTwo);
thirdAliDrugShareTwo.setFormSpec(oubType.getStr("prepn_spec"));
thirdAliDrugShareTwo.setBzgg(oubType.getStr("package_spec"));
thirdAliDrugShareTwo.setApprovalNum(oubType.getStr("approve_no").trim());
thirdAliDrugShareTwo.setPrepnUnit(oubType.getStr("prepn_unit"));
thirdAliDrugShareTwo.setPrepnUnitName(oubType.getStr("prepn_unit_name"));
thirdAliDrugShareTwo.setPackUnitName(oubType.getStr("pack_unit_name"));
if (oubType.containsKey("code_res_list")) {
JSONObject jsonObjectCodeRes = oubType.getJSONObject("code_res_list");
if(jsonObjectCodeRes.containsKey("code_res_list")){
List<JSONObject> codeReslist = (List) jsonObjectCodeRes.getJSONArray("code_res_list");
for (JSONObject codeRes : codeReslist) {
ThirdAliDrug thirdAliDrug = new ThirdAliDrug();
BeanUtils.copyProperties(thirdAliDrugShareTwo,thirdAliDrug);
// 码有值才加入
thirdAliDrug.setNameCode(codeRes.getStr("res_code"));
thirdAliDrug.setPackRatio(codeRes.getStr("pkg_ratio"));
thirdAliDrug.setPackLevel(StringUtils.isEmpty(codeRes.getStr("code_level")) ? null: codeRes.getStr("code_level"));
list.add(thirdAliDrug);
}
}
}
}
}
}
}
}
return list;
}
}

@ -0,0 +1,26 @@
package com.glxp.udidl.admin.service.auth;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.udidl.admin.dao.auth.AuthAliUserDao;
import com.glxp.udidl.admin.entity.auth.AuthAliUser;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
public class AuthAliUserService extends ServiceImpl<AuthAliUserDao, AuthAliUser> {
@Resource
private AuthAliUserDao authAliUserDao;
public AuthAliUser getOne(){
AuthAliUser authAliUser = this.getOne(new QueryWrapper<AuthAliUser>()
.last("limit 1")
);
if(authAliUser == null){
authAliUser = new AuthAliUser();
}
return authAliUser;
}
}

@ -8,10 +8,16 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.github.pagehelper.PageHelper;
import com.glxp.udidl.admin.dao.collect.ThirdAliDrugMapper;
import com.glxp.udidl.admin.entity.collect.ThirdAliDrug;
import com.glxp.udidl.admin.req.alihealth.AlihealthKytDrugrescodeReqeust;
import com.glxp.udidl.admin.req.alihealth.local.AlihealthThirdAliDrugInsertReqeust;
import com.glxp.udidl.admin.req.collect.ThirdAliDrugAddRequest;
import com.glxp.udidl.admin.req.collect.ThirdAliDrugRequest;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.util.alihealth.AlihealthUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.*;
import java.util.stream.Collectors;
@ -66,6 +72,8 @@ public class ThirdAliDrugService extends ServiceImpl<ThirdAliDrugMapper, ThirdAl
}
}
@Resource
private AlihealthUtils alihealthUtils;
public void updateThirdAliDrugTask() {
List<ThirdAliDrug> groupedByCpmctymc = this.baseMapper.groupByCpmctymc();
@ -76,7 +84,22 @@ public class ThirdAliDrugService extends ServiceImpl<ThirdAliDrugMapper, ThirdAl
ThirdAliDrugAddRequest thirdAliDrugAddRequest = new ThirdAliDrugAddRequest();
// TODO: 2025/1/4 这里用调用的 入参 cpmctymc
List<ThirdAliDrug> add = new ArrayList<>();
List<ThirdAliDrug> add = null;
AlihealthThirdAliDrugInsertReqeust request = new AlihealthThirdAliDrugInsertReqeust();
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = new AlihealthKytDrugrescodeReqeust();
alihealthKytDrugrescodeReqeust.setPhysic_name(cpmctymc);
request.setAlihealthKytDrugrescodeReqeust(alihealthKytDrugrescodeReqeust);
try {
BaseResponse<List<ThirdAliDrug>> baseResponse = alihealthUtils.thirdAliDrugInsertAll(request);
if(baseResponse.getCode() == 20000){
add = baseResponse.getData();
}else {
log.error("阿里访问失败==="+baseResponse.getMessage());
}
}catch (Exception e){
log.error("阿里访问失败==="+e.getMessage());
}
thirdAliDrugAddRequest.setList(add);
this.addThirdAliDrug(thirdAliDrugAddRequest);

@ -0,0 +1,129 @@
package com.glxp.udidl.admin.util;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.enums.ResultEnum;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import java.util.HashMap;
import java.util.Map;
/**
*
*/
public class ResultVOAliUtils {
/**
*
*
* @param data data
* @return {@link BaseResponse}
*/
public static BaseResponse success(Object data) {
BaseResponse<Object> baseResponse = new BaseResponse<>();
baseResponse.setCode(20000);
baseResponse.setMessage("success");
baseResponse.setData(data);
return baseResponse;
}
/**
*
*
* @return {@link BaseResponse}
*/
public static BaseResponse success() {
Map data = new HashMap();
return success(data);
}
/**
*
*
* @param data data
* @return {@link BaseResponse}
*/
public static BaseResponse success(String msg, Object data) {
BaseResponse<Object> baseResponse = new BaseResponse<>();
baseResponse.setCode(20000);
baseResponse.setMessage(msg);
baseResponse.setData(data);
return baseResponse;
}
/**
*
*
* @return {@link BaseResponse}
*/
public static BaseResponse successMsg(String message) {
BaseResponse<Object> baseResponse = new BaseResponse<>();
baseResponse.setCode(20000);
baseResponse.setMessage(message);
Map data = new HashMap();
baseResponse.setData(data);
return baseResponse;
}
/**
*
*
* @param code
* @param message
* @return {@link BaseResponse}
*/
public static BaseResponse error(Integer code, String message) {
BaseResponse<Object> baseResponse = new BaseResponse<>();
baseResponse.setCode(code);
baseResponse.setMessage(message);
Map data = new HashMap();
baseResponse.setData(data);
return baseResponse;
}
/**
*
*
* @param resultEnum
* @return {@link BaseResponse}
*/
public static BaseResponse error(ResultEnum resultEnum) {
return error(resultEnum.getCode(), resultEnum.getMessage());
}
/**
*
*
* @param resultEnum
* @param message
* @return {@link BaseResponse}
*/
public static BaseResponse error(ResultEnum resultEnum, String message) {
return error(resultEnum.getCode(), message);
}
/**
*
*
* @param message
* @return {@link BaseResponse}
*/
public static BaseResponse error(String message) {
return error(ResultEnum.NOT_NETWORK.getCode(), message);
}
/**
* PageHelper
*
* @param pageInfo
* @return
*/
public static BaseResponse page(PageInfo pageInfo) {
PageSimpleResponse pageSimpleResponse = new PageSimpleResponse();
pageSimpleResponse.setList(pageInfo.getList());
pageSimpleResponse.setTotal(pageInfo.getTotal());
return success(pageSimpleResponse);
}
}

@ -0,0 +1,311 @@
package com.glxp.udidl.admin.util.alihealth;
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.http.HttpUtil;
import com.glxp.udidl.admin.constant.AliConstants;
import com.glxp.udidl.admin.entity.auth.AuthAliUser;
import com.glxp.udidl.admin.entity.collect.ThirdAliDrug;
import com.glxp.udidl.admin.req.alihealth.AlihealthKytCommonParametersReqeust;
import com.glxp.udidl.admin.req.alihealth.AlihealthKytDrugrescodeReqeust;
import com.glxp.udidl.admin.req.alihealth.local.AlihealthThirdAliDrugInsertReqeust;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.res.alihealth.AlihealthKytDrugrescodeResponse;
import com.glxp.udidl.admin.service.auth.AuthAliUserService;
import com.glxp.udidl.admin.util.ResultVOAliUtils;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import javax.crypto.Mac;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.io.IOException;
import java.security.GeneralSecurityException;
import java.security.MessageDigest;
import java.text.SimpleDateFormat;
import java.util.*;
//import static com.taobao.api.internal.util.TaobaoUtils.byte2hex;
@Slf4j
@Component
public class AlihealthUtils {
@Value("${ALIHEALTH_URL:http://gw.api.taobao.com/router/rest}")
private String alihealthUrl;
// public static void main(String[] args) {
//
// alihealthKytSinglerelationReqeust.setSign(sign);
// String ss = HttpUtil.get("http://gw.api.taobao.com/router/rest",BeanUtil.beanToMap(alihealthKytSinglerelationReqeust));
// AlihealthKytSinglerelationResponse alihealthKytSinglerelationResponse = new AlihealthKytSinglerelationResponse(ss);
// System.out.println(ss);
// System.out.println(alihealthKytSinglerelationResponse);
//
//// AlibabaAlihealthDrugtraceTopLsydQueryRelationResponse alibabaAlihealthDrugtraceTopLsydQueryRelationResponse
//
// }
public BaseResponse<List<ThirdAliDrug>> thirdAliDrugInsertAll(AlihealthThirdAliDrugInsertReqeust request) {
// 初始化变量
List<ThirdAliDrug> resultList = new ArrayList<>();
AlihealthKytDrugrescodeReqeust drugRequest = request.getAlihealthKytDrugrescodeReqeust();
String originalName = drugRequest.getPhysic_name();
// 尝试原始名称
BaseResponse<List<ThirdAliDrug>> listBaseResponse = tryInsertAndCollect(request, resultList);
// 处理括号转换
if (containsBrackets(originalName)) {
String convertedName = convertBrackets(originalName);
drugRequest.setPhysic_name(convertedName);
AlihealthThirdAliDrugInsertReqeust tempRequest = new AlihealthThirdAliDrugInsertReqeust();
BeanUtils.copyProperties(request, tempRequest);
tempRequest.getAlihealthKytDrugrescodeReqeust().setPhysic_name(convertedName);
listBaseResponse = tryInsertAndCollect(tempRequest, resultList);
}
// 处理罗马数字转换
if (containsRomanNumerals(originalName)) {
String convertedName = convertRomanNumerals(originalName);
drugRequest.setPhysic_name(convertedName);
AlihealthThirdAliDrugInsertReqeust tempRequest = new AlihealthThirdAliDrugInsertReqeust();
BeanUtils.copyProperties(request, tempRequest);
tempRequest.getAlihealthKytDrugrescodeReqeust().setPhysic_name(convertedName);
listBaseResponse = tryInsertAndCollect(tempRequest, resultList);
}
// 设置结果
if (!resultList.isEmpty()) {
ResultVOAliUtils.success(resultList);
}
return listBaseResponse;
}
// 辅助方法
private boolean containsBrackets(String name) {
return name.contains("(") || name.contains("");
}
private String convertBrackets(String name) {
if (name.contains("(")) {
return name.replace("(", "").replace(")", "");
} else {
return name.replace("", "(").replace("", ")");
}
}
private boolean containsRomanNumerals(String name) {
return name.contains("") || name.contains("I")
|| name.contains("Ⅱ") || name.contains("II")
|| name.contains("Ⅲ") || name.contains("III");
}
private String convertRomanNumerals(String name) {
if (name.contains("") || name.contains("Ⅱ") || name.contains("Ⅲ")) {
return name.replace("", "I")
.replace("Ⅱ", "II")
.replace("Ⅲ", "III");
} else {
return name.replace("I", "")
.replace("II", "Ⅱ")
.replace("III", "Ⅲ");
}
}
private BaseResponse<List<ThirdAliDrug>> tryInsertAndCollect(
AlihealthThirdAliDrugInsertReqeust request,
List<ThirdAliDrug> resultList) {
AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust = new AlihealthThirdAliDrugInsertReqeust();
BeanUtil.copyProperties(request, alihealthThirdAliDrugInsertReqeust);
BaseResponse<List<ThirdAliDrug>> response = thirdAliDrugInsert(alihealthThirdAliDrugInsertReqeust);
if (response.getCode() == 20000 && response.getData() != null) {
resultList.addAll(response.getData());
}
return response;
}
@Resource
private AuthAliUserService authAliUserService;
/**
*
*
* @param alihealthThirdAliDrugInsertReqeust
*/
public BaseResponse<List<ThirdAliDrug>> thirdAliDrugInsert(AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust) {
if (alihealthThirdAliDrugInsertReqeust.getAlihealthKytDrugrescodeReqeust() == null) {
return ResultVOAliUtils.error("入参不能为空");
}
AlihealthKytDrugrescodeResponse alihealthKytDrugrescodeResponse = null;
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = alihealthThirdAliDrugInsertReqeust.getAlihealthKytDrugrescodeReqeust();
// key组装
AuthAliUser authAliUser = authAliUserService.getOne();
alihealthThirdAliDrugInsertReqeust.setErpId(authAliUser.getErpid());
alihealthThirdAliDrugInsertReqeust.setAppSecret(authAliUser.getAppsecret());
alihealthKytDrugrescodeReqeust.setApp_key(authAliUser.getAppkey());
alihealthKytDrugrescodeReqeust.setRef_ent_id(authAliUser.getRefentid());
alihealthKytDrugrescodeReqeust.setPage_size(100);
alihealthKytDrugrescodeReqeust.setPage(1);
if (alihealthKytDrugrescodeReqeust != null
&& StringUtils.isNotEmpty(alihealthKytDrugrescodeReqeust.getApp_key())
&& StringUtils.isNotEmpty(alihealthThirdAliDrugInsertReqeust.getAppSecret())
) {
try {
Thread.sleep(600);
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeustNew = new AlihealthKytDrugrescodeReqeust();
BeanUtils.copyProperties(alihealthKytDrugrescodeReqeust,alihealthKytDrugrescodeReqeustNew);
Map map = disposeSign(alihealthKytDrugrescodeReqeustNew, alihealthThirdAliDrugInsertReqeust.getAppSecret());
String json = HttpUtil.get(alihealthUrl, map);
log.error("阿里健康接口调用结果===" + json);
alihealthKytDrugrescodeResponse = new AlihealthKytDrugrescodeResponse(json);
} catch (Exception e) {
e.printStackTrace();
return ResultVOAliUtils.error("阿里健康接口调用失败===" + e.getMessage());
}
} else {
return ResultVOAliUtils.error("阿里健康接口调用失败===用户找不到或者key和秘钥为空");
}
String physicName = alihealthKytDrugrescodeReqeust.getPhysic_name();
if (alihealthKytDrugrescodeResponse.judgeCall()) {
List<ThirdAliDrug> listNew = alihealthKytDrugrescodeResponse.disposeThirdAliDrugList(alihealthThirdAliDrugInsertReqeust.getErpId());
return ResultVOAliUtils.success(listNew);
} else {
//
// // 重新上传标识为true就改变一下
// if ("未查询到相关信息".equals(alihealthKytDrugrescodeResponse.getMsg_info())
// && callBool && (physicName.contains("(") || physicName.contains(""))) {
// if (physicName.contains("(")) {
// physicName = physicName.replace("(", "").replace(")", "");
//
// } else if (physicName.contains("")) {
// physicName = physicName.replace("", "(").replace("", ")");
//
// }
// alihealthKytDrugrescodeReqeust.setPhysic_name(physicName);
// alihealthThirdAliDrugInsertReqeust.setAlihealthKytDrugrescodeReqeust(alihealthKytDrugrescodeReqeust);
// thirdAliDrugInsert(alihealthThirdAliDrugInsertReqeust, false);
// }
return ResultVOAliUtils.error("阿里健康接口调用失败===" + alihealthKytDrugrescodeResponse.getMsg_info());
}
// if(physicName.equals("(")){
// thirdAliDrugInsert();
// }
// if(physicName.equals("")){
// thirdAliDrugInsert();
// }
}
public Map disposeSign(AlihealthKytCommonParametersReqeust alihealthKytCommonParametersReqeust, String secret) {
alihealthKytCommonParametersReqeust.setTimestamp(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()));
Map<String, Object> map = BeanUtil.beanToMap(alihealthKytCommonParametersReqeust);
String sign;
try {
sign = this.signTopRequest(map, secret, "md5");
log.info("sign====" + sign);
alihealthKytCommonParametersReqeust.setSign(sign);
} catch (IOException e) {
e.printStackTrace();
}
return BeanUtil.beanToMap(alihealthKytCommonParametersReqeust);
}
public String signTopRequest(Map<String, Object> params, String secret, String signMethod) throws IOException {
// 第一步:检查参数是否已经排序
String[] keys = params.keySet().toArray(new String[0]);
Arrays.sort(keys);
// 第二步:把所有参数名和参数值串在一起
StringBuilder query = new StringBuilder();
if (AliConstants.SIGN_METHOD_MD5.equals(signMethod)) { //签名的摘要算法可选值为hmacmd5hmac-sha256
query.append(secret);
}
for (String key : keys) {
Object value = params.get(key);
if (value instanceof String) {
if (StringUtils.isNotEmpty(key) && StringUtils.isNotEmpty((CharSequence) value)) {
query.append(key).append(value);
}
} else {
if (StringUtils.isNotEmpty(key) && !Objects.isNull(value)) {
query.append(key).append(value);
}
}
// StringUtils.areNotEmpty(key, value)
}
// 第三步使用MD5/HMAC加密
byte[] bytes;
if (AliConstants.SIGN_METHOD_HMAC.equals(signMethod)) {
bytes = encryptHMAC(query.toString(), secret);
} else {
query.append(secret);
bytes = encryptMD5(query.toString());
}
// 第四步:把二进制转化为大写的十六进制(正确签名应该为32大写字符串此方法需要时使用)
return byte2hex(bytes);
}
public static String byte2hex(byte[] bytes) {
StringBuilder sign = new StringBuilder();
for(int i = 0; i < bytes.length; ++i) {
String hex = Integer.toHexString(bytes[i] & 255);
if (hex.length() == 1) {
sign.append("0");
}
sign.append(hex.toUpperCase());
}
return sign.toString();
}
public byte[] encryptHMAC(String data, String secret) throws IOException {
byte[] bytes = null;
try {
SecretKey secretKey = new SecretKeySpec(secret.getBytes(AliConstants.CHARSET_UTF8), "HmacMD5");
Mac mac = Mac.getInstance(secretKey.getAlgorithm());
mac.init(secretKey);
bytes = mac.doFinal(data.getBytes(AliConstants.CHARSET_UTF8));
} catch (GeneralSecurityException gse) {
throw new IOException(gse.toString());
}
return bytes;
}
public byte[] encryptMD5(String data) throws IOException {
return encryptMD5(data.getBytes(AliConstants.CHARSET_UTF8));
}
public byte[] encryptMD5(byte[] data) throws IOException {
byte[] bytes = null;
try {
MessageDigest md = MessageDigest.getInstance("MD5");
bytes = md.digest(data);
} catch (GeneralSecurityException gse) {
throw new IOException(gse.toString());
}
return bytes;
}
}

@ -4,7 +4,7 @@ spring:
matching-strategy: ant_path_matcher
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/udidl_test?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
url: jdbc:mysql://192.168.0.43:3306/udidl_test?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: 123456
hikari:

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.udidl.admin.entity.auth.AuthAliUser">
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, erpId, appKey, appSecret, refEntId, `type`
</sql>
</mapper>

@ -332,3 +332,20 @@ CALL Pro_Temp_ColumnWork('third_ali_drug', 'packUnitName',
1);
INSERT IGNORE INTO `scheduled` (`id`, `cronName`, `cron`, `customerId`) VALUES (11, 'thirdAliDrugTask', '0 0 */2 * * ?', NULL);
CREATE TABLE IF NOT EXISTS `auth_ali_user`
(
`id` bigint NOT NULL,
`erpId` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '第三方ID',
`appKey` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '阿里KEY',
`appSecret` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '阿里密钥',
`refEntId` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '厂家标识',
`type` varchar(255) DEFAULT NULL COMMENT '1 为生成企业 2为零售药店',
PRIMARY KEY (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4
COLLATE = utf8mb4_0900_ai_ci;
INSERT IGNORE INTO `auth_ali_user` ( `id`, `erpId`, `appKey`, `appSecret`, `refEntId`, `type` )
VALUES
( 1, NULL, '31721223', '5231c601505706a9d49823c3dfe2cb01', 'ef99b78bd9c54c1284f813149c858fb0', NULL );

Loading…
Cancel
Save