管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-28 8cce08d1d96384edbd2d362173ffa98ca933ef13
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package com.lf.server.service.data;
 
import com.lf.server.entity.ctrl.DownloadReqEntity;
import com.lf.server.entity.data.DownloadEntity;
import com.lf.server.entity.data.MetaFileEntity;
import com.lf.server.entity.sys.UserEntity;
import com.lf.server.helper.*;
import com.lf.server.mapper.data.DownloadMapper;
import net.lingala.zip4j.ZipFile;
import net.lingala.zip4j.model.ZipParameters;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.io.File;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
/**
 * 下载记录
 * @author WWW
 */
@Service
public class DownloadService implements DownloadMapper {
    @Autowired
    PathHelper pathHelper;
 
    @Autowired
    DownloadMapper downloadMapper;
 
    private final static Log log = LogFactory.getLog(DownloadService.class);
 
    @Override
    public Integer selectCount(String name) {
        name = StringHelper.getLikeStr(name);
 
        return downloadMapper.selectCount(name);
    }
 
    @Override
    public List<DownloadEntity> selectByPage(String name, Integer limit, Integer offset) {
        name = StringHelper.getLikeStr(name);
 
        return downloadMapper.selectByPage(name, limit, offset);
    }
 
    @Override
    public Integer selectCountForUser(Integer createUser, Integer type, String name) {
        name = StringHelper.getLikeStr(name);
 
        return downloadMapper.selectCountForUser(createUser, type, name);
    }
 
    @Override
    public List<DownloadEntity> selectByPageForUser(Integer createUser, Integer type, String name, Integer limit, Integer offset) {
        name = StringHelper.getLikeStr(name);
 
        return downloadMapper.selectByPageForUser(createUser, type, name, limit, offset);
    }
 
    @Override
    public List<DownloadEntity> selectAll() {
        return downloadMapper.selectAll();
    }
 
    @Override
    public DownloadEntity selectById(int id) {
        return downloadMapper.selectById(id);
    }
 
    @Override
    public DownloadEntity selectByGuid(String guid) {
        return downloadMapper.selectByGuid(guid);
    }
 
    @Override
    public Integer insert(DownloadEntity entity) {
        return downloadMapper.insert(entity);
    }
 
    @Override
    public Integer inserts(List<DownloadEntity> list) {
        return downloadMapper.inserts(list);
    }
 
    @Override
    public Integer delete(int id) {
        return downloadMapper.delete(id);
    }
 
    @Override
    public Integer deletes(List<Integer> ids) {
        return downloadMapper.deletes(ids);
    }
 
    @Override
    public Integer update(DownloadEntity entity) {
        return downloadMapper.update(entity);
    }
 
    @Override
    public Integer updates(List<DownloadEntity> list) {
        return downloadMapper.updates(list);
    }
 
    /**
     * 获取下载文件路径
     *
     * @param de 下载实体类
     * @return 下载文件路径
     */
    public String getDownloadFilePath(DownloadEntity de) {
        return pathHelper.getConfig().getDownloadPath() + File.separator + de.getUrl();
    }
 
    /**
     * 校验密码有效性
     *
     * @param reqEntity 请求下载实体类
     * @return 是/否有效
     */
    public boolean validatePwd(DownloadReqEntity reqEntity) {
        try {
            String pwd = RsaHelper.decrypt(reqEntity.getPwd());
            if (StringHelper.isEmpty(pwd) || !StringHelper.checkPwdValid(pwd)) {
                return false;
            }
 
            reqEntity.setPwd(pwd);
 
            return true;
        } catch (Exception ex) {
            log.error(ex.getMessage(), ex);
            return false;
        }
    }
 
    /**
     * 解密
     *
     * @param pwd 加密密码
     * @return 原始密码
     */
    public String decryptPwd(String pwd) {
        try {
            return RsaHelper.decrypt(pwd);
        } catch (Exception ex) {
            log.error(ex.getMessage(), ex);
            return null;
        }
    }
 
    /**
     * 打包文件
     *
     * @param ue   用户实体
     * @param list 元数据文件集合
     * @param pwd  密码
     * @return 下载文件GUID
     */
    public String zipFiles(UserEntity ue, List<MetaFileEntity> list, String pwd) {
        rmRepeatMetaFiles(list);
 
        String downloadPath = pathHelper.getDownloadFullPath();
        String zipName = StringHelper.YMDHMS2_FORMAT.format(new Date()) + ".zip";
        String zipFile = downloadPath + File.separator + zipName;
 
        ZipFile zip = Zip4jHelper.createZipFile(zipFile, pwd);
        ZipParameters params = Zip4jHelper.getZipParams();
 
        addMetaFiles(zip, params, list);
 
        return null;
    }
 
    /**
     * 移除重复的元数据文件
     */
    private void rmRepeatMetaFiles(List<MetaFileEntity> list) {
        List<String> guidList = new ArrayList<>();
 
        int i = 0;
        while (i < list.size()) {
            MetaFileEntity entity = list.get(i);
            if (guidList.contains(entity.getGuid())) {
                list.remove(i);
                continue;
            }
 
            guidList.add(entity.getGuid());
            i++;
        }
    }
 
    /**
     * 添加元数据文件至Zip包
     */
    private void addMetaFiles(ZipFile zip, ZipParameters params, List<MetaFileEntity> list) {
        String uploadPath = pathHelper.getConfig().getUploadPath();
        for (MetaFileEntity entity : list) {
            String filePath = uploadPath + File.separator + entity.getPath();
            File file = new File(filePath);
            File newFile = new File(filePath.replace(entity.getGuid(), entity.getName()));
 
            try {
                file.renameTo(newFile);
                zip.addFile(newFile, params);
            } catch (Exception ex) {
                log.error(ex.getMessage(), ex);
            } finally {
                newFile.renameTo(file);
            }
        }
    }
}