Merge branch 'wx-dev' of https://github.com/rymcu/forest into wx-dev
This commit is contained in:
commit
72abc56365
@ -1,5 +1,6 @@
|
|||||||
package com.rymcu.forest.config;
|
package com.rymcu.forest.config;
|
||||||
|
|
||||||
|
import com.rymcu.forest.util.Utils;
|
||||||
import org.aspectj.lang.JoinPoint;
|
import org.aspectj.lang.JoinPoint;
|
||||||
import org.aspectj.lang.annotation.AfterReturning;
|
import org.aspectj.lang.annotation.AfterReturning;
|
||||||
import org.aspectj.lang.annotation.Aspect;
|
import org.aspectj.lang.annotation.Aspect;
|
||||||
@ -48,14 +49,12 @@ public class WebLogAspect {
|
|||||||
|
|
||||||
// 接收到请求,记录请求内容
|
// 接收到请求,记录请求内容
|
||||||
logger.info("WebLogAspect.doBefore()");
|
logger.info("WebLogAspect.doBefore()");
|
||||||
ServletRequestAttributes attributes =
|
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
|
||||||
(ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
|
|
||||||
HttpServletRequest request = attributes.getRequest();
|
HttpServletRequest request = attributes.getRequest();
|
||||||
|
|
||||||
// 记录下请求内容
|
// 记录下请求内容
|
||||||
logger.info("URL : " + request.getRequestURL().toString());
|
logger.info("URL : " + request.getRequestURL().toString());
|
||||||
logger.info("HTTP_METHOD : " + request.getMethod());
|
logger.info("HTTP_METHOD : " + request.getMethod());
|
||||||
logger.info("IP : " + request.getRemoteAddr());
|
logger.info("IP : " + Utils.getIpAddress(request));
|
||||||
logger.info(
|
logger.info(
|
||||||
"CLASS_METHOD : "
|
"CLASS_METHOD : "
|
||||||
+ joinPoint.getSignature().getDeclaringTypeName()
|
+ joinPoint.getSignature().getDeclaringTypeName()
|
||||||
|
@ -42,6 +42,7 @@ public class Utils {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 一般检查工具密码比对 add by xlf 2018-11-8
|
* 一般检查工具密码比对 add by xlf 2018-11-8
|
||||||
|
*
|
||||||
* @param pwd
|
* @param pwd
|
||||||
* @param enpwd 加密的密码
|
* @param enpwd 加密的密码
|
||||||
* @return
|
* @return
|
||||||
@ -80,9 +81,10 @@ public class Utils {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取配置文件内属性
|
* 获取配置文件内属性
|
||||||
|
*
|
||||||
* @param key 键值
|
* @param key 键值
|
||||||
* @return 属性值
|
* @return 属性值
|
||||||
* */
|
*/
|
||||||
public static String getProperty(String key) {
|
public static String getProperty(String key) {
|
||||||
return env.getProperty(key);
|
return env.getProperty(key);
|
||||||
}
|
}
|
||||||
@ -202,7 +204,7 @@ public class Utils {
|
|||||||
ip = ip.substring(0, ip.indexOf(",")).trim();
|
ip = ip.substring(0, ip.indexOf(",")).trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
return ip;
|
return "0:0:0:0:0:0:0:1".equals(ip) ? "127.0.0.1" : ip;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Map getNotificationDTOsGlobalResult(PageInfo<NotificationDTO> pageInfo) {
|
public static Map getNotificationDTOsGlobalResult(PageInfo<NotificationDTO> pageInfo) {
|
||||||
|
@ -115,11 +115,7 @@ public class UploadController {
|
|||||||
if (multipartFile == null) {
|
if (multipartFile == null) {
|
||||||
return GlobalResultGenerator.genErrorResult("请选择要上传的文件");
|
return GlobalResultGenerator.genErrorResult("请选择要上传的文件");
|
||||||
}
|
}
|
||||||
//todo 无法获取当前登录用户
|
TokenUser tokenUser = getTokenUser(request);
|
||||||
// User user = UserUtils.getCurrentUserByToken();
|
|
||||||
// if (Objects.isNull(user)) {
|
|
||||||
// throw new BaseApiException(ErrorCode.INVALID_TOKEN);
|
|
||||||
// }
|
|
||||||
Map data = new HashMap(2);
|
Map data = new HashMap(2);
|
||||||
String md5 = DigestUtils.md5DigestAsHex(multipartFile.getInputStream());
|
String md5 = DigestUtils.md5DigestAsHex(multipartFile.getInputStream());
|
||||||
String fileUrl = forestFileService.getFileUrlByMd5(md5);
|
String fileUrl = forestFileService.getFileUrlByMd5(md5);
|
||||||
@ -146,7 +142,7 @@ public class UploadController {
|
|||||||
File saveFile = new File(savePath);
|
File saveFile = new File(savePath);
|
||||||
try {
|
try {
|
||||||
FileCopyUtils.copy(multipartFile.getBytes(), saveFile);
|
FileCopyUtils.copy(multipartFile.getBytes(), saveFile);
|
||||||
forestFileService.insertForestFile(fileUrl, savePath, md5, 1);
|
forestFileService.insertForestFile(fileUrl, savePath, md5, tokenUser.getIdUser());
|
||||||
data.put("url", fileUrl);
|
data.put("url", fileUrl);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
data.put("message", "上传失败!");
|
data.put("message", "上传失败!");
|
||||||
@ -158,11 +154,7 @@ public class UploadController {
|
|||||||
@PostMapping("/file/batch")
|
@PostMapping("/file/batch")
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public GlobalResult batchFileUpload(@RequestParam(value = "file[]", required = false) MultipartFile[] multipartFiles, @RequestParam(defaultValue = "1") Integer type, HttpServletRequest request) throws BaseApiException {
|
public GlobalResult batchFileUpload(@RequestParam(value = "file[]", required = false) MultipartFile[] multipartFiles, @RequestParam(defaultValue = "1") Integer type, HttpServletRequest request) throws BaseApiException {
|
||||||
//todo 无法获取当前登录用户
|
TokenUser tokenUser = getTokenUser(request);
|
||||||
// User user = UserUtils.getCurrentUserByToken();
|
|
||||||
// if (Objects.isNull(user)) {
|
|
||||||
// throw new BaseApiException(ErrorCode.INVALID_TOKEN);
|
|
||||||
// }
|
|
||||||
String typePath = getTypePath(type);
|
String typePath = getTypePath(type);
|
||||||
//图片存储路径
|
//图片存储路径
|
||||||
String ctxHeadPicPath = env.getProperty("resource.pic-path");
|
String ctxHeadPicPath = env.getProperty("resource.pic-path");
|
||||||
@ -173,7 +165,7 @@ public class UploadController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
String localPath = Utils.getProperty("resource.file-path") + "/" + typePath + "/";
|
String localPath = Utils.getProperty("resource.file-path") + "/" + typePath + "/";
|
||||||
Map succMap = new HashMap(10);
|
Map successMap = new HashMap(16);
|
||||||
Set errFiles = new HashSet();
|
Set errFiles = new HashSet();
|
||||||
|
|
||||||
for (int i = 0, len = multipartFiles.length; i < len; i++) {
|
for (int i = 0, len = multipartFiles.length; i < len; i++) {
|
||||||
@ -187,14 +179,14 @@ public class UploadController {
|
|||||||
String md5 = DigestUtils.md5DigestAsHex(in);
|
String md5 = DigestUtils.md5DigestAsHex(in);
|
||||||
String fileUrl = forestFileService.getFileUrlByMd5(md5);
|
String fileUrl = forestFileService.getFileUrlByMd5(md5);
|
||||||
if (StringUtils.isNotEmpty(fileUrl)) {
|
if (StringUtils.isNotEmpty(fileUrl)) {
|
||||||
succMap.put(orgName, fileUrl);
|
successMap.put(orgName, fileUrl);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
fileUrl = localPath + fileName;
|
fileUrl = localPath + fileName;
|
||||||
FileCopyUtils.copy(in, out);
|
FileCopyUtils.copy(in, out);
|
||||||
forestFileService.insertForestFile(fileUrl, savePath, md5, 1);
|
forestFileService.insertForestFile(fileUrl, savePath, md5, tokenUser.getIdUser());
|
||||||
succMap.put(orgName, localPath + fileName);
|
successMap.put(orgName, localPath + fileName);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
errFiles.add(orgName);
|
errFiles.add(orgName);
|
||||||
}
|
}
|
||||||
@ -203,34 +195,37 @@ public class UploadController {
|
|||||||
}
|
}
|
||||||
Map data = new HashMap(2);
|
Map data = new HashMap(2);
|
||||||
data.put("errFiles", errFiles);
|
data.put("errFiles", errFiles);
|
||||||
data.put("succMap", succMap);
|
data.put("succMap", successMap);
|
||||||
return GlobalResultGenerator.genSuccessResult(data);
|
return GlobalResultGenerator.genSuccessResult(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private TokenUser getTokenUser(HttpServletRequest request) throws BaseApiException {
|
||||||
|
String authHeader = request.getHeader(JwtConstants.AUTHORIZATION);
|
||||||
|
if (StringUtils.isBlank(authHeader)) {
|
||||||
|
throw new BaseApiException(ErrorCode.UNAUTHORIZED);
|
||||||
|
}
|
||||||
|
return UserUtils.getTokenUser(authHeader);
|
||||||
|
}
|
||||||
|
|
||||||
@GetMapping("/simple/token")
|
@GetMapping("/simple/token")
|
||||||
public GlobalResult uploadSimpleToken(HttpServletRequest request) throws BaseApiException {
|
public GlobalResult uploadSimpleToken(HttpServletRequest request) throws BaseApiException {
|
||||||
String authHeader = request.getHeader(JwtConstants.AUTHORIZATION);
|
return getUploadToken(request, UPLOAD_SIMPLE_URL);
|
||||||
if (StringUtils.isBlank(authHeader)) {
|
|
||||||
throw new BaseApiException(ErrorCode.UNAUTHORIZED);
|
|
||||||
}
|
|
||||||
TokenUser tokenUser = UserUtils.getTokenUser(authHeader);
|
|
||||||
Map map = new HashMap(2);
|
|
||||||
map.put("uploadToken", tokenUser.getToken());
|
|
||||||
map.put("uploadURL", UPLOAD_SIMPLE_URL);
|
|
||||||
map.put("linkToImageURL", LINK_TO_IMAGE_URL);
|
|
||||||
return GlobalResultGenerator.genSuccessResult(map);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/token")
|
@GetMapping("/token")
|
||||||
public GlobalResult uploadToken(HttpServletRequest request) throws BaseApiException {
|
public GlobalResult uploadToken(HttpServletRequest request) throws BaseApiException {
|
||||||
|
return getUploadToken(request, UPLOAD_URL);
|
||||||
|
}
|
||||||
|
|
||||||
|
private GlobalResult getUploadToken(HttpServletRequest request, String uploadUrl) throws BaseApiException {
|
||||||
String authHeader = request.getHeader(JwtConstants.AUTHORIZATION);
|
String authHeader = request.getHeader(JwtConstants.AUTHORIZATION);
|
||||||
if (StringUtils.isBlank(authHeader)) {
|
if (StringUtils.isBlank(authHeader)) {
|
||||||
throw new BaseApiException(ErrorCode.UNAUTHORIZED);
|
throw new BaseApiException(ErrorCode.UNAUTHORIZED);
|
||||||
}
|
}
|
||||||
TokenUser tokenUser = UserUtils.getTokenUser(authHeader);
|
TokenUser tokenUser = UserUtils.getTokenUser(authHeader);
|
||||||
Map map = new HashMap(2);
|
Map map = new HashMap(4);
|
||||||
map.put("uploadToken", tokenUser.getToken());
|
map.put("uploadToken", tokenUser.getToken());
|
||||||
map.put("uploadURL", UPLOAD_URL);
|
map.put("uploadURL", uploadUrl);
|
||||||
map.put("linkToImageURL", LINK_TO_IMAGE_URL);
|
map.put("linkToImageURL", LINK_TO_IMAGE_URL);
|
||||||
return GlobalResultGenerator.genSuccessResult(map);
|
return GlobalResultGenerator.genSuccessResult(map);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user