|
@@ -4,7 +4,6 @@ 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;
|
|
|
import com.macro.mall.tiny.modules.business.dto.FileUploadParam;
|
|
|
import com.macro.mall.tiny.modules.business.model.BDirectory;
|
|
@@ -23,13 +22,11 @@ import org.apache.poi.ss.usermodel.Workbook;
|
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.core.io.ClassPathResource;
|
|
|
-import org.springframework.security.core.context.SecurityContextHolder;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
-import javax.websocket.server.PathParam;
|
|
|
import java.io.*;
|
|
|
import java.net.URLEncoder;
|
|
|
import java.nio.file.Files;
|
|
@@ -71,10 +68,9 @@ public class FileController {
|
|
|
Integer chunk = fileUploadParam.getChunk();
|
|
|
MultipartFile file = fileUploadParam.getFile();
|
|
|
String charset = fileUploadParam.getCharset();
|
|
|
- AdminUserDetails userDetails = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
|
|
|
|
if (chunks != null && chunks != 0) {
|
|
|
- fileService.uploadWithBlock(name, lineName, provinceId, size, chunks, chunk, file, userDetails, charset);
|
|
|
+ fileService.uploadWithBlock(name, lineName, provinceId, size, chunks, chunk, file, charset);
|
|
|
} else {
|
|
|
fileService.upload(file);
|
|
|
}
|
|
@@ -110,8 +106,7 @@ public class FileController {
|
|
|
@ApiOperation("获取全部文件夹接口")
|
|
|
@GetMapping("/getAllDirectory")
|
|
|
public CommonResult<BDirectory> getDirectory() {
|
|
|
- AdminUserDetails userDetails = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
|
- final BDirectory directory = fileService.getRootDirectory(userDetails);
|
|
|
+ final BDirectory directory = fileService.getRootDirectory();
|
|
|
return CommonResult.success(directory);
|
|
|
}
|
|
|
|
|
@@ -126,24 +121,21 @@ public class FileController {
|
|
|
@ApiOperation("获取文件夹下全部文件详细接口")
|
|
|
@PostMapping("/getFileDetail")
|
|
|
public CommonResult<List<BFileDetail>> getFileDetail(@RequestBody Map<String,String> params) {
|
|
|
- AdminUserDetails userDetails = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
|
- List<BFileDetail> fileDetailList = fileService.getFileDetailList(params.get("path"), userDetails);
|
|
|
+ List<BFileDetail> fileDetailList = fileService.getFileDetailList(params.get("path"));
|
|
|
return CommonResult.success(fileDetailList);
|
|
|
}
|
|
|
|
|
|
@ApiOperation("获取文件夹下全部文件/文件夹")
|
|
|
@PostMapping("/getFile")
|
|
|
public CommonResult<List<BFile>> getFile(@RequestBody Map<String,String> params) {
|
|
|
- AdminUserDetails userDetails = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
|
- List<BFile> fileDetailList = fileService.getFileList(params.get("path"), userDetails);
|
|
|
+ List<BFile> fileDetailList = fileService.getFileList(params.get("path"));
|
|
|
return CommonResult.success(fileDetailList);
|
|
|
}
|
|
|
|
|
|
@ApiOperation("文件下载接口")
|
|
|
@PostMapping("/download")
|
|
|
public void downLoad(HttpServletResponse response, @RequestBody Map<String,String> params) throws Exception {
|
|
|
- AdminUserDetails userDetails = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
|
- boolean access = AuthUtil.checkAccess(userDetails, AuthUtil.ACCESS);
|
|
|
+ boolean access = AuthUtil.checkAccess(AuthUtil.ACCESS);
|
|
|
File file = new File(params.get("path"));
|
|
|
if (file.getName().contains(String.valueOf(UploadConfig.AUTH_STR)) && !access) return;
|
|
|
if (file.exists()) { //判断文件父目录是否存在
|
|
@@ -171,8 +163,7 @@ public class FileController {
|
|
|
@ApiOperation("多文件压缩下载接口")
|
|
|
@PostMapping("/multiFileZipDownload")
|
|
|
public void multiFileZipDownload(HttpServletResponse response, @Validated @RequestBody FileDownloadParam fileDownloadParam) throws Exception {
|
|
|
- AdminUserDetails userDetails = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
|
- boolean access = AuthUtil.checkAccess(userDetails, AuthUtil.ACCESS);
|
|
|
+ boolean access = AuthUtil.checkAccess(AuthUtil.ACCESS);
|
|
|
OutputStream outputStream = response.getOutputStream();
|
|
|
ParallelScatterZipCreator scatterZipCreator = new ParallelScatterZipCreator();
|
|
|
ZipArchiveOutputStream zipArchiveOutputStream = new ZipArchiveOutputStream(outputStream);
|
|
@@ -218,8 +209,7 @@ public class FileController {
|
|
|
@ApiOperation("文件删除接口")
|
|
|
@PostMapping("/delete")
|
|
|
public CommonResult<String> delete(@RequestBody Map<String,String> params) throws IOException {
|
|
|
- AdminUserDetails userDetails = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
|
- boolean deleteFile = fileService.deleteFile(params.get("path"), userDetails);
|
|
|
+ boolean deleteFile = fileService.deleteFile(params.get("path"));
|
|
|
if (deleteFile) {
|
|
|
return CommonResult.success("删除成功");
|
|
|
} else {
|