dev
youhong.ai 2023-07-06 09:56:25 +08:00
parent a6b7892dd6
commit 99ee2d2245
2 changed files with 121 additions and 70 deletions

View File

@ -1,18 +1,19 @@
package bokang.xiao.response_deal;
import aiyh.utils.ScriptUtil;
import aiyh.utils.Util;
import aiyh.utils.excention.CustomerException;
import aiyh.utils.httpUtil.ResponeVo;
import bokang.xiao.entity.FieldDefinition;
import aiyh.utils.tool.cn.hutool.core.collection.CollectionUtil;
import aiyh.utils.tool.cn.hutool.core.util.StrUtil;
import bokang.xiao.exception.ResponseException;
import bokang.xiao.response_deal.entity.ResponseConfig;
import bokang.xiao.response_deal.entity.ResponseConfigAlias;
import bokang.xiao.response_deal.entity.ResponseConfigValueChange;
import bokang.xiao.response_deal.mapper.ConfigMapper;
import org.apache.log4j.Logger;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
/**
@ -28,37 +29,87 @@ public class ResponseMappingDeal {
private final ConfigMapper configMapper = Util.getMapper(ConfigMapper.class);
public void getConfig(String uniqueCode,ResponeVo responeVo){
public void parseConfig(String uniqueCode, ResponeVo responeVo) {
if (responeVo.getCode() != 200) {
throw new CustomerException("你妈没成功");
}
List<ResponseConfig> responseConfigs = configMapper.queryResponseConfigByUnique(uniqueCode);
if (CollectionUtil.isEmpty(responseConfigs)) {
throw new CustomerException("sb");
}
for (ResponseConfig responseConfig : responseConfigs) {
parseConfigOne(responseConfig, responeVo);
}
}
private void parseConfigOne(ResponseConfig responseConfig, ResponeVo responeVo) {
List<ResponseConfigAlias> responseConfigAliasList = responseConfig.getResponseConfigAliasList();
String successExp = responseConfig.getSuccessExp();
Map<String, Object> responseMap = responeVo.getResponseMap();
List<Map<String, Object>> resultList = new ArrayList<>();
if (CollectionUtil.isEmpty(responseMap)) {
// 他是一个list尝试获取一下
List<Map> result = responeVo.getResult();
if (CollectionUtil.isEmpty(result)) {
throw new CustomerException("没有响应结果你同步个J8");
} else {
for (Map map : result) {
Map<String, Object> tempMap = new HashMap<>();
for (Object entry : map.entrySet()) {
}
resultList.add(tempMap);
}
}
} else {
resultList.add(responseMap);
}
if (StrUtil.isNotBlank(successExp)) {
for (Map<String, Object> map : resultList) {
boolean flag = (boolean) ScriptUtil.invokeScript(successExp, map);
if (!flag) {
throw new CustomerException("失败了!");
}
}
}
}
public void getConfig(String uniqueCode, ResponeVo responeVo) {
List<ResponseConfig> responseConfigList = configMapper.queryResponseConfigByUnique(uniqueCode);
if(Objects.isNull(responseConfigList) || responseConfigList.isEmpty()){
if (Objects.isNull(responseConfigList) || responseConfigList.isEmpty()) {
throw new ResponseException("response config is empty please check!!! ");
}
Map<String, ResponseConfig> tableNameConfig;
try {
tableNameConfig = responseConfigList.stream().collect(Collectors.toMap(ResponseConfig::getModelTableName, v -> v));
}catch (Exception e){
logger.error("response config error please check!!! "+Util.getErrString(e));
} catch (Exception e) {
logger.error("response config error please check!!! " + Util.getErrString(e));
throw new ResponseException("response config error please check!!! ");
}
tableNameConfig.entrySet().stream().forEach(item ->{
dealConfig(item.getValue(),responeVo);
tableNameConfig.entrySet().stream().forEach(item -> {
dealConfig(item.getValue(), responeVo);
});
}
public void dealConfig(ResponseConfig responseConfig, ResponeVo responeVo){
public void dealConfig(ResponseConfig responseConfig, ResponeVo responeVo) {
List<ResponseConfigValueChange> valueChangeList = responseConfig.getValueChangeList();
if(Objects.isNull(valueChangeList) || valueChangeList.isEmpty()){
if (Objects.isNull(valueChangeList) || valueChangeList.isEmpty()) {
throw new ResponseException("valueChangeList config is empty please check!!!");
}
Map<Integer, List<ResponseConfigValueChange>> tableTypeMap = valueChangeList.stream().collect(Collectors.groupingBy(ResponseConfigValueChange::getTableType));
List<ResponseConfigValueChange> mainConfig = tableTypeMap.get(0);
Map<String, List<ResponseConfigValueChange>> collect = mainConfig.stream().collect(Collectors.groupingBy(ResponseConfigValueChange::getAssignTable));
if(collect.size() > 1){
if (collect.size() > 1) {
throw new ResponseException("The primary table cannot have details please check!!! ");
}
//Map<String, Object> responseMap = responeVo.getResponseMap();
//Map<Util.ValueOrList,List<FieldDefinition>> mainFieldMap = new HashMap<>();
//for (ResponseConfigValueChange responseConfigValueChange : mainConfig) {
// Map<String, Object> responseMap = responeVo.getResponseMap();
// Map<Util.ValueOrList,List<FieldDefinition>> mainFieldMap = new HashMap<>();
// for (ResponseConfigValueChange responseConfigValueChange : mainConfig) {
// String valuePath = responseConfigValueChange.getValuePath();
// Util.ValueOrList valueOrListByKeyStr = Util.getValueOrListByKeyStr(valuePath, responseMap);
// if(valueOrListByKeyStr.isArray() && !mainFieldMap.isEmpty() && !mainFieldMap.containsKey(valueOrListByKeyStr)){
@ -71,7 +122,7 @@ public class ResponseMappingDeal {
// List<FieldDefinition> fieldDefinitions = mainFieldMap.get(valueOrListByKeyStr);
// }
//}
//mainConfig.stream().map(item ->{
// mainConfig.stream().map(item ->{
//
//})
List<ResponseConfigValueChange> detail = tableTypeMap.get(1);
@ -80,13 +131,11 @@ public class ResponseMappingDeal {
}
public void responseToEntity(ResponseConfigValueChange responseConfigValueChange,Map<String,Object> param){
public void responseToEntity(ResponseConfigValueChange responseConfigValueChange, Map<String, Object> param) {
String valuePath = responseConfigValueChange.getValuePath();
Util.ValueOrList valueOrListByKeyStr = Util.getValueOrListByKeyStr(valuePath, param);
}
}

View File

@ -36,6 +36,8 @@ public class ResponseConfig {
@SqlOracleDbFieldAnn("model_table_name")
private String modelTableName;
private String successExp;
private List<ResponseConfigAlias> responseConfigAliasList;
private List<ResponseConfigValueChange> valueChangeList;