|
@@ -1,6 +1,12 @@
|
|
|
package com.tourism.webadmin.app.controller;
|
|
|
|
|
|
import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+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;
|
|
@@ -12,6 +18,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;
|
|
@@ -20,6 +27,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.*;
|
|
|
|
|
@@ -38,54 +46,65 @@ public class CompanyInfoController {
|
|
|
@Autowired
|
|
|
private ApplicationConfig appConfig;
|
|
|
@Autowired
|
|
|
+ private SessionCacheHelper cacheHelper;
|
|
|
+ @Autowired
|
|
|
+ private UpDownloaderFactory upDownloaderFactory;
|
|
|
+ @Autowired
|
|
|
private CompanyInfoService companyInfoService;
|
|
|
|
|
|
/**
|
|
|
- * 新增公司信息管理数据。
|
|
|
+ * 新增公司信息管理数据,及其关联的从表数据。
|
|
|
*
|
|
|
- * @param companyInfoDto 新增对象。
|
|
|
+ * @param companyInfoDto 新增主表对象。
|
|
|
+ * @param contentCompanyDto 一对一公司富文本管理从表Dto。
|
|
|
* @return 应答结果对象,包含新增对象主键Id。
|
|
|
*/
|
|
|
@ApiOperationSupport(ignoreParameters = {"companyInfoDto.id", "companyInfoDto.searchString"})
|
|
|
@SaCheckPermission("companyInfo.add")
|
|
|
@OperationLog(type = SysOperationLogType.ADD)
|
|
|
@PostMapping("/add")
|
|
|
- public ResponseResult<Long> add(@MyRequestBody CompanyInfoDto companyInfoDto) {
|
|
|
- String errorMessage = MyCommonUtil.getModelValidationError(companyInfoDto, false);
|
|
|
- if (errorMessage != null) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
+ public ResponseResult<Long> add(
|
|
|
+ @MyRequestBody CompanyInfoDto companyInfoDto,
|
|
|
+ @MyRequestBody ContentCompanyDto contentCompanyDto) {
|
|
|
+ ResponseResult<Tuple2<CompanyInfo, JSONObject>> verifyResult =
|
|
|
+ this.doBusinessDataVerifyAndConvert(companyInfoDto, false, contentCompanyDto);
|
|
|
+ if (!verifyResult.isSuccess()) {
|
|
|
+ return ResponseResult.errorFrom(verifyResult);
|
|
|
}
|
|
|
- CompanyInfo companyInfo = MyModelUtil.copyTo(companyInfoDto, CompanyInfo.class);
|
|
|
- companyInfo = companyInfoService.saveNew(companyInfo);
|
|
|
+ Tuple2<CompanyInfo, JSONObject> bizData = verifyResult.getData();
|
|
|
+ CompanyInfo companyInfo = bizData.getFirst();
|
|
|
+ companyInfo = companyInfoService.saveNewWithRelation(companyInfo, bizData.getSecond());
|
|
|
return ResponseResult.success(companyInfo.getId());
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 更新公司信息管理数据。
|
|
|
+ * 修改公司信息管理数据,及其关联的从表数据。
|
|
|
*
|
|
|
- * @param companyInfoDto 更新对象。
|
|
|
- * @return 应答结果对象。
|
|
|
+ * @param companyInfoDto 修改后的对象。
|
|
|
+ * @param contentCompanyDto 一对一公司富文本管理从表Dto。
|
|
|
+ * @return 应答结果对象,包含新增对象主键Id。
|
|
|
*/
|
|
|
- @ApiOperationSupport(ignoreParameters = {"companyInfoDto.searchString"})
|
|
|
+ @ApiOperationSupport(ignoreParameters = {"companyInfoDto.id", "companyInfoDto.searchString"})
|
|
|
@SaCheckPermission("companyInfo.update")
|
|
|
@OperationLog(type = SysOperationLogType.UPDATE)
|
|
|
@PostMapping("/update")
|
|
|
- public ResponseResult<Void> update(@MyRequestBody CompanyInfoDto companyInfoDto) {
|
|
|
- String errorMessage = MyCommonUtil.getModelValidationError(companyInfoDto, true);
|
|
|
- if (errorMessage != null) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
+ public ResponseResult<Long> update(
|
|
|
+ @MyRequestBody CompanyInfoDto companyInfoDto,
|
|
|
+ @MyRequestBody ContentCompanyDto contentCompanyDto) {
|
|
|
+ String errorMessage;
|
|
|
+ ResponseResult<Tuple2<CompanyInfo, JSONObject>> verifyResult =
|
|
|
+ this.doBusinessDataVerifyAndConvert(companyInfoDto, true, contentCompanyDto);
|
|
|
+ if (!verifyResult.isSuccess()) {
|
|
|
+ return ResponseResult.errorFrom(verifyResult);
|
|
|
}
|
|
|
- CompanyInfo companyInfo = MyModelUtil.copyTo(companyInfoDto, CompanyInfo.class);
|
|
|
- CompanyInfo originalCompanyInfo = companyInfoService.getById(companyInfo.getId());
|
|
|
- if (originalCompanyInfo == null) {
|
|
|
- // NOTE: 修改下面方括号中的话述
|
|
|
- errorMessage = "数据验证失败,当前 [数据] 并不存在,请刷新后重试!";
|
|
|
+ Tuple2<CompanyInfo, JSONObject> bizData = verifyResult.getData();
|
|
|
+ CompanyInfo originalCompanyInfo = bizData.getSecond().getObject("originalData", CompanyInfo.class);
|
|
|
+ CompanyInfo companyInfo = bizData.getFirst();
|
|
|
+ if (!companyInfoService.updateWithRelation(companyInfo, originalCompanyInfo, bizData.getSecond())) {
|
|
|
+ errorMessage = "数据验证失败,[CompanyInfo] 数据不存在!";
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST, errorMessage);
|
|
|
}
|
|
|
- if (!companyInfoService.update(companyInfo, originalCompanyInfo)) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
- }
|
|
|
- return ResponseResult.success();
|
|
|
+ return ResponseResult.success(companyInfo.getId());
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -179,6 +198,11 @@ public class CompanyInfoController {
|
|
|
Set<String> translatedDictFieldSet = new HashSet<>();
|
|
|
List<CompanyInfo> dataList =
|
|
|
ImportUtil.doImport(headerInfos, skipHeader, filename, CompanyInfo.class, translatedDictFieldSet);
|
|
|
+ CallResult result = companyInfoService.verifyImportList(dataList, translatedDictFieldSet);
|
|
|
+ if (!result.isSuccess()) {
|
|
|
+ // result中返回了具体的验证失败对象,如果需要返回更加详细的错误,可根据实际情况手动修改。
|
|
|
+ return ResponseResult.errorFrom(result);
|
|
|
+ }
|
|
|
companyInfoService.saveNewBatch(dataList, -1);
|
|
|
return ResponseResult.success();
|
|
|
}
|
|
@@ -203,15 +227,16 @@ public class CompanyInfoController {
|
|
|
// 导出文件的标题数组
|
|
|
// NOTE: 下面的代码中仅仅导出了主表数据,主表聚合计算数据和主表关联字典的数据。
|
|
|
// 一对一从表数据的导出,可根据需要自行添加。如:headerMap.put("slaveFieldName.xxxField", "标题名称")
|
|
|
- Map<String, String> headerMap = new LinkedHashMap<>(13);
|
|
|
+ Map<String, String> headerMap = new LinkedHashMap<>(14);
|
|
|
headerMap.put("id", "主键id");
|
|
|
headerMap.put("companyName", "公司名称");
|
|
|
headerMap.put("address", "公司地址");
|
|
|
headerMap.put("establishDate", "成立日期");
|
|
|
headerMap.put("telephone", "联系电话");
|
|
|
headerMap.put("website", "公司网站链接");
|
|
|
- headerMap.put("companyType", "公司类型");
|
|
|
+ headerMap.put("companyTypeDictMap.name", "公司类型");
|
|
|
headerMap.put("email", "公司邮箱");
|
|
|
+ headerMap.put("companyUrl", "公司图片");
|
|
|
headerMap.put("createUserId", "创建用户");
|
|
|
headerMap.put("createTime", "创建时间");
|
|
|
headerMap.put("updateUserId", "更新用户");
|
|
@@ -237,6 +262,136 @@ public class CompanyInfoController {
|
|
|
return ResponseResult.success(companyInfoVo);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 附件文件下载。
|
|
|
+ * 这里将图片和其他类型的附件文件放到不同的父目录下,主要为了便于今后图片文件的迁移。
|
|
|
+ *
|
|
|
+ * @param id 附件所在记录的主键Id。
|
|
|
+ * @param fieldName 附件所属的字段名。
|
|
|
+ * @param filename 文件名。如果没有提供该参数,就从当前记录的指定字段中读取。
|
|
|
+ * @param asImage 下载文件是否为图片。
|
|
|
+ * @param response Http 应答对象。
|
|
|
+ */
|
|
|
+ @SaCheckPermission("companyInfo.view")
|
|
|
+ @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 {
|
|
|
+ CompanyInfo companyInfo = companyInfoService.getById(id);
|
|
|
+ if (companyInfo == null) {
|
|
|
+ ResponseResult.output(HttpServletResponse.SC_NOT_FOUND);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ String fieldJsonData = (String) ReflectUtil.getFieldValue(companyInfo, 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(CompanyInfo.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(),
|
|
|
+ CompanyInfo.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("companyInfo.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(CompanyInfo.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(), CompanyInfo.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));
|
|
|
+ }
|
|
|
+
|
|
|
+ private ResponseResult<Tuple2<CompanyInfo, JSONObject>> doBusinessDataVerifyAndConvert(
|
|
|
+ CompanyInfoDto companyInfoDto,
|
|
|
+ boolean forUpdate,
|
|
|
+ ContentCompanyDto contentCompanyDto) {
|
|
|
+ ErrorCodeEnum errorCode = ErrorCodeEnum.DATA_VALIDATED_FAILED;
|
|
|
+ String errorMessage = MyCommonUtil.getModelValidationError(companyInfoDto, false);
|
|
|
+ if (errorMessage != null) {
|
|
|
+ return ResponseResult.error(errorCode, errorMessage);
|
|
|
+ }
|
|
|
+ errorMessage = MyCommonUtil.getModelValidationError(contentCompanyDto);
|
|
|
+ if (errorMessage != null) {
|
|
|
+ return ResponseResult.error(errorCode, "参数 [contentCompanyDto] " + errorMessage);
|
|
|
+ }
|
|
|
+ // 全部关联从表数据的验证和转换
|
|
|
+ JSONObject relationData = new JSONObject();
|
|
|
+ CallResult verifyResult;
|
|
|
+ // 下面是输入参数中,主表关联数据的验证。
|
|
|
+ CompanyInfo companyInfo = MyModelUtil.copyTo(companyInfoDto, CompanyInfo.class);
|
|
|
+ CompanyInfo originalData;
|
|
|
+ if (forUpdate && companyInfo != null) {
|
|
|
+ originalData = companyInfoService.getById(companyInfo.getId());
|
|
|
+ if (originalData == null) {
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
+ }
|
|
|
+ relationData.put("originalData", originalData);
|
|
|
+ }
|
|
|
+ // 处理主表的一对一关联 [ContentCompany]
|
|
|
+ ContentCompany contentCompany = MyModelUtil.copyTo(contentCompanyDto, ContentCompany.class);
|
|
|
+ relationData.put("contentCompany", contentCompany);
|
|
|
+ return ResponseResult.success(new Tuple2<>(companyInfo, relationData));
|
|
|
+ }
|
|
|
+
|
|
|
private ResponseResult<Void> doDelete(Long id) {
|
|
|
String errorMessage;
|
|
|
// 验证关联Id的数据合法性
|