修改权限数据同步结果返回的数据

This commit is contained in:
tiger_zhou 2023-01-10 17:23:44 +08:00
parent 47bb0696a5
commit 7953f51000
4 changed files with 27 additions and 48 deletions

View File

@ -57,7 +57,7 @@ public class DataHandleController {
msgList.addAll(paperCompositionController.oldDataHandle()); msgList.addAll(paperCompositionController.oldDataHandle());
userController.sync(response); msgList.addAll(userController.sync());
return msgList; return msgList;
} }

View File

@ -17,6 +17,7 @@ import club.joylink.rtss.vo.client.user.WeChatBindStatusVO;
import club.joylink.rtss.vo.user.AccountCreateVO; import club.joylink.rtss.vo.user.AccountCreateVO;
import club.joylink.rtss.vo.user.CreateAccountCheck; import club.joylink.rtss.vo.user.CreateAccountCheck;
import club.joylink.rtss.vo.user.UserGenerateConfigVO; import club.joylink.rtss.vo.user.UserGenerateConfigVO;
import com.google.common.collect.Lists;
import org.apache.tomcat.util.http.fileupload.FileUtils; import org.apache.tomcat.util.http.fileupload.FileUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
@ -65,31 +66,11 @@ public class UserController {
} }
@Role({RoleEnum.SuperAdmin, RoleEnum.Admin}) @Role({RoleEnum.SuperAdmin, RoleEnum.Admin})
@GetMapping(path = "sync") @GetMapping(path = "sync")
public String sync( HttpServletResponse response){ public List<String> sync(){
if(!this.syncService.initData()){ if(!this.syncService.initData()){
return "正在同步。。。"; throw new RuntimeException("正在同步。。。");
} }
File file = this.syncService.sync(); return this.syncService.sync();
if(Objects.isNull(file) || !file.exists()){
return "未找到统计的同步文件";
}
response.reset();
response.setContentType("application/octet-stream");
response.setCharacterEncoding("utf-8");
response.setContentLength((int) file.length());
response.setHeader("Content-Disposition", "attachment;filename=" + file.getName());
try(BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file))) {
byte[] buff = new byte[1024];
OutputStream os = response.getOutputStream();
int i = 0;
while ((i = bis.read(buff)) != -1) {
os.write(buff, 0, i);
os.flush();
}
} catch (IOException e) {
return "文件下载失败";
}
return "";
} }
/** /**
*分页获取用户数据 *分页获取用户数据

View File

@ -114,7 +114,7 @@ public class OldPermissionDataSyncService {
} }
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
public File sync(){ public List<String> sync(){
try{ try{
List<UserPermissionVO> userPermissionList = findUserPermissionData(); List<UserPermissionVO> userPermissionList = findUserPermissionData();
Map<Long,List<SystemAbility>> funMapIdMap = this.findSystemAbilityGroupMapId(); Map<Long,List<SystemAbility>> funMapIdMap = this.findSystemAbilityGroupMapId();
@ -124,8 +124,8 @@ public class OldPermissionDataSyncService {
insertPermission(syncVOList); insertPermission(syncVOList);
insertDistribute(distributeDataVOList); insertDistribute(distributeDataVOList);
insertUserPermission(psList); insertUserPermission(psList);
File file = outErrorMsg(); return SYNC_RESULT_LIST.stream().map(d ->d.toString()).collect(Collectors.toList());
return file;
}catch (Exception e){ }catch (Exception e){
log.error("用户权限同步失败 msg:" + e.getMessage(),e); log.error("用户权限同步失败 msg:" + e.getMessage(),e);
throw e; throw e;
@ -150,25 +150,29 @@ public class OldPermissionDataSyncService {
return newList; return newList;
} }
private File outErrorMsg(){ /* private String getErrorMsg(){
StringBuilder sb = new StringBuilder("------------------------------\n");
BufferedWriter bw = null; // bw.write("创建子系统错误【下架】的数据\n");
try{
File file = File.createTempFile("error",".txt");
bw = new BufferedWriter(new FileWriter(file));
bw.write("------------------------------\n");
// bw.write("创建子系统错误【下架】的数据\n");
// bw.write(Joiner.on(",").join(xiajiaList)); // bw.write(Joiner.on(",").join(xiajiaList));
// bw.write("\n\n"); // bw.write("\n\n");
// bw.write("------------------------------\n"); // bw.write("------------------------------\n");
// bw.write("创建子系统正常【创建失败】的数据\n"); // bw.write("创建子系统正常【创建失败】的数据\n");
// bw.write(Joiner.on(",").join(zhengchangList)); // bw.write(Joiner.on(",").join(zhengchangList));
// bw.write("\n\n\n\n"); // bw.write("\n\n\n\n");
bw.write("------------------------------\n"); sb.append("------------------------------\n");
for (ErrorMsgVO errorMsgVO : SYNC_RESULT_LIST) { for (ErrorMsgVO errorMsgVO : SYNC_RESULT_LIST) {
bw.write(errorMsgVO.toString()); sb.append(errorMsgVO.toString());
bw.write("\n"); sb.append("\n");
} }
return sb.toString();
}*/
/*private File outErrorMsg(){
BufferedWriter bw = null;
try{
File file = File.createTempFile("error",".txt");
bw = new BufferedWriter(new FileWriter(file));
bw.write(this.getErrorMsg());
return file; return file;
}catch(Exception e){ }catch(Exception e){
log.error("权限同步统计失败 msg:{}",e.getMessage(),e); log.error("权限同步统计失败 msg:{}",e.getMessage(),e);
@ -182,8 +186,7 @@ public class OldPermissionDataSyncService {
} }
} }
} }
}*/
}
private void insertPermission(List<SyncVO> syncVOList){ private void insertPermission(List<SyncVO> syncVOList){
Set<Long> existPermissSet = Sets.newHashSet(); Set<Long> existPermissSet = Sets.newHashSet();

View File

@ -15,12 +15,7 @@ public class SyncServiceTest {
@Test @Test
public void sync(){ public void sync(){
this.syncService.initData(); this.syncService.initData();
File file = this.syncService.sync(); this.syncService.sync();
if(Objects.isNull(file)){
}else{
System.out.println(file.getPath());
}
} }
} }