|
@@ -15,15 +15,17 @@ import com.macro.mall.tiny.modules.ums.model.UmsAdmin;
|
|
|
import com.macro.mall.tiny.modules.ums.service.UmsAdminService;
|
|
|
import com.macro.mall.tiny.security.util.AuthUtil;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.apache.commons.compress.archivers.ArchiveEntry;
|
|
|
+import org.apache.commons.compress.archivers.ArchiveInputStream;
|
|
|
+import org.apache.commons.compress.archivers.zip.ZipArchiveInputStream;
|
|
|
+import org.apache.commons.compress.utils.IOUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.scheduling.annotation.Async;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
-import java.io.File;
|
|
|
-import java.io.InputStream;
|
|
|
-import java.io.OutputStream;
|
|
|
+import java.io.*;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.nio.charset.Charset;
|
|
|
import java.nio.file.Files;
|
|
@@ -45,9 +47,6 @@ import java.util.zip.ZipInputStream;
|
|
|
@Slf4j
|
|
|
public class AsyncHandler {
|
|
|
|
|
|
- @Value("${system.charset:gbk}")
|
|
|
- private String charset;
|
|
|
-
|
|
|
@Autowired
|
|
|
private UmsAdminService adminService;
|
|
|
|
|
@@ -71,8 +70,10 @@ public class AsyncHandler {
|
|
|
|
|
|
@Async
|
|
|
@Transactional
|
|
|
- public void handleDocument(Long provinceId, String fileSource, String lineName, AdminUserDetails userDetails) {
|
|
|
+ public void handleDocument(Long provinceId, String fileSource, String lineName, AdminUserDetails userDetails, String charset) {
|
|
|
StringBuilder warnMsg = new StringBuilder();
|
|
|
+ BLine line = null;
|
|
|
+ Long userId = null;
|
|
|
try {
|
|
|
if (provinceId == null) Asserts.fail("上传失败,省份不能为空,provinceId:" + provinceId);
|
|
|
if (userDetails == null) Asserts.fail("上传失败,未获取到当前用户");
|
|
@@ -82,12 +83,12 @@ public class AsyncHandler {
|
|
|
|
|
|
String username = userDetails.getUsername();
|
|
|
UmsAdmin umsAdmin = adminService.getAdminByUsername(username);
|
|
|
- Long userId = umsAdmin.getId();
|
|
|
+ userId = umsAdmin.getId();
|
|
|
boolean canCover = AuthUtil.checkAccess(userDetails, AuthUtil.COVER);
|
|
|
// 查看是否为线路创建者
|
|
|
QueryWrapper<BLine> wrapper = new QueryWrapper<>();
|
|
|
wrapper.lambda().eq(BLine::getName, lineName);
|
|
|
- BLine line = lineService.getOne(wrapper);
|
|
|
+ line = lineService.getOne(wrapper);
|
|
|
List<BTower> towerList = Lists.newArrayList();
|
|
|
if (line == null) {
|
|
|
// 如果为空,则创建新线路
|
|
@@ -110,9 +111,6 @@ public class AsyncHandler {
|
|
|
Files.createDirectories(rootPath);
|
|
|
}
|
|
|
|
|
|
- // 获取暂存文件Path
|
|
|
- Path filePath = Paths.get(fileSource);
|
|
|
-
|
|
|
// 获取枚举类判断
|
|
|
DirectoryEnum[] enums = DirectoryEnum.values();
|
|
|
HashMap<String, Boolean> booleanHashMap = new HashMap<>();
|
|
@@ -120,70 +118,66 @@ public class AsyncHandler {
|
|
|
booleanHashMap.put(directory.getName(), false);
|
|
|
}
|
|
|
|
|
|
- try (ZipFile zipFile = new ZipFile(filePath.toFile(), Charset.forName(charset))) {
|
|
|
- // 读取zip流
|
|
|
- try (ZipInputStream zipInputStream = new ZipInputStream(Files.newInputStream(filePath), Charset.forName(charset))) {
|
|
|
- ZipEntry zipEntry;
|
|
|
- // 遍历每一个zip项
|
|
|
- while ((zipEntry = zipInputStream.getNextEntry()) != null) {
|
|
|
- // 获取zip项目名称
|
|
|
- String entryName = zipEntry.getName();
|
|
|
-
|
|
|
- // 解析各项路径
|
|
|
- String[] pathStr = entryName.split(UploadConfig.SEPARATOR);
|
|
|
- if (pathStr.length < 2) {
|
|
|
- continue;
|
|
|
- }
|
|
|
- String SecDirectoryName = pathStr[1].charAt(0) == UploadConfig.AUTH_STR ? pathStr[1].substring(1) : pathStr[1];
|
|
|
- if (booleanHashMap.get(SecDirectoryName) != null) {
|
|
|
- booleanHashMap.put(SecDirectoryName, true);
|
|
|
- } else if ("杆塔信息录入.xlsx".equals(SecDirectoryName) || "杆塔信息录入.xls".equals(SecDirectoryName)) {
|
|
|
- List<TowerExcelModel> modelArrayList = EasyExcel.read(zipFile.getInputStream(zipEntry), TowerExcelModel.class, null).sheet().doReadSync();
|
|
|
- BLine finalLine = line;
|
|
|
- towerList = modelArrayList.stream().map(model -> {
|
|
|
- BTower tower = new BTower();
|
|
|
- tower.setName(model.getName());
|
|
|
- tower.setShape(model.getShape());
|
|
|
- tower.setSort(model.getSort());
|
|
|
- tower.setHardwareType(model.getHardware());
|
|
|
- // 经纬度设置
|
|
|
- String lonLat = model.getLonLat();
|
|
|
- String[] lonLats = lonLat.split(",");
|
|
|
- BigDecimal lon = CommonUtils.Dms2D(lonLats[0]);
|
|
|
- BigDecimal lat = CommonUtils.Dms2D(lonLats[1]);
|
|
|
- tower.setLon(lon);
|
|
|
- tower.setLat(lat);
|
|
|
- tower.setLineId(finalLine.getId());
|
|
|
- tower.setHasFile(0);
|
|
|
- tower.setCreateTime(new Date());
|
|
|
- return tower;
|
|
|
- }).collect(Collectors.toList());
|
|
|
-// towerService.saveAndUpdate(towerList);
|
|
|
- continue;
|
|
|
- } else {
|
|
|
- warnMsg.append(entryName).append("第二层目录解析出错;");
|
|
|
- continue;
|
|
|
- }
|
|
|
+ try (InputStream fis = Files.newInputStream(Paths.get(fileSource));
|
|
|
+ InputStream bis = new BufferedInputStream(fis);
|
|
|
+ ArchiveInputStream ais = new ZipArchiveInputStream(bis, charset)) {
|
|
|
|
|
|
+ ArchiveEntry entry;
|
|
|
+ while (Objects.nonNull(entry = ais.getNextEntry())) {
|
|
|
+ if (!ais.canReadEntryData(entry)) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
|
|
|
- // 构建绝对路径
|
|
|
- Path entryFile = rootPath.resolve(entryName);
|
|
|
- if (zipEntry.isDirectory()) { // 文件夹
|
|
|
- if (!Files.isDirectory(entryFile)) {
|
|
|
- Files.createDirectories(entryFile);
|
|
|
- }
|
|
|
- } else if (!canCover && Files.exists(entryFile)) {
|
|
|
- warnMsg.append(entryName).append("已存在,无权覆盖;");
|
|
|
- } else { // 文件
|
|
|
- // 读取zip项数据流
|
|
|
- try (InputStream zipEntryInputStream = zipFile.getInputStream(zipEntry)) {
|
|
|
- try (OutputStream fileOutputStream = Files.newOutputStream(entryFile, StandardOpenOption.CREATE)) {
|
|
|
- byte[] buffer = new byte[2048];
|
|
|
- int length;
|
|
|
- while ((length = zipEntryInputStream.read(buffer)) != -1) {
|
|
|
- fileOutputStream.write(buffer, 0, length);
|
|
|
- }
|
|
|
- }
|
|
|
+ String entryName = entry.getName();
|
|
|
+ // 解析各项路径
|
|
|
+ String[] pathStr = entryName.split(UploadConfig.SEPARATOR);
|
|
|
+ if (pathStr.length < 2) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ String SecDirectoryName = pathStr[1].charAt(0) == UploadConfig.AUTH_STR ? pathStr[1].substring(1) : pathStr[1];
|
|
|
+ if (booleanHashMap.get(SecDirectoryName) != null) {
|
|
|
+ booleanHashMap.put(SecDirectoryName, true);
|
|
|
+ } else if ("杆塔信息录入.xlsx".equals(SecDirectoryName) || "杆塔信息录入.xls".equals(SecDirectoryName)) {
|
|
|
+ List<TowerExcelModel> modelArrayList = EasyExcel.read(ais, TowerExcelModel.class, null).sheet().doReadSync();
|
|
|
+ BLine finalLine = line;
|
|
|
+ towerList = modelArrayList.stream().map(model -> {
|
|
|
+ BTower tower = new BTower();
|
|
|
+ tower.setName(model.getName());
|
|
|
+ tower.setShape(model.getShape());
|
|
|
+ tower.setSort(model.getSort());
|
|
|
+ tower.setHardwareType(model.getHardware());
|
|
|
+ // 经纬度设置
|
|
|
+ String lonLat = model.getLonLat();
|
|
|
+ String[] lonLats = lonLat.split(",");
|
|
|
+ BigDecimal lon = CommonUtils.Dms2D(lonLats[0]);
|
|
|
+ BigDecimal lat = CommonUtils.Dms2D(lonLats[1]);
|
|
|
+ tower.setLon(lon);
|
|
|
+ tower.setLat(lat);
|
|
|
+ tower.setLineId(finalLine.getId());
|
|
|
+ tower.setHasFile(0);
|
|
|
+ tower.setCreateTime(new Date());
|
|
|
+ return tower;
|
|
|
+ }).collect(Collectors.toList());
|
|
|
+// towerService.saveAndUpdate(towerList);
|
|
|
+ continue;
|
|
|
+ } else {
|
|
|
+ warnMsg.append(entryName).append("第二层目录解析出错;");
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
+ Path entryFile = rootPath.resolve(entryName);
|
|
|
+ if (entry.isDirectory()) {
|
|
|
+ if (!Files.isDirectory(entryFile)) {
|
|
|
+ Files.createDirectories(entryFile);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ Path parent = entryFile.getParent();
|
|
|
+ if (!canCover && Files.exists(entryFile)) {
|
|
|
+ warnMsg.append(entryName).append(entryFile.getFileName().toString()).append("已存在,无权覆盖;");
|
|
|
+ } else if (Files.isDirectory(parent)) {
|
|
|
+ Files.createDirectories(parent);
|
|
|
+ try (OutputStream o = Files.newOutputStream(entryFile)) {
|
|
|
+ IOUtils.copy(ais, o);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -197,7 +191,7 @@ public class AsyncHandler {
|
|
|
// 存储上传记录
|
|
|
BLineUploadLog lineUploadLog = new BLineUploadLog();
|
|
|
lineUploadLog.setLineId(line.getId());
|
|
|
- lineUploadLog.setStatus(true);
|
|
|
+ lineUploadLog.setStatus(1);
|
|
|
lineUploadLog.setUploaderId(userId);
|
|
|
lineUploadLog.setUploadTime(new Date());
|
|
|
lineUploadLog.setWarnMsg(warnMsg.toString());
|
|
@@ -218,6 +212,16 @@ public class AsyncHandler {
|
|
|
log.error("上传文件抛出业务异常", e);
|
|
|
} catch (Exception e) {
|
|
|
log.error("上传文件抛出异常", e);
|
|
|
+ if (line != null && userId != null) {
|
|
|
+ // 存储上传记录
|
|
|
+ BLineUploadLog lineUploadLog = new BLineUploadLog();
|
|
|
+ lineUploadLog.setLineId(line.getId());
|
|
|
+ lineUploadLog.setStatus(0);
|
|
|
+ lineUploadLog.setUploaderId(userId);
|
|
|
+ lineUploadLog.setUploadTime(new Date());
|
|
|
+ lineUploadLog.setWarnMsg(e.getMessage());
|
|
|
+ lineUploadLogService.save(lineUploadLog);
|
|
|
+ }
|
|
|
} finally {
|
|
|
File file = new File(fileSource);
|
|
|
if (file.exists()) {
|