文件上传https
This commit is contained in:
parent
1cfacc6f3c
commit
f8ddcdc718
|
@ -10,6 +10,7 @@ import com.cultural.heritage.model.entity.User;
|
||||||
import com.cultural.heritage.model.enums.FileUploadBizEnum;
|
import com.cultural.heritage.model.enums.FileUploadBizEnum;
|
||||||
import com.cultural.heritage.service.file.IHweiYunOBSService;
|
import com.cultural.heritage.service.file.IHweiYunOBSService;
|
||||||
import com.cultural.heritage.service.user.UserService;
|
import com.cultural.heritage.service.user.UserService;
|
||||||
|
import com.cultural.heritage.utils.RegexUtils;
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
import jakarta.annotation.Resource;
|
import jakarta.annotation.Resource;
|
||||||
|
@ -53,8 +54,11 @@ public class FileController {
|
||||||
if (loginUser == null) {
|
if (loginUser == null) {
|
||||||
throw new BusinessException(ErrorCode.NOT_LOGIN_ERROR, "未登录");
|
throw new BusinessException(ErrorCode.NOT_LOGIN_ERROR, "未登录");
|
||||||
}
|
}
|
||||||
|
// 获取文件名
|
||||||
String filePath = getFilePath(multipartFile, uploadFileRequest);
|
String filePath = getFilePath(multipartFile, uploadFileRequest);
|
||||||
|
// 格式化图片特殊字符
|
||||||
|
filePath = RegexUtils.encodeUrl(filePath);
|
||||||
|
// 上传文件至华为云服务器
|
||||||
iHweiYunOBSService.fileUpload(multipartFile, filePath);
|
iHweiYunOBSService.fileUpload(multipartFile, filePath);
|
||||||
|
|
||||||
return ResultUtils.success(filePath, "上传成功");
|
return ResultUtils.success(filePath, "上传成功");
|
||||||
|
@ -80,15 +84,6 @@ public class FileController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 校验文件
|
* 校验文件
|
||||||
* @param multipartFile 文件
|
* @param multipartFile 文件
|
||||||
|
|
|
@ -138,7 +138,7 @@ public class WeChatController {
|
||||||
* Web端管理员分页查看文章
|
* Web端管理员分页查看文章
|
||||||
* @return 用户地址列表
|
* @return 用户地址列表
|
||||||
*/
|
*/
|
||||||
@GetMapping("/query")
|
@PostMapping("/query/web")
|
||||||
@Operation(summary = "Web端管理员分页查看文章", description = "参数:无,权限:web端管理员,方法名:listArticleByPage")
|
@Operation(summary = "Web端管理员分页查看文章", description = "参数:无,权限:web端管理员,方法名:listArticleByPage")
|
||||||
public BaseResponse<Page<OfficialAccountArticleVO>> listArticleByPage(@RequestBody OfficialAccountArticleQueryRequest officialAccountArticleQueryRequest) {
|
public BaseResponse<Page<OfficialAccountArticleVO>> listArticleByPage(@RequestBody OfficialAccountArticleQueryRequest officialAccountArticleQueryRequest) {
|
||||||
if (officialAccountArticleQueryRequest == null) throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
if (officialAccountArticleQueryRequest == null) throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
||||||
|
@ -170,7 +170,6 @@ public class WeChatController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@PostMapping("/getArticle")
|
@PostMapping("/getArticle")
|
||||||
@Hidden
|
@Hidden
|
||||||
public BaseResponse<Map<String, Object>> getArticleInfo() {
|
public BaseResponse<Map<String, Object>> getArticleInfo() {
|
||||||
|
|
|
@ -11,4 +11,5 @@ public class DecoderUtils {
|
||||||
|
|
||||||
return new String(decodedBytes, StandardCharsets.UTF_8);
|
return new String(decodedBytes, StandardCharsets.UTF_8);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,9 @@ package com.cultural.heritage.utils;
|
||||||
|
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
import static com.cultural.heritage.constant.RegexConstant.*;
|
import static com.cultural.heritage.constant.RegexConstant.*;
|
||||||
|
|
||||||
|
|
||||||
|
@ -54,4 +57,31 @@ public class RegexUtils {
|
||||||
}
|
}
|
||||||
return !str.matches(regex);
|
return !str.matches(regex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public static String encodeUrl(String input) {
|
||||||
|
Map<String, String> replaceMap = new HashMap<>();
|
||||||
|
replaceMap.put(" ", "%20");
|
||||||
|
replaceMap.put("\\+", "%2B");
|
||||||
|
replaceMap.put("\\?", "%3F");
|
||||||
|
replaceMap.put("#", "%23");
|
||||||
|
replaceMap.put("&", "%26");
|
||||||
|
replaceMap.put("/", "%2F");
|
||||||
|
replaceMap.put(":", "%3A");
|
||||||
|
replaceMap.put("\\(", "%28");
|
||||||
|
replaceMap.put("\\)", "%29");
|
||||||
|
replaceMap.put("!", "%21");
|
||||||
|
|
||||||
|
for (Map.Entry<String, String> entry : replaceMap.entrySet()) {
|
||||||
|
input = input.replaceAll(entry.getKey(), entry.getValue());
|
||||||
|
}
|
||||||
|
return input;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user