测试用户
2023-04-13 43393f2bb11cbf9e6af40077bbc5284660e8a754
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package com.deloitte.system.service;
 
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.ObjectUtil;
import com.alibaba.fastjson.JSONArray;
import com.common.core.constant.GlobalConst;
import com.common.core.exception.BizException;
import com.common.core.service.CryptoService;
import com.common.core.utils.BeanHelper;
import com.common.core.utils.DesensitiveUtils;
import com.common.core.utils.IdUtils;
import com.common.redis.util.RedisUtil;
import com.deloitte.system.model.CacheList;
import com.deloitte.system.model.UserFaultInfo;
import com.deloitte.system.request.UserFaultInfoDto;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
 
import static com.common.core.constant.GlobalConst.PIPL_UNCONFIRM_INSERT;
import static com.common.core.constant.GlobalConst.PIPL_UNCONFIRM_UPDATE;
 
@Service
public class UserFaultInfoService {
 
    private String tableName="user_fault_info";
 
    @Autowired
    private CryptoService cryptoService;
 
    @Autowired
    private IdUtils idWorker;
 
    @Autowired
    private RedisUtil redisUtil;
 
    public UserFaultInfoDto queryForOne(String dataId) {
        UserFaultInfo userFaultInfo =UserFaultInfo.dao.findById(dataId);
        if (!ObjectUtil.isEmpty(userFaultInfo)){
            UserFaultInfoDto dto = BeanHelper.copyAs(userFaultInfo, UserFaultInfoDto.class);
            return dto;
        }
        return null;
 
    }
 
    public List<UserFaultInfoDto> insertList(List<UserFaultInfoDto> userFaultInfoDtoList, String txId) {
        List<UserFaultInfoDto> respList = new ArrayList<>();
        CacheList<UserFaultInfoDto> dtoCacheList = new CacheList<>();
        dtoCacheList.setTableName(tableName);
        List<UserFaultInfoDto> dtoItemList = new ArrayList<>();
        userFaultInfoDtoList.forEach(e -> {
            String dataId = idWorker.nextId();
            UserFaultInfoDto cacheItem = BeanHelper.copyAs(e, UserFaultInfoDto.class);
            cacheItem.setDataId(dataId);
            dtoItemList.add(cacheItem);
 
            UserFaultInfoDto target = BeanHelper.copyAs(e, UserFaultInfoDto.class);
            target.setDataId(dataId);
            UserFaultInfoDto dto = cryptoService.encryptModelColumns(e);
            dto.setDataId(dataId);
            target.setUfContactEncrypt(dto.getUfContact());
            target.setUfPhoneEncrypt(dto.getUfPhone());
            target.setInboundEmailAddressEncrypt(dto.getInboundEmailAddress());
            DesensitiveUtils.format(target);
            respList.add(target);
        });
        dtoCacheList.setData(dtoItemList);
        String insertJsonString = JSONArray.toJSONString(dtoCacheList);
        String insertKey = PIPL_UNCONFIRM_INSERT + txId;
        boolean redisFlag = redisUtil.set(insertKey, insertJsonString, GlobalConst.DATA_EXPIRE);
        if (!redisFlag){
            throw new BizException("缓存写入失败");
        }
        return respList;
    }
 
    public List<UserFaultInfoDto> updateList(List<UserFaultInfoDto> userFaultInfoDtoList, String txId) {
        List<UserFaultInfoDto> respList = new ArrayList<>();
        CacheList<UserFaultInfoDto> dtoCacheList = new CacheList<>();
        dtoCacheList.setTableName(tableName);
        List<UserFaultInfoDto> dtoItemList = new ArrayList<>();
        userFaultInfoDtoList.forEach(e -> {
            UserFaultInfo userFaultInfo = UserFaultInfo.dao.findById(e.getDataId());
            UserFaultInfoDto cacheItem = BeanHelper.copyAs(e, UserFaultInfoDto.class);
            dtoItemList.add(cacheItem);
            UserFaultInfoDto dto = BeanHelper.copyAs(BeanHelper.copy(cacheItem,userFaultInfo),UserFaultInfoDto.class);
            UserFaultInfoDto target = BeanHelper.copyAs(dto, UserFaultInfoDto.class);
            dto = cryptoService.encryptModelColumns(dto);
            target.setUfContactEncrypt(dto.getUfContact());
            target.setUfPhoneEncrypt(dto.getUfPhone());
            target.setInboundEmailAddressEncrypt(dto.getInboundEmailAddress());
            DesensitiveUtils.format(target);
            respList.add(target);
        });
        dtoCacheList.setData(dtoItemList);
        String updateJsonString = JSONArray.toJSONString(dtoCacheList);
        String updateKey = PIPL_UNCONFIRM_UPDATE + txId;
        boolean redisFlag = redisUtil.set(updateKey, updateJsonString,GlobalConst.DATA_EXPIRE);
        if (!redisFlag){
            throw new BizException("缓存写入失败");
        }
        return respList;
    }
 
    public Boolean deleteOne(String dataId) {
        UserFaultInfo userFaultInfo = UserFaultInfo.dao.findById(dataId);
        userFaultInfo.setIsDelete(1);
        return userFaultInfo.saveOrUpdate();
    }
 
    public Boolean undeleteOne(String dataId) {
        UserFaultInfo userFaultInfo = UserFaultInfo.dao.findById(dataId);
        userFaultInfo.setIsDelete(0);
        return userFaultInfo.saveOrUpdate();
    }
 
    public List<UserFaultInfoDto> search(List<String> idList){
        if (CollUtil.isEmpty(idList)) {
            return null;
        }
        StringBuilder queryParam = new StringBuilder();
        queryParam.append("and id in ").append(idList.stream().collect(Collectors.joining(", ", "(", ")")));
        List<UserFaultInfo> quotesList = UserFaultInfo.dao.findList(queryParam.toString());
        return quotesList.stream()
                .map(quotes -> BeanHelper.copyAs(quotes, UserFaultInfoDto.class)).collect(Collectors.toList());
 
    }
}