| | |
| | | |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.alibaba.fastjson.JSONPath; |
| | | import com.java110.common.cache.MappingCache; |
| | | import com.java110.common.constant.KafkaConstant; |
| | | import com.java110.common.constant.MappingConstant; |
| | | import com.java110.common.constant.ResponseConstant; |
| | | import com.java110.common.constant.StateConstant; |
| | | import com.java110.common.exception.SMOException; |
| | | import com.java110.common.kafka.KafkaFactory; |
| | | import com.java110.common.log.LoggerEngine; |
| | | import com.java110.common.util.Assert; |
| | | import com.java110.common.util.DateUtil; |
| | | import com.java110.common.util.ProtocolUtil; |
| | | import com.java110.entity.user.BoCust; |
| | | import com.java110.feign.base.IPrimaryKeyService; |
| | | import com.java110.user.smo.IUserServiceSMO; |
| | | import com.java110.core.base.smo.BaseServiceSMO; |
| | | import org.apache.commons.lang.math.NumberUtils; |
| | | import com.java110.core.context.BusinessServiceDataFlow; |
| | | import com.java110.core.factory.DataFlowFactory; |
| | | import com.java110.entity.center.DataFlowLinksCost; |
| | | import com.java110.entity.center.DataFlowLog; |
| | | import com.java110.entity.order.BusiOrder; |
| | | import com.java110.entity.user.BoCust; |
| | | import com.java110.entity.user.BoCustAttr; |
| | | import com.java110.entity.user.Cust; |
| | | import com.java110.entity.user.CustAttr; |
| | | import com.java110.event.service.BusinessServiceDataFlowEventPublishing; |
| | | import com.java110.user.dao.IUserServiceDao; |
| | | import com.java110.user.smo.IUserServiceSMO; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.util.ObjectUtils; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 用户服务信息管理业务信息实现 |
| | | * Created by wuxw on 2017/4/5. |
| | | */ |
| | | @Service("userServiceSMOImpl") |
| | | @Transactional |
| | | public class UserServiceSMOImpl extends BaseServiceSMO implements IUserServiceSMO { |
| | | |
| | | private static Logger logger = LoggerFactory.getLogger(UserServiceSMOImpl.class); |
| | | |
| | | |
| | | @Autowired |
| | | IPrimaryKeyService iPrimaryKeyService; |
| | | IUserServiceDao iUserServiceDao; |
| | | |
| | | //新增用户 |
| | | private final static String USER_ACTION_ADD = "ADD"; |
| | | private static final String USER_ACTION_ADD = "ADD"; |
| | | |
| | | //新增用户 |
| | | private final static String USER_ACTION_KIP = "KIP"; |
| | | private static final String USER_ACTION_KIP = "KIP"; |
| | | |
| | | //新增用户 |
| | | private final static String USER_ACTION_DEL = "DEL"; |
| | | |
| | | /** |
| | | * 保存用户信息 |
| | | * |
| | | * @param userInfoJson 入参为用户信息json传 |
| | | * @return |
| | | */ |
| | | public String saveUser(String userInfoJson) { |
| | | |
| | | JSONObject reqUserJSON = null; |
| | | try { |
| | | reqUserJSON = this.simpleValidateJSON(userInfoJson); |
| | | //boCust增加Action (动作) |
| | | if (reqUserJSON.containsKey("boCust")) { |
| | | JSONObject boCust = reqUserJSON.getJSONObject("boCust"); |
| | | boCust.put("state", USER_ACTION_ADD); |
| | | } |
| | | //boCustAttr增加Action(动作) |
| | | if (reqUserJSON.containsKey("boCustAttr")) { |
| | | JSONArray boCustAttrs = reqUserJSON.getJSONArray("boCustAttr"); |
| | | |
| | | for (int attrIndex = 0; attrIndex < boCustAttrs.size(); attrIndex++) { |
| | | JSONObject boCustAttr = boCustAttrs.getJSONObject(attrIndex); |
| | | boCustAttr.put("state", USER_ACTION_ADD); |
| | | } |
| | | } |
| | | } catch (RuntimeException e) { |
| | | //返回异常信息 |
| | | return e.getMessage(); |
| | | } |
| | | return soUserService(reqUserJSON.toJSONString()); |
| | | } |
| | | private static final String USER_ACTION_DEL = "DEL"; |
| | | |
| | | |
| | | /** |
| | | * 所有服务处理类 |
| | | * |
| | | * @param userInfoJson |
| | | * @return |
| | | */ |
| | | public String soUserService(String userInfoJson) { |
| | | LoggerEngine.debug("用户服务操作客户入参:" + userInfoJson); |
| | | String resultUserInfo = null; |
| | | JSONObject reqUserJSON = null; |
| | | try { |
| | | reqUserJSON = this.simpleValidateJSON(userInfoJson); |
| | | //1.0规则校验,报文是否合法 |
| | | |
| | | if(reqUserJSON.containsKey("boCust")){ |
| | | |
| | | } |
| | | |
| | | if(reqUserJSON.containsKey("boCustAttr")){ |
| | | |
| | | } |
| | | |
| | | //2.0 |
| | | } catch (Exception e) { |
| | | LoggerEngine.error("服务处理出现异常:", e); |
| | | } finally { |
| | | LoggerEngine.debug("用户服务操作客户出参:" + resultUserInfo); |
| | | return resultUserInfo; |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * { |
| | | * boCust:[{},{}] |
| | | * } |
| | | * 客户信心处理 |
| | | * @param boCusts |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | public String soBoCust(String boCusts) throws Exception{ |
| | | // 将 jsonArray 转为list<BoCust> 对象 |
| | | JSONObject jsonObject = JSONObject.parseObject(boCusts); |
| | | |
| | | List<BoCust> boCustList = JSONObject.parseArray(jsonObject.getJSONArray("boCust").toJSONString(), BoCust.class); |
| | | |
| | | //保存数据 |
| | | |
| | | for(BoCust boCust : boCustList){ |
| | | int custId = NumberUtils.toInt(boCust.getBoId(),-1); |
| | | //如果客户ID小于0 ,则自己生成客户ID,这个只有在有 主键生成服务时使用,否则为了防止出错,需要前段调用时需要生成custId |
| | | if(custId < 0 ){ |
| | | JSONObject data = new JSONObject(); |
| | | data.put("type","CUST_ID"); |
| | | //{"RESULT_CODE":"0000","RESULT_INFO":{"user_id":"7020170411000041"},"RESULT_MSG":"成功"} |
| | | String custIdJSONStr = iPrimaryKeyService.queryPrimaryKey(data.toJSONString()); |
| | | JSONObject custIdJSONTmp = JSONObject.parseObject(custIdJSONStr); |
| | | if(custIdJSONTmp.containsKey("RESULT_CODE") |
| | | && ProtocolUtil.RETURN_MSG_SUCCESS.equals(custIdJSONTmp.getString("RESULT_CODE")) |
| | | && custIdJSONTmp.containsKey("RESULT_INFO")){ |
| | | //从接口生成custId |
| | | custId = NumberUtils.toInt(custIdJSONTmp.getJSONObject("RESULT_INFO").getString("CUST_ID"),-1); |
| | | } |
| | | } |
| | | |
| | | boCust.setCustId(custId+""); |
| | | } |
| | | return ""; |
| | | } |
| | | |
| | | /** |
| | | * 客户信息属性处理 |
| | | * 协议: |
| | | *{ |
| | | * boCustAttr:[{},{}] |
| | | * } |
| | | * @param boCustAttrs |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | @Override |
| | | public String soBoCustAttr(String boCustAttrs) throws Exception { |
| | | return null; |
| | | public JSONObject service(BusinessServiceDataFlow businessServiceDataFlow) throws SMOException { |
| | | try { |
| | | Assert.hasLength(businessServiceDataFlow.getbId(), "bId 不能为空"); |
| | | |
| | | BusinessServiceDataFlowEventPublishing.multicastEvent(businessServiceDataFlow); |
| | | Assert.notEmpty(businessServiceDataFlow.getResJson(), "用户服务[" + businessServiceDataFlow.getCurrentBusiness().getServiceCode() + "]没有返回内容"); |
| | | } catch (Exception e) { |
| | | logger.error("用户信息处理异常", e); |
| | | throw new SMOException(ResponseConstant.RESULT_PARAM_ERROR, "用户信息处理异常" + e.getMessage()); |
| | | } finally { |
| | | if (businessServiceDataFlow == null) { |
| | | return null; |
| | | } |
| | | |
| | | //这里记录日志 |
| | | Date endDate = DateUtil.getCurrentDate(); |
| | | |
| | | businessServiceDataFlow.setEndDate(endDate); |
| | | //添加耗时 |
| | | DataFlowFactory.addCostTime(businessServiceDataFlow, "service", "业务处理总耗时", |
| | | businessServiceDataFlow.getStartDate(), businessServiceDataFlow.getEndDate()); |
| | | //保存耗时 |
| | | saveCostTimeLogMessage(businessServiceDataFlow); |
| | | //保存日志 |
| | | saveLogMessage(businessServiceDataFlow); |
| | | } |
| | | return businessServiceDataFlow.getResJson(); |
| | | } |
| | | |
| | | public IPrimaryKeyService getiPrimaryKeyService() { |
| | | return iPrimaryKeyService; |
| | | |
| | | /** |
| | | * 保存日志信息 |
| | | * |
| | | * @param businessServiceDataFlow 业务日志对象 |
| | | */ |
| | | private void saveLogMessage(BusinessServiceDataFlow businessServiceDataFlow) { |
| | | |
| | | try { |
| | | if (MappingConstant.VALUE_ON.equals(MappingCache.getValue(MappingConstant.KEY_LOG_ON_OFF))) { |
| | | for (DataFlowLog dataFlowLog : businessServiceDataFlow.getLogDatas()) { |
| | | KafkaFactory.sendKafkaMessage(KafkaConstant.TOPIC_LOG_NAME, "", JSONObject.toJSONString(dataFlowLog)); |
| | | } |
| | | } |
| | | } catch (Exception e) { |
| | | logger.error("报错日志出错了,", e); |
| | | } |
| | | } |
| | | |
| | | public void setiPrimaryKeyService(IPrimaryKeyService iPrimaryKeyService) { |
| | | this.iPrimaryKeyService = iPrimaryKeyService; |
| | | /** |
| | | * 保存耗时信息 |
| | | * |
| | | * @param businessServiceDataFlow |
| | | */ |
| | | private void saveCostTimeLogMessage(BusinessServiceDataFlow businessServiceDataFlow) { |
| | | try { |
| | | if (MappingConstant.VALUE_ON.equals(MappingCache.getValue(MappingConstant.KEY_COST_TIME_ON_OFF))) { |
| | | List<DataFlowLinksCost> dataFlowLinksCosts = businessServiceDataFlow.getLinksCostDates(); |
| | | JSONObject costDate = new JSONObject(); |
| | | JSONArray costDates = new JSONArray(); |
| | | JSONObject newObj = null; |
| | | for (DataFlowLinksCost dataFlowLinksCost : dataFlowLinksCosts) { |
| | | newObj = JSONObject.parseObject(JSONObject.toJSONString(dataFlowLinksCost)); |
| | | newObj.put("dataFlowId", businessServiceDataFlow.getDataFlowId()); |
| | | newObj.put("transactionId", businessServiceDataFlow.getTransactionId()); |
| | | costDates.add(newObj); |
| | | } |
| | | costDate.put("costDates", costDates); |
| | | |
| | | KafkaFactory.sendKafkaMessage(KafkaConstant.TOPIC_COST_TIME_LOG_NAME, "", costDate.toJSONString()); |
| | | } |
| | | } catch (Exception e) { |
| | | logger.error("报错日志出错了,", e); |
| | | } |
| | | } |
| | | |
| | | |
| | | public IUserServiceDao getiUserServiceDao() { |
| | | return iUserServiceDao; |
| | | } |
| | | |
| | | public void setiUserServiceDao(IUserServiceDao iUserServiceDao) { |
| | | this.iUserServiceDao = iUserServiceDao; |
| | | } |
| | | } |