|
|
|
@ -2,14 +2,25 @@ package com.hyp.web.controller.manager;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.io.FileUtil;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
|
|
import com.hyp.common.config.HypConfig;
|
|
|
|
|
import com.hyp.common.core.domain.AjaxResult;
|
|
|
|
|
import com.hyp.common.exception.ServiceException;
|
|
|
|
|
import com.hyp.common.utils.file.FileUploadUtils;
|
|
|
|
|
import com.hyp.common.utils.file.FileUtils;
|
|
|
|
|
import com.hyp.framework.config.ServerConfig;
|
|
|
|
|
import com.hyp.system.domain.RewFileRelation;
|
|
|
|
|
import com.hyp.system.domain.RewScoreInfo;
|
|
|
|
|
import com.hyp.system.service.RewFileRelationService;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
|
@ -28,6 +39,10 @@ public class FileRelationManager {
|
|
|
|
|
@Resource
|
|
|
|
|
private RewFileRelationService fileRelationService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private ServerConfig serverConfig;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* 删除文件
|
|
|
|
@ -66,7 +81,6 @@ public class FileRelationManager {
|
|
|
|
|
* @param applyId
|
|
|
|
|
* @return com.hyp.common.core.domain.AjaxResult
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
public AjaxResult checkFile(String applyId){
|
|
|
|
|
List<RewFileRelation> list = fileRelationService.lambdaQuery()
|
|
|
|
|
.eq(RewFileRelation::getApplyId, applyId)
|
|
|
|
@ -81,6 +95,16 @@ public class FileRelationManager {
|
|
|
|
|
return AjaxResult.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* 单个保存
|
|
|
|
|
* @param applyId
|
|
|
|
|
* @param filename
|
|
|
|
|
* @param fileCode
|
|
|
|
|
* @param url
|
|
|
|
|
* @param originalFilename
|
|
|
|
|
* @return com.hyp.system.domain.RewFileRelation
|
|
|
|
|
*/
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public RewFileRelation save(String applyId,String filename,String fileCode,String url,String originalFilename){
|
|
|
|
|
RewFileRelation rewFileRelation = new RewFileRelation();
|
|
|
|
@ -93,13 +117,52 @@ public class FileRelationManager {
|
|
|
|
|
return rewFileRelation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* 批量保存文件
|
|
|
|
|
* @param files
|
|
|
|
|
* @param applyId
|
|
|
|
|
* @param filename
|
|
|
|
|
* @param fileCode
|
|
|
|
|
* @return java.util.List<com.hyp.system.domain.RewFileRelation>
|
|
|
|
|
*/
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public List<RewFileRelation> saveBatch(List<MultipartFile> files,
|
|
|
|
|
String applyId,
|
|
|
|
|
String filename,
|
|
|
|
|
String fileCode) throws IOException {
|
|
|
|
|
List<RewFileRelation> fileRelations = new ArrayList<>();
|
|
|
|
|
// 上传文件路径
|
|
|
|
|
String filePath = HypConfig.getUploadPath();
|
|
|
|
|
for (MultipartFile file : files) {
|
|
|
|
|
if (!file.isEmpty()) {
|
|
|
|
|
// 上传并返回新文件名称
|
|
|
|
|
String fileNames = FileUploadUtils.upload(filePath, file);
|
|
|
|
|
String url = serverConfig.getUrl() + fileNames;
|
|
|
|
|
if(StringUtils.isBlank(filename)){
|
|
|
|
|
filename = fileNames;
|
|
|
|
|
}
|
|
|
|
|
RewFileRelation rewFileRelation = new RewFileRelation();
|
|
|
|
|
rewFileRelation.setApplyId(applyId);
|
|
|
|
|
rewFileRelation.setFileName(filename);
|
|
|
|
|
rewFileRelation.setFileCode(fileCode);
|
|
|
|
|
rewFileRelation.setFilePath(url);
|
|
|
|
|
rewFileRelation.setRealName(FileUtils.getNameNotSuffix(file.getOriginalFilename()));
|
|
|
|
|
fileRelations.add(rewFileRelation);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fileRelationService.saveBatch(fileRelations);
|
|
|
|
|
return fileRelations;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* 获取文件路劲
|
|
|
|
|
* @param fileId
|
|
|
|
|
* @return java.lang.String
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
public String getFilePath(String fileId){
|
|
|
|
|
RewFileRelation fileRelation = fileRelationService.getById(fileId);
|
|
|
|
|
if(Objects.nonNull(fileRelation)){
|
|
|
|
@ -114,7 +177,6 @@ public class FileRelationManager {
|
|
|
|
|
* @param fileId
|
|
|
|
|
* @return java.lang.String
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
public String getRealName(String fileId){
|
|
|
|
|
RewFileRelation fileRelation = fileRelationService.getById(fileId);
|
|
|
|
|
if(Objects.nonNull(fileRelation)){
|
|
|
|
@ -123,6 +185,20 @@ public class FileRelationManager {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* 文件列表啥
|
|
|
|
|
* @param applyId
|
|
|
|
|
* @param fileCode
|
|
|
|
|
* @return java.util.List<com.hyp.system.domain.RewFileRelation>
|
|
|
|
|
*/
|
|
|
|
|
public List<RewFileRelation> getFileInfo(String applyId,String fileCode){
|
|
|
|
|
LambdaQueryWrapper<RewFileRelation> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
queryWrapper.eq(RewFileRelation::getApplyId,applyId);
|
|
|
|
|
queryWrapper.eq(Objects.nonNull(fileCode), RewFileRelation::getFileCode, fileCode);
|
|
|
|
|
return fileRelationService.list(queryWrapper);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|