¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.FileHeader; |
| | | 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 decryptPwd(DownloadReqEntity reqEntity) { |
| | | try { |
| | | String pwd = RsaHelper.decrypt(reqEntity.getPwd()); |
| | | if (StringHelper.isEmpty(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) throws Exception { |
| | | 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); |
| | | |
| | | String dbPwd = Md5Helper.reverse(Md5Helper.generate(pwd)); |
| | | DownloadEntity downloadEntity = getDownloadEntity(ue, zipFile, dbPwd); |
| | | int rows = downloadMapper.insert(downloadEntity); |
| | | |
| | | return rows > 0 ? downloadEntity.getGuid() : 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(); |
| | | |
| | | int i = 1; |
| | | for (MetaFileEntity entity : list) { |
| | | try { |
| | | File file = new File(uploadPath + File.separator + entity.getPath()); |
| | | zip.addFile(file, params); |
| | | |
| | | FileHeader header = zip.getFileHeader(entity.getGuid()); |
| | | if (null != header) { |
| | | zip.renameFile(header, i++ + "_" + entity.getName()); |
| | | } |
| | | } catch (Exception ex) { |
| | | log.error(ex.getMessage(), ex); |
| | | } |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * è·åä¸è½½å®ä½ç±» |
| | | */ |
| | | private DownloadEntity getDownloadEntity(UserEntity ue, String file, String pwd) throws Exception { |
| | | DownloadEntity de = new DownloadEntity(); |
| | | de.setName(FileHelper.getFileName(file)); |
| | | // 1-Shpæä»¶ï¼2-ä¸é¢å¾ï¼3-å
æ°æ® |
| | | de.setType(3); |
| | | de.setSizes(FileHelper.sizeToMb(new File(file).length())); |
| | | de.setDepid(ue.getDepid()); |
| | | de.setDcount(0); |
| | | de.setPwd(pwd); |
| | | de.setUrl(FileHelper.getRelativePath(file)); |
| | | de.setDescr("å
æ°æ®æä»¶"); |
| | | de.setGuid(FileHelper.getFileMd5(file)); |
| | | de.setCreateUser(ue.getId()); |
| | | // de.setGeom(null) |
| | | |
| | | return de; |
| | | } |
| | | } |