|
@@ -0,0 +1,179 @@
|
|
|
+package com.wtkj.service.impl;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
+import com.wtkj.dto.UploadFileDTO;
|
|
|
+import com.wtkj.entity.FileAndFolder;
|
|
|
+import com.wtkj.entity.FileAndFolderHistory;
|
|
|
+import com.wtkj.service.ICommonService;
|
|
|
+import com.wtkj.service.IFileAndFolderHistoryService;
|
|
|
+import com.wtkj.service.IFileAndFolderService;
|
|
|
+import com.wutong.file.feign.IFileClient;
|
|
|
+import com.wutong.file.vo.FileVO;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import org.springblade.core.log.exception.ServiceException;
|
|
|
+import org.springblade.core.tool.api.R;
|
|
|
+import org.springblade.core.tool.utils.Func;
|
|
|
+import org.springblade.core.tool.utils.StringUtil;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
+import org.springframework.util.CollectionUtils;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Objects;
|
|
|
+
|
|
|
+import static com.wtkj.config.MagicValue.TWO;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author Blizzard
|
|
|
+ * @create at 2023-09-14 16:07
|
|
|
+ * @describe
|
|
|
+ */
|
|
|
+@Service
|
|
|
+@AllArgsConstructor
|
|
|
+public class CommonServiceImpl implements ICommonService {
|
|
|
+
|
|
|
+ private final IFileClient fileClient;
|
|
|
+ private final IFileAndFolderService fileAndFolderService;
|
|
|
+ private final IFileAndFolderHistoryService historyService;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean uploadFile(List<UploadFileDTO> files) {
|
|
|
+ boolean flag = false;
|
|
|
+ List<FileAndFolder> fileList = new ArrayList<>();
|
|
|
+ if (!CollectionUtils.isEmpty(files)) {
|
|
|
+ Long projectId = files.get(0).getProjectId();
|
|
|
+ Long parentId = files.get(0).getParentId();
|
|
|
+ Long stageId = files.get(0).getStageId();
|
|
|
+ files.forEach(file -> {
|
|
|
+ Long fileId = file.getBladeFileId();
|
|
|
+ R<FileVO> rpc = fileClient.findById(fileId);
|
|
|
+ if (rpc.isSuccess()) {
|
|
|
+ FileAndFolder newFile = new FileAndFolder();
|
|
|
+ newFile.setProjectId(projectId);
|
|
|
+ newFile.setStageId(stageId);
|
|
|
+ newFile.setParentId(parentId);
|
|
|
+ newFile.setBladeFileId(file.getBladeFileId());
|
|
|
+ newFile.setType(1);
|
|
|
+ newFile.setTitle(rpc.getData().getOriginalFileName());
|
|
|
+ if (parentId != null && parentId > 0L) {
|
|
|
+ FileAndFolder folder = fileAndFolderService.getById(parentId);
|
|
|
+ if (folder != null) {
|
|
|
+ newFile.setIsPrivate(folder.getIsPrivate());
|
|
|
+ newFile.setPrivateUser(folder.getPrivateUser());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fileList.add(newFile);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ flag = fileAndFolderService.saveBatch(fileList);
|
|
|
+ }
|
|
|
+ return flag;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
+ public boolean coverFile(List<UploadFileDTO> files) {
|
|
|
+ boolean flag = false;
|
|
|
+ List<FileAndFolder> fileList = new ArrayList<>();
|
|
|
+ List<FileAndFolderHistory> histories = new ArrayList<>();
|
|
|
+ if (!CollectionUtils.isEmpty(files)) {
|
|
|
+ Long projectId = files.get(0).getProjectId();
|
|
|
+ Long parentId = files.get(0).getParentId();
|
|
|
+ Long stageId = files.get(0).getStageId();
|
|
|
+ files.forEach(file -> {
|
|
|
+ Long fileId = file.getBladeFileId();
|
|
|
+ R<FileVO> rpc = fileClient.findById(fileId);
|
|
|
+ if (rpc.isSuccess()) {
|
|
|
+ //是否存在同名文件
|
|
|
+ LambdaQueryWrapper<FileAndFolder> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(FileAndFolder::getParentId, parentId);
|
|
|
+ lqw.eq(FileAndFolder::getTitle, rpc.getData().getOriginalFileName());
|
|
|
+ FileAndFolder old = fileAndFolderService.getOne(lqw);
|
|
|
+ if (old != null) {
|
|
|
+ //存在同名文件
|
|
|
+ //此处不删除旧的同名文件,直接修改值 ---> 再保存历史记录信息 修改已存在的的数据 更新url 文件大小等信息
|
|
|
+ //先根据旧的fileId判断是否存在历史记录
|
|
|
+ List<FileAndFolderHistory> hisList = historyService.getByLatestId(old.getBladeFileId());
|
|
|
+ if (!CollectionUtils.isEmpty(hisList)) {
|
|
|
+ histories.forEach(h -> {
|
|
|
+ h.setLatestId(fileId);
|
|
|
+ histories.add(h);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ //历史文件和新上传文件不是同一个的时候才保存
|
|
|
+ if (!fileId.equals(old.getBladeFileId())) {
|
|
|
+ FileAndFolderHistory his = new FileAndFolderHistory();
|
|
|
+ his.setLatestId(fileId);
|
|
|
+ his.setHistoryId(old.getBladeFileId());
|
|
|
+ hisList.add(his);
|
|
|
+ }
|
|
|
+ old.setBladeFileId(fileId);
|
|
|
+ } else {
|
|
|
+ FileAndFolder newFile = new FileAndFolder();
|
|
|
+ newFile.setProjectId(projectId);
|
|
|
+ newFile.setStageId(stageId);
|
|
|
+ newFile.setParentId(parentId);
|
|
|
+ newFile.setBladeFileId(file.getBladeFileId());
|
|
|
+ newFile.setType(1);
|
|
|
+ newFile.setTitle(rpc.getData().getOriginalFileName());
|
|
|
+ if (parentId != null && parentId > 0L) {
|
|
|
+ FileAndFolder folder = fileAndFolderService.getById(parentId);
|
|
|
+ if (folder != null) {
|
|
|
+ newFile.setIsPrivate(folder.getIsPrivate());
|
|
|
+ newFile.setPrivateUser(folder.getPrivateUser());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fileList.add(newFile);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if (!CollectionUtils.isEmpty(histories)) {
|
|
|
+ historyService.saveOrUpdateBatch(histories);
|
|
|
+ }
|
|
|
+ flag = fileAndFolderService.saveOrUpdateBatch(fileList);
|
|
|
+ }
|
|
|
+ return flag;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean remove(List<Long> ids) {
|
|
|
+ boolean flag = false;
|
|
|
+ if (!CollectionUtils.isEmpty(ids)) {
|
|
|
+ ids.forEach(id -> {
|
|
|
+ FileAndFolder byId = fileAndFolderService.getById(id);
|
|
|
+ //如果是文件夹
|
|
|
+ if (Objects.equals(byId.getType(), TWO)) {
|
|
|
+ List<FileAndFolder> children = fileAndFolderService.getChildren(null, id);
|
|
|
+ if (!CollectionUtils.isEmpty(children)) {
|
|
|
+ throw new ServiceException("删除文件夹失败:请先删除下级");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ flag = fileAndFolderService.removeByIds(ids);
|
|
|
+ }
|
|
|
+ return flag;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean move(String ids, Long stageId, Long parentId) {
|
|
|
+ boolean flag = false;
|
|
|
+ if (StringUtil.isNotBlank(ids)) {
|
|
|
+ List<FileAndFolder> list = new ArrayList<>();
|
|
|
+ List<Long> idList = Func.toLongList(ids);
|
|
|
+ idList.forEach(id -> {
|
|
|
+ FileAndFolder byId = fileAndFolderService.getById(id);
|
|
|
+ if (byId != null) {
|
|
|
+ byId.setStageId(stageId);
|
|
|
+ byId.setParentId(parentId);
|
|
|
+ list.add(byId);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ flag = fileAndFolderService.updateBatchById(list);
|
|
|
+ }
|
|
|
+ return flag;
|
|
|
+ }
|
|
|
+}
|