|
@@ -3,7 +3,6 @@ package com.ruoyi.file.service;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
-import com.ruoyi.file.mapper.FileSequenceMapper;
|
|
|
import com.ruoyi.file.mapper.FilesMapper;
|
|
|
import com.usky.common.security.utils.SecurityUtils;
|
|
|
import com.usky.system.model.LoginUser;
|
|
@@ -30,8 +29,6 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, FilesUpload> impl
|
|
|
@Value("${file.prefix}")
|
|
|
private String filesPrefix;//文件前缀
|
|
|
|
|
|
- @Autowired
|
|
|
- private FileSequenceMapper fileSequenceMapper;
|
|
|
|
|
|
|
|
|
@Override
|
|
@@ -49,13 +46,14 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, FilesUpload> impl
|
|
|
// 获取当前日期时间
|
|
|
LocalDateTime now = LocalDateTime.now();
|
|
|
String timestamp = now.format(DateTimeFormatter.ofPattern("yyyyMMddHHmmss"));
|
|
|
- int monthIncrement = getMonthIncrement(now.getYear(), now.getMonthValue()); // 获取每月递增值
|
|
|
|
|
|
//文件类型
|
|
|
String type = originalFilename.substring(originalFilename.lastIndexOf(".") + 1).toLowerCase();
|
|
|
|
|
|
// 按照年月创建文件夹
|
|
|
String yearMonth = now.format(DateTimeFormatter.ofPattern("yyyyMM"));
|
|
|
+ // 获取每月递增值
|
|
|
+ int monthIncrement = getMonthIncrement(yearMonth);
|
|
|
// 新文件名格式:时间戳+每月递增值+文件类型
|
|
|
String fileUuid = timestamp + "A" + String.format("%04d", monthIncrement) + "." + type;
|
|
|
|
|
@@ -103,22 +101,30 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, FilesUpload> impl
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private int getMonthIncrement(int year, int month) {
|
|
|
- // 查询当前月份的递增值
|
|
|
- FileSequence increment = fileSequenceMapper.getByYearAndMonth(year, month);
|
|
|
- if (increment == null) {
|
|
|
- // 如果没有记录,则初始化为1
|
|
|
- increment = new FileSequence();
|
|
|
- increment.setYear(year);
|
|
|
- increment.setMonth(month);
|
|
|
- increment.setValue(1);
|
|
|
- fileSequenceMapper.insert(increment);
|
|
|
- } else {
|
|
|
- // 更新递增值
|
|
|
- increment.setValue(increment.getValue() + 1);
|
|
|
- fileSequenceMapper.updateById(increment);
|
|
|
+ /**
|
|
|
+ * 获取每月递增值
|
|
|
+ * @param yearMonth 年月(格式:yyyyMM)
|
|
|
+ * @return 递增值
|
|
|
+ */
|
|
|
+ private int getMonthIncrement(String yearMonth) {
|
|
|
+ // 目标文件夹路径
|
|
|
+ String destPath = filesUploadPath + "/" + yearMonth;
|
|
|
+ File folder = new File(destPath);
|
|
|
+
|
|
|
+ // 如果文件夹不存在,则递增值从1开始
|
|
|
+ if (!folder.exists()) {
|
|
|
+ folder.mkdirs();
|
|
|
+ return 1;
|
|
|
}
|
|
|
- return increment.getValue();
|
|
|
+
|
|
|
+ // 获取文件夹中已有的文件数量
|
|
|
+ File[] files = folder.listFiles();
|
|
|
+ if (files == null || files.length == 0) {
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 递增值为文件夹中现有文件数量 + 1
|
|
|
+ return files.length + 1;
|
|
|
}
|
|
|
|
|
|
//将文件以流的形式一次性读取到内存,通过响应输出流输出到前端
|