|
@@ -1,11 +1,12 @@
|
|
|
package com.ruoyi.file.service;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.ruoyi.file.mapper.FilesMapper;
|
|
|
+import com.usky.common.core.bean.CommonPage;
|
|
|
import com.usky.common.security.utils.SecurityUtils;
|
|
|
-import com.usky.system.model.LoginUser;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -35,7 +36,7 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, FilesUpload> impl
|
|
|
public FileUploadResponse upload(MultipartFile file) {
|
|
|
|
|
|
// 获取当前登录用户昵称(如果可用)
|
|
|
- String userName = getUserNameFromSecurityContext();
|
|
|
+ String userName = SecurityUtils.getUsername();
|
|
|
|
|
|
// 文件夹路径名称
|
|
|
String originalFilename = file.getOriginalFilename();
|
|
@@ -94,7 +95,7 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, FilesUpload> impl
|
|
|
save(saveFile);
|
|
|
|
|
|
// 返回 FileUploadResponse 对象
|
|
|
- return new FileUploadResponse(fileUuid, url);
|
|
|
+ return new FileUploadResponse(originalFilename, url);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
|
return null;
|
|
@@ -127,58 +128,11 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, FilesUpload> impl
|
|
|
return files.length + 1;
|
|
|
}
|
|
|
|
|
|
- //将文件以流的形式一次性读取到内存,通过响应输出流输出到前端
|
|
|
@Override
|
|
|
- public void download(String filesUUID, HttpServletResponse response) {
|
|
|
+ public void deleteFile(Integer id) {
|
|
|
try {
|
|
|
-
|
|
|
- // 忽略 favicon.ico 请求
|
|
|
- if ("favicon.ico".equals(filesUUID)) {
|
|
|
- // 直接返回,不做任何处理
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // 确保 filesUUID 是文件名,而不是完整的路径
|
|
|
- // 如果 filesUUID 包含路径分隔符,需要从最后的路径分隔符开始截取文件名
|
|
|
- String fileName = filesUUID.substring(filesUUID.lastIndexOf('/') + 1);
|
|
|
-
|
|
|
- // 确保路径拼接时使用正确的分隔符
|
|
|
- LocalDateTime now = LocalDateTime.now();
|
|
|
- String yearMonth = now.format(DateTimeFormatter.ofPattern("yyyyMM"));
|
|
|
- File uploadFile = new File(filesUploadPath + "/" + yearMonth, fileName);
|
|
|
-
|
|
|
- // 检查文件是否存在
|
|
|
- if (!uploadFile.exists()) {
|
|
|
- throw new FileNotFoundException("File not found: " + uploadFile.getAbsolutePath());
|
|
|
- }
|
|
|
-
|
|
|
- // 设置响应头
|
|
|
- String encodedFileName = URLEncoder.encode(fileName, "UTF-8").replaceAll("\\+", "%20");
|
|
|
- response.addHeader("Content-Disposition", "attachment; filename*=UTF-8''" + encodedFileName);
|
|
|
- response.setContentType("application/octet-stream");
|
|
|
-
|
|
|
- // 使用 try-with-resources 确保流正确关闭
|
|
|
- try (InputStream inputStream = new BufferedInputStream(new FileInputStream(uploadFile));
|
|
|
- ServletOutputStream os = response.getOutputStream()) {
|
|
|
-
|
|
|
- byte[] buffer = new byte[1024];
|
|
|
- int length;
|
|
|
- while ((length = inputStream.read(buffer)) != -1) {
|
|
|
- os.write(buffer, 0, length);
|
|
|
- }
|
|
|
- }
|
|
|
- } catch (IOException e) {
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public void deleteFile(String filesUUID) {
|
|
|
- try {
|
|
|
-
|
|
|
- // 根据文件名查询文件信息
|
|
|
- FilesUpload file = getOne(new QueryWrapper<FilesUpload>().eq("name", filesUUID));
|
|
|
-
|
|
|
+ // 根据 id 查询文件信息
|
|
|
+ FilesUpload file = getById(id);
|
|
|
if (file == null) {
|
|
|
throw new RuntimeException("文件不存在,无法删除");
|
|
|
}
|
|
@@ -216,7 +170,7 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, FilesUpload> impl
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Page<FilesUpload> queryFiles(String filesName, LocalDateTime startTime, LocalDateTime endTime, Boolean isDeleted, String fileType, Page<FilesUpload> page) {
|
|
|
+ public CommonPage<FilesUpload> queryFiles(String filesName, LocalDateTime startTime, LocalDateTime endTime, Boolean isDeleted, String fileType, int current, int size) {
|
|
|
QueryWrapper<FilesUpload> queryWrapper = new QueryWrapper<>();
|
|
|
|
|
|
// 默认查询未删除的文件
|
|
@@ -246,7 +200,20 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, FilesUpload> impl
|
|
|
// 按照创建时间倒序排列
|
|
|
queryWrapper.orderByDesc("create_time");
|
|
|
|
|
|
- return page(page, queryWrapper);
|
|
|
+ // 创建分页请求对象
|
|
|
+ Page<FilesUpload> page = new Page<>(current, size);
|
|
|
+
|
|
|
+ // 执行分页查询
|
|
|
+ IPage<FilesUpload> iPage = baseMapper.selectPage(page, queryWrapper);
|
|
|
+
|
|
|
+ // 将 MyBatis Plus 的 IPage 转换为 CommonPage
|
|
|
+ CommonPage<FilesUpload> commonPage = new CommonPage<>();
|
|
|
+ commonPage.setRecords(iPage.getRecords());
|
|
|
+ commonPage.setTotal(iPage.getRecords().size());
|
|
|
+ commonPage.setSize(iPage.getSize());
|
|
|
+ commonPage.setCurrent(iPage.getCurrent());
|
|
|
+
|
|
|
+ return commonPage;
|
|
|
}
|
|
|
|
|
|
private String getUserNameFromSecurityContext() {
|