月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-17 796b44ea813a1133beae4f3a67f1c0263510c0c7
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
package com.moon.server.service.data;
 
import com.moon.server.entity.all.AbstractPwdEntity;
import com.moon.server.entity.data.DownloadEntity;
import com.moon.server.entity.show.PipelineEntity;
import com.moon.server.helper.PathHelper;
import com.moon.server.helper.RsaHelper;
import com.moon.server.mapper.data.DownloadMapper;
import com.moon.server.helper.StringHelper;
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.*;
 
@Service
@SuppressWarnings("ALL")
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.getLikeUpperStr(name);
 
        return downloadMapper.selectCount(name);
    }
 
    @Override
    public List<DownloadEntity> selectByPage(String name, Integer limit, Integer offset) {
        name = StringHelper.getLikeUpperStr(name);
 
        return downloadMapper.selectByPage(name, limit, offset);
    }
 
    @Override
    public Integer selectCountForUser(Integer createUser, String types, String name) {
        name = StringHelper.getLikeUpperStr(name);
 
        return downloadMapper.selectCountForUser(createUser, types, name);
    }
 
    @Override
    public List<DownloadEntity> selectByPageForUser(Integer createUser, String types, String name, Integer limit, Integer offset) {
        name = StringHelper.getLikeUpperStr(name);
 
        return downloadMapper.selectByPageForUser(createUser, types, 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);
    }
 
    public String getDownloadFilePath(DownloadEntity de) {
        return pathHelper.getConfig().getDownloadPath() + File.separator + de.getUrl();
    }
 
    public static boolean decryptPwd(AbstractPwdEntity entity) {
        try {
            String pwd = RsaHelper.decrypt(entity.getPwd());
            if (StringHelper.isEmpty(pwd)) {
                return false;
            }
 
            entity.setPwd(pwd);
 
            return true;
        } catch (Exception ex) {
            log.error(ex.getMessage(), ex);
            return false;
        }
    }
 
    public static boolean decryptPwd(PipelineEntity pe) {
        try {
            String pwd = RsaHelper.decrypt(pe.getPwd());
            if (StringHelper.isEmpty(pwd)) {
                return false;
            }
 
            pe.setPwd(pwd);
 
            return true;
        } catch (Exception ex) {
            log.error(ex.getMessage(), ex);
            return false;
        }
    }
 
    public static String decryptPwd(String pwd) {
        try {
            return RsaHelper.decrypt(pwd);
        } catch (Exception ex) {
            log.error(ex.getMessage(), ex);
            return null;
        }
    }
}