|
@@ -1,6 +1,8 @@
|
|
|
package com.macro.mall.tiny.modules.business.controller;
|
|
|
|
|
|
+import com.google.common.collect.Lists;
|
|
|
import com.macro.mall.tiny.common.api.CommonResult;
|
|
|
+import com.macro.mall.tiny.common.util.MyFileUtils;
|
|
|
import com.macro.mall.tiny.config.UploadConfig;
|
|
|
import com.macro.mall.tiny.domain.AdminUserDetails;
|
|
|
import com.macro.mall.tiny.modules.business.dto.FileDownloadParam;
|
|
@@ -13,6 +15,10 @@ import com.macro.mall.tiny.security.util.AuthUtil;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.apache.commons.compress.archivers.zip.ParallelScatterZipCreator;
|
|
|
+import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
|
|
|
+import org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream;
|
|
|
+import org.apache.commons.compress.parallel.InputStreamSupplier;
|
|
|
import org.apache.poi.ss.usermodel.Workbook;
|
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -31,7 +37,10 @@ import java.nio.charset.Charset;
|
|
|
import java.nio.file.Files;
|
|
|
import java.nio.file.Path;
|
|
|
import java.nio.file.Paths;
|
|
|
+import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
+import java.util.concurrent.atomic.AtomicInteger;
|
|
|
+import java.util.stream.Collectors;
|
|
|
import java.util.zip.ZipEntry;
|
|
|
import java.util.zip.ZipOutputStream;
|
|
|
|
|
@@ -98,12 +107,12 @@ public class FileController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- *@describe 获取全部文件夹
|
|
|
- *@param
|
|
|
- *@return com.macro.mall.tiny.common.api.CommonResult<com.macro.mall.tiny.modules.business.model.BDirectory>
|
|
|
- *@author gjs
|
|
|
- *@since J7.23.0
|
|
|
- *@date 2021/4/2
|
|
|
+ * @param
|
|
|
+ * @return com.macro.mall.tiny.common.api.CommonResult<com.macro.mall.tiny.modules.business.model.BDirectory>
|
|
|
+ * @describe 获取全部文件夹
|
|
|
+ * @author gjs
|
|
|
+ * @date 2021/4/2
|
|
|
+ * @since J7.23.0
|
|
|
*/
|
|
|
@ApiOperation("获取全部文件夹接口")
|
|
|
@GetMapping("/getAllDirectory")
|
|
@@ -114,12 +123,12 @@ public class FileController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- *@describe 获取文件夹下全被文件详细接口
|
|
|
- *@param path
|
|
|
- *@return com.macro.mall.tiny.common.api.CommonResult<java.util.List<com.macro.mall.tiny.modules.business.model.BFileDetail>>
|
|
|
- *@author gjs
|
|
|
- *@since J7.23.0
|
|
|
- *@date 2021/4/5
|
|
|
+ * @param path
|
|
|
+ * @return com.macro.mall.tiny.common.api.CommonResult<java.util.List < com.macro.mall.tiny.modules.business.model.BFileDetail>>
|
|
|
+ * @describe 获取文件夹下全被文件详细接口
|
|
|
+ * @author gjs
|
|
|
+ * @date 2021/4/5
|
|
|
+ * @since J7.23.0
|
|
|
*/
|
|
|
@ApiOperation("获取文件夹下全部文件详细接口")
|
|
|
@GetMapping("/getFileDetail")
|
|
@@ -143,16 +152,16 @@ public class FileController {
|
|
|
AdminUserDetails userDetails = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
|
boolean access = AuthUtil.checkAccess(userDetails, AuthUtil.ACCESS);
|
|
|
File file = new File(path);
|
|
|
- if (file.getName().startsWith(String.valueOf(UploadConfig.AUTH_STR))&&!access) return;
|
|
|
+ if (file.getName().contains(String.valueOf(UploadConfig.AUTH_STR)) && !access) return;
|
|
|
if (file.exists()) { //判断文件父目录是否存在
|
|
|
String fileName = file.getName();
|
|
|
response.setContentType("application/form-data");
|
|
|
response.setCharacterEncoding("UTF-8");
|
|
|
response.setHeader("Content-Disposition", "attachment;fileName=" + URLEncoder.encode(fileName, "UTF-8"));
|
|
|
response.setHeader("Access-Control-Expose-Headers", "content-Disposition");
|
|
|
- try(FileInputStream fileInputStream = new FileInputStream(file)){
|
|
|
+ try (FileInputStream fileInputStream = new FileInputStream(file)) {
|
|
|
try (BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInputStream)) {
|
|
|
- try (OutputStream outputStream = response.getOutputStream()){
|
|
|
+ try (OutputStream outputStream = response.getOutputStream()) {
|
|
|
byte[] buffer = new byte[1024];
|
|
|
int read = bufferedInputStream.read(buffer);
|
|
|
while (read != -1) {
|
|
@@ -172,46 +181,57 @@ public class FileController {
|
|
|
AdminUserDetails userDetails = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
|
boolean access = AuthUtil.checkAccess(userDetails, AuthUtil.ACCESS);
|
|
|
OutputStream outputStream = response.getOutputStream();
|
|
|
- ZipOutputStream zipOutputStream = new ZipOutputStream(outputStream, Charset.forName(charset));
|
|
|
+ ParallelScatterZipCreator scatterZipCreator = new ParallelScatterZipCreator();
|
|
|
+ ZipArchiveOutputStream zipArchiveOutputStream = new ZipArchiveOutputStream(outputStream);
|
|
|
response.setContentType("multipart/form-data");
|
|
|
response.setHeader("Content-Disposition", "attachment;fileName=" + URLEncoder.encode(fileDownloadParam.getName(), "UTF-8"));
|
|
|
response.setHeader("Access-Control-Expose-Headers", "content-Disposition");
|
|
|
try {
|
|
|
- for (String path : fileDownloadParam.getFileList()) {
|
|
|
- Path file = Paths.get(path);
|
|
|
- String fileName = file.getFileName().toString();
|
|
|
- if (fileName.startsWith(String.valueOf(UploadConfig.AUTH_STR)) && !access) {
|
|
|
- continue;
|
|
|
+ List<String> fileList = fileDownloadParam.getFileList();
|
|
|
+ ArrayList<String> allSubFile = Lists.newArrayList();
|
|
|
+ fileList.forEach(filePath -> {
|
|
|
+ File file = new File(filePath);
|
|
|
+ if (file.exists() && file.isDirectory()) {
|
|
|
+ MyFileUtils.addAllSubFileList(allSubFile, file, access);
|
|
|
}
|
|
|
- if (Files.isDirectory(file)) {
|
|
|
- continue;
|
|
|
+ });
|
|
|
+ fileList.addAll(allSubFile);
|
|
|
+
|
|
|
+ fileList.forEach(filePath -> {
|
|
|
+ Path path = Paths.get(filePath);
|
|
|
+ if (Files.isDirectory(path)) {
|
|
|
+ return;
|
|
|
}
|
|
|
- try (InputStream inputStream = Files.newInputStream(file)) {
|
|
|
- // 创建一个压缩项,指定名称
|
|
|
- int count = file.getNameCount();
|
|
|
- StringBuilder filePathSB = new StringBuilder();
|
|
|
- for (int i = 2; i < count - 1; i++) {
|
|
|
- filePathSB.append(file.getName(i)).append("/");
|
|
|
- }
|
|
|
- String filePath = filePathSB.toString() + fileName;
|
|
|
- ZipEntry zipEntry = new ZipEntry(filePath);
|
|
|
- // 添加到压缩流
|
|
|
- zipOutputStream.putNextEntry(zipEntry);
|
|
|
- // 写入数据
|
|
|
- int len;
|
|
|
- byte[] buffer = new byte[1024 * 10];
|
|
|
- while ((len = inputStream.read(buffer)) > 0) {
|
|
|
- zipOutputStream.write(buffer, 0, len);
|
|
|
+ Path relativePath = path.subpath(3, path.getNameCount());
|
|
|
+ ZipArchiveEntry archiveEntry = new ZipArchiveEntry(relativePath.toString());
|
|
|
+ archiveEntry.setMethod(ZipEntry.DEFLATED);
|
|
|
+ InputStreamSupplier supplier = () -> {
|
|
|
+ try {
|
|
|
+ return new FileInputStream(path.toFile());
|
|
|
+ } catch (FileNotFoundException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ return null;
|
|
|
}
|
|
|
- zipOutputStream.flush();
|
|
|
- }
|
|
|
- // 完成所有压缩项的添加
|
|
|
- zipOutputStream.closeEntry();
|
|
|
- }
|
|
|
+ };
|
|
|
+ scatterZipCreator.addArchiveEntry(archiveEntry, supplier);
|
|
|
+ });
|
|
|
+ scatterZipCreator.writeTo(zipArchiveOutputStream);
|
|
|
} finally {
|
|
|
- zipOutputStream.close();
|
|
|
+ zipArchiveOutputStream.close();
|
|
|
outputStream.close();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("文件删除接口")
|
|
|
+ @GetMapping("/delete")
|
|
|
+ public CommonResult<String> delete(@RequestParam @PathParam(value = "path") String path) throws IOException {
|
|
|
+ AdminUserDetails userDetails = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
|
+ boolean deleteFile = fileService.deleteFile(path, userDetails);
|
|
|
+ if (deleteFile) {
|
|
|
+ return CommonResult.success("删除成功");
|
|
|
+ } else {
|
|
|
+ return CommonResult.failed("删除失败");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|