|
@@ -1,7 +1,13 @@
|
|
|
package com.tourism.webadmin.back.controller;
|
|
|
|
|
|
import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
+import cn.dev33.satoken.annotation.SaIgnore;
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
+import cn.hutool.core.util.ReflectUtil;
|
|
|
+import com.tourism.common.core.upload.BaseUpDownloader;
|
|
|
+import com.tourism.common.core.upload.UpDownloaderFactory;
|
|
|
+import com.tourism.common.core.upload.UploadResponseInfo;
|
|
|
+import com.tourism.common.core.upload.UploadStoreInfo;
|
|
|
import com.tourism.common.log.annotation.OperationLog;
|
|
|
import com.tourism.common.log.model.constant.SysOperationLogType;
|
|
|
import com.github.pagehelper.page.PageMethod;
|
|
@@ -13,6 +19,7 @@ import com.tourism.common.core.object.*;
|
|
|
import com.tourism.common.core.util.*;
|
|
|
import com.tourism.common.core.constant.*;
|
|
|
import com.tourism.common.core.annotation.MyRequestBody;
|
|
|
+import com.tourism.common.redis.cache.SessionCacheHelper;
|
|
|
import com.tourism.webadmin.config.ApplicationConfig;
|
|
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
@@ -22,6 +29,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
+import jakarta.servlet.http.HttpServletResponse;
|
|
|
import java.io.IOException;
|
|
|
import java.util.*;
|
|
|
|
|
@@ -40,6 +48,10 @@ public class DirectoryInfoController {
|
|
|
@Autowired
|
|
|
private ApplicationConfig appConfig;
|
|
|
@Autowired
|
|
|
+ private SessionCacheHelper cacheHelper;
|
|
|
+ @Autowired
|
|
|
+ private UpDownloaderFactory upDownloaderFactory;
|
|
|
+ @Autowired
|
|
|
private DirectoryInfoService directoryInfoService;
|
|
|
|
|
|
/**
|
|
@@ -240,7 +252,7 @@ public class DirectoryInfoController {
|
|
|
// 导出文件的标题数组
|
|
|
// NOTE: 下面的代码中仅仅导出了主表数据,主表聚合计算数据和主表关联字典的数据。
|
|
|
// 一对一从表数据的导出,可根据需要自行添加。如:headerMap.put("slaveFieldName.xxxField", "标题名称")
|
|
|
- Map<String, String> headerMap = new LinkedHashMap<>(11);
|
|
|
+ Map<String, String> headerMap = new LinkedHashMap<>(14);
|
|
|
headerMap.put("id", "主键id");
|
|
|
headerMap.put("parentIdDictMap.name", "父级id");
|
|
|
headerMap.put("menuName", "菜单名称");
|
|
@@ -252,6 +264,9 @@ public class DirectoryInfoController {
|
|
|
headerMap.put("updateUserId", "更新用户");
|
|
|
headerMap.put("updateTime", "更新时间");
|
|
|
headerMap.put("dataState", "删除标记(1: 正常 -1: 已删除)");
|
|
|
+ headerMap.put("isHotspotDictMap.name", "是否热点,0非热点,1热点");
|
|
|
+ headerMap.put("hotOrder", "热门排序");
|
|
|
+ headerMap.put("hotPictureUrl", "劳务图片");
|
|
|
ExportUtil.doExport(resultList, headerMap, "directoryInfo.xlsx");
|
|
|
}
|
|
|
|
|
@@ -273,6 +288,104 @@ public class DirectoryInfoController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 附件文件下载。
|
|
|
+ * 这里将图片和其他类型的附件文件放到不同的父目录下,主要为了便于今后图片文件的迁移。
|
|
|
+ *
|
|
|
+ * @param id 附件所在记录的主键Id。
|
|
|
+ * @param fieldName 附件所属的字段名。
|
|
|
+ * @param filename 文件名。如果没有提供该参数,就从当前记录的指定字段中读取。
|
|
|
+ * @param asImage 下载文件是否为图片。
|
|
|
+ * @param response Http 应答对象。
|
|
|
+ */
|
|
|
+ @SaIgnore
|
|
|
+ @OperationLog(type = SysOperationLogType.DOWNLOAD, saveResponse = false)
|
|
|
+ @GetMapping("/download")
|
|
|
+ public void download(
|
|
|
+ @RequestParam(required = false) Long id,
|
|
|
+ @RequestParam String fieldName,
|
|
|
+ @RequestParam String filename,
|
|
|
+ @RequestParam Boolean asImage,
|
|
|
+ HttpServletResponse response) {
|
|
|
+ if (MyCommonUtil.existBlankArgument(fieldName, filename, asImage)) {
|
|
|
+ response.setStatus(HttpServletResponse.SC_BAD_REQUEST);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 使用try来捕获异常,是为了保证一旦出现异常可以返回500的错误状态,便于调试。
|
|
|
+ // 否则有可能给前端返回的是200的错误码。
|
|
|
+ try {
|
|
|
+ // 如果请求参数中没有包含主键Id,就判断该文件是否为当前session上传的。
|
|
|
+ if (id == null) {
|
|
|
+ if (!cacheHelper.existSessionUploadFile(filename)) {
|
|
|
+ ResponseResult.output(HttpServletResponse.SC_FORBIDDEN);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ DirectoryInfo directoryInfo = directoryInfoService.getById(id);
|
|
|
+ if (directoryInfo == null) {
|
|
|
+ ResponseResult.output(HttpServletResponse.SC_NOT_FOUND);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ String fieldJsonData = (String) ReflectUtil.getFieldValue(directoryInfo, fieldName);
|
|
|
+ if (fieldJsonData == null && !cacheHelper.existSessionUploadFile(filename)) {
|
|
|
+ ResponseResult.output(HttpServletResponse.SC_BAD_REQUEST);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!BaseUpDownloader.containFile(fieldJsonData, filename)
|
|
|
+ && !cacheHelper.existSessionUploadFile(filename)) {
|
|
|
+ ResponseResult.output(HttpServletResponse.SC_FORBIDDEN);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ UploadStoreInfo storeInfo = MyModelUtil.getUploadStoreInfo(DirectoryInfo.class, fieldName);
|
|
|
+ if (!storeInfo.isSupportUpload()) {
|
|
|
+ ResponseResult.output(HttpServletResponse.SC_NOT_IMPLEMENTED,
|
|
|
+ ResponseResult.error(ErrorCodeEnum.INVALID_UPLOAD_FIELD));
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ BaseUpDownloader upDownloader = upDownloaderFactory.get(storeInfo.getStoreType());
|
|
|
+ upDownloader.doDownload(appConfig.getUploadFileBaseDir(),
|
|
|
+ DirectoryInfo.class.getSimpleName(), fieldName, filename, asImage, response);
|
|
|
+ } catch (Exception e) {
|
|
|
+ response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
|
|
|
+ log.error(e.getMessage(), e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 文件上传操作。
|
|
|
+ *
|
|
|
+ * @param fieldName 上传文件名。
|
|
|
+ * @param asImage 是否作为图片上传。如果是图片,今后下载的时候无需权限验证。否则就是附件上传,下载时需要权限验证。
|
|
|
+ * @param uploadFile 上传文件对象。
|
|
|
+ */
|
|
|
+ @SaCheckPermission("directoryInfo.view")
|
|
|
+ @OperationLog(type = SysOperationLogType.UPLOAD, saveResponse = false)
|
|
|
+ @PostMapping("/upload")
|
|
|
+ public void upload(
|
|
|
+ @RequestParam String fieldName,
|
|
|
+ @RequestParam Boolean asImage,
|
|
|
+ @RequestParam("uploadFile") MultipartFile uploadFile) throws IOException {
|
|
|
+ UploadStoreInfo storeInfo = MyModelUtil.getUploadStoreInfo(DirectoryInfo.class, fieldName);
|
|
|
+ // 这里就会判断参数中指定的字段,是否支持上传操作。
|
|
|
+ if (!storeInfo.isSupportUpload()) {
|
|
|
+ ResponseResult.output(HttpServletResponse.SC_FORBIDDEN,
|
|
|
+ ResponseResult.error(ErrorCodeEnum.INVALID_UPLOAD_FIELD));
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 根据字段注解中的存储类型,通过工厂方法获取匹配的上传下载实现类,从而解耦。
|
|
|
+ BaseUpDownloader upDownloader = upDownloaderFactory.get(storeInfo.getStoreType());
|
|
|
+ UploadResponseInfo responseInfo = upDownloader.doUpload(null,
|
|
|
+ appConfig.getUploadFileBaseDir(), DirectoryInfo.class.getSimpleName(), fieldName, asImage, uploadFile);
|
|
|
+ if (Boolean.TRUE.equals(responseInfo.getUploadFailed())) {
|
|
|
+ ResponseResult.output(HttpServletResponse.SC_FORBIDDEN,
|
|
|
+ ResponseResult.error(ErrorCodeEnum.UPLOAD_FAILED, responseInfo.getErrorMessage()));
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ cacheHelper.putSessionUploadFile(responseInfo.getFilename());
|
|
|
+ ResponseResult.output(ResponseResult.success(responseInfo));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 以字典形式返回全部门户菜单管理数据集合。字典的键值为[id, menuName]。
|
|
|
* 白名单接口,登录用户均可访问。
|
|
|
*
|