|
@@ -112,15 +112,31 @@ public class CgglServiceImpl implements CgglService {
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
|
|
|
private long sliceSize = 10 * 1024 * 1024;
|
|
|
|
|
|
+ //TODO wanger 巴彦淖尔
|
|
|
+ @Value("${Byne.isUse}")
|
|
|
+ private Boolean isByne;
|
|
|
+ @Value("${Byne.username}")
|
|
|
+ private String byneusername;
|
|
|
+ @Value("${Byne.password}")
|
|
|
+ private String bynepassword;
|
|
|
+ @Value("${Byne.scope}")
|
|
|
+ private String bynescope;
|
|
|
+ @Value("${Byne.oauthUrl}")
|
|
|
+ private String byneOauthUrl;
|
|
|
+ @Value("${Byne.findByMd5Url}")
|
|
|
+ private String byneFindByMd5Url;
|
|
|
+ @Value("${Byne.uploadCompleteFileUrl}")
|
|
|
+ private String byneUploadCompleteFileUrl;
|
|
|
+ @Value("${Byne.uploadFileUrl}")
|
|
|
+ private String byneUploadFileUrl;
|
|
|
+
|
|
|
+
|
|
|
//规划成果上传
|
|
|
@Override
|
|
|
public RequestResult uploadCgFile(MultipartFile file) {
|
|
|
if (file == null) {
|
|
|
return RequestResult.error("上传失败!", false);
|
|
|
}
|
|
|
-// if (file.getOriginalFilename().getBytes().length > 100) {
|
|
|
-// return RequestResult.error("上传文件名不能大于100个字节!", false);
|
|
|
-// }
|
|
|
String uuid = StringUtils.getUUID();
|
|
|
EscalationFileDTO dto = new EscalationFileDTO();
|
|
|
dto.setId(uuid);
|
|
@@ -135,7 +151,6 @@ public class CgglServiceImpl implements CgglService {
|
|
|
File copyFile = new File(temppath);
|
|
|
System.out.println(temppath);
|
|
|
try {
|
|
|
- //file.transferTo(copyFile);
|
|
|
// 复制文件流
|
|
|
FileUtils.copyInputStreamToFile(file.getInputStream(), copyFile);
|
|
|
} catch (Exception e) {
|
|
@@ -164,44 +179,11 @@ public class CgglServiceImpl implements CgglService {
|
|
|
escalationFileMapper.update(curdto, wrapper);
|
|
|
return RequestResult.error("上传失败!");
|
|
|
}
|
|
|
-// FixedThreadUtil.FIXED_THREAD_POOL.execute(() -> {
|
|
|
-// QueryWrapper<EscalationFileDTO> wrapper = new QueryWrapper<>();
|
|
|
-// wrapper.eq("id", uuid);
|
|
|
-// EscalationFileDTO curdto = escalationFileMapper.selectOne(wrapper);
|
|
|
-// try {
|
|
|
-// String filetype = StringUtils.getFileKzmx(filename);
|
|
|
-// if (".zip".equals(filetype)) {
|
|
|
-// new UnPackageUtils().unPackZip(copyFile, unzippath);
|
|
|
-// } else if (".rar".equals(filetype)) {
|
|
|
-// //解压rar格式
|
|
|
-// new UnPackageUtils().unPackRar(copyFile, unzippath);
|
|
|
-// }
|
|
|
-// curdto.setStatus("9");
|
|
|
-// curdto.setPath(temppath);
|
|
|
-// curdto.setUnzippath(unzippath);
|
|
|
-// escalationFileMapper.update(curdto, wrapper);
|
|
|
-// } catch (Exception r) {
|
|
|
-// r.printStackTrace();
|
|
|
-// curdto.setStatus("2");
|
|
|
-// curdto.setRemark("上传压缩包或者解压失败");
|
|
|
-// escalationFileMapper.update(curdto, wrapper);
|
|
|
-// }
|
|
|
-//// copyFile.delete();
|
|
|
-// });
|
|
|
return RequestResult.success("上传成功!", dto.getId());
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public RequestResult uploadCgInfo(EscalationDTO escalationDTO) {
|
|
|
-// QueryWrapper<EscalationDTO> wrapper = new QueryWrapper<EscalationDTO>();
|
|
|
-// wrapper.eq("name", escalationDTO.getName());
|
|
|
-// EscalationDTO res = escalationMapper.selectOne(wrapper);
|
|
|
-// if (res != null) {
|
|
|
-// return RequestResult.error("该名称已存在!", false);
|
|
|
-// }
|
|
|
-// if (escalationDTO.getName().getBytes().length > 100) {
|
|
|
-// return RequestResult.error("成果名称不能大于100个字节!", false);
|
|
|
-// }
|
|
|
try {
|
|
|
String id = StringUtils.getUUID();
|
|
|
escalationDTO.setUploadstatus("0");
|
|
@@ -467,160 +449,453 @@ public class CgglServiceImpl implements CgglService {
|
|
|
EscalationDTO validateEscalationDTO = escalationMapper.selectOne(wrapper);
|
|
|
setSbjd(escalationDTO.getId(), "0/0");
|
|
|
if ("1".equals(validateEscalationDTO.getCglevel()) && "1".equals(escalationDTO.getUploadstatus())) {
|
|
|
- //获取token授权
|
|
|
- JSONObject jsonObject = new JSONObject();
|
|
|
- //组装请求参数
|
|
|
- jsonObject.put("appid", appid);
|
|
|
- //调用post请求方法
|
|
|
- JSONObject tokenJson = RInterfaceUtil.postRemote(null, oauthUrl, jsonObject, null);
|
|
|
- String token = "";
|
|
|
- String fileMd5 = "";
|
|
|
- try {
|
|
|
- if (tokenJson.containsKey("success") && tokenJson.getBoolean("success")) {
|
|
|
- //获取token
|
|
|
- if (tokenJson.containsKey("data") && tokenJson.getJSONObject("data").containsKey("token")) {
|
|
|
- token = tokenJson.getJSONObject("data").getString("token");
|
|
|
- System.out.println(token);
|
|
|
- //查询数据库文件路径
|
|
|
- QueryWrapper<EscalationFileDTO> wrapperFile = new QueryWrapper<EscalationFileDTO>();
|
|
|
- wrapperFile.eq("id", validateEscalationDTO.getFileid());
|
|
|
- EscalationFileDTO fileDTO = escalationFileMapper.selectOne(wrapperFile);
|
|
|
- //获取文件md5
|
|
|
- if (fileDTO != null) {
|
|
|
- File file = new File(fileDTO.getPath());
|
|
|
- if (file.exists()) {
|
|
|
- fileMd5 = Md5Utils.getMD5(file);
|
|
|
- JSONObject jsonObjectMd5 = new JSONObject();
|
|
|
-// jsonObjectMd5.put("fileName", file.getName());
|
|
|
-// jsonObjectMd5.put("fileSize", file.length());
|
|
|
-// jsonObjectMd5.put("fileMd5", fileMd5);
|
|
|
- //每个切片文件大小
|
|
|
- long mod = file.length() % sliceSize;
|
|
|
- long totalSliceNum = file.length() / sliceSize;
|
|
|
- if (mod > 0) {
|
|
|
- totalSliceNum = totalSliceNum + 1;
|
|
|
+ //TODO wanger 判断乌拉特前旗
|
|
|
+ if (isByne) {
|
|
|
+ String instid = validateEscalationDTO.getInstid();
|
|
|
+ //TODO wanger 是否为补正上传
|
|
|
+ if (StringUtils.isNotEmpty(instid)) {//TODO wanger 补正的直接上传到自治区
|
|
|
+ JSONObject jsonObject = new JSONObject();
|
|
|
+ jsonObject.put("grant_type", "password");
|
|
|
+ jsonObject.put("username", username);
|
|
|
+ jsonObject.put("password", Md5Utils.hash(password));
|
|
|
+ JSONObject tokenJson = RInterfaceUtilFromSheng.postRemote(null, oauthUrl, jsonObject, null);
|
|
|
+ String token = "";
|
|
|
+ String fileMd5 = "";
|
|
|
+ try {
|
|
|
+ if (tokenJson.containsKey("success") && tokenJson.getBoolean("success")) {
|
|
|
+ //获取token
|
|
|
+ if (tokenJson.containsKey("data") && tokenJson.getJSONObject("data").containsKey("access_token")) {
|
|
|
+ token = tokenJson.getJSONObject("data").getString("access_token");
|
|
|
+ System.out.println(token);
|
|
|
+ //查询数据库文件路径
|
|
|
+ QueryWrapper<EscalationFileDTO> wrapperFile = new QueryWrapper<EscalationFileDTO>();
|
|
|
+ wrapperFile.eq("id", validateEscalationDTO.getFileid());
|
|
|
+ EscalationFileDTO fileDTO = escalationFileMapper.selectOne(wrapperFile);
|
|
|
+ //获取文件md5
|
|
|
+ if (fileDTO != null) {
|
|
|
+ File file = new File(fileDTO.getPath());
|
|
|
+ if (file.exists()) {
|
|
|
+ fileMd5 = Md5Utils.getMD5(file);
|
|
|
+ JSONObject jsonObjectMd5 = new JSONObject();
|
|
|
+ jsonObjectMd5.put("fileName", file.getName());
|
|
|
+ jsonObjectMd5.put("fileSize", file.length());
|
|
|
+ jsonObjectMd5.put("fileMd5", fileMd5);
|
|
|
+ //每个切片文件大小
|
|
|
+ long mod = file.length() % sliceSize;
|
|
|
+ long totalSliceNum = file.length() / sliceSize;
|
|
|
+ if (mod > 0) {
|
|
|
+ totalSliceNum = totalSliceNum + 1;
|
|
|
+ }
|
|
|
+ if (!StringUtils.isEmpty(validateEscalationDTO.getInstid())) {
|
|
|
+ jsonObjectMd5.put("instId", validateEscalationDTO.getInstid());
|
|
|
+ }
|
|
|
+ jsonObjectMd5.put("totalSliceNum", totalSliceNum);
|
|
|
+ jsonObjectMd5.put("curSliceOrder", 0);
|
|
|
+ jsonObjectMd5.put("resetSliceOrder2Zero", true);
|
|
|
+ JSONObject reStrMd5 = RInterfaceUtilFromSheng.postRemote(token, findByMd5Url, jsonObjectMd5, null);
|
|
|
+ if (reStrMd5 != null && reStrMd5.containsKey("success") && reStrMd5.getBoolean("success")) {
|
|
|
+ System.out.println(reStrMd5);
|
|
|
+ File toDir = new File(temp + File.separator + fileMd5);
|
|
|
+ String toFileName = toDir.getAbsolutePath() + File.separator + fileMd5;
|
|
|
+ if (toDir.exists()) {
|
|
|
+ FileUtils.deleteDirectory(toDir);
|
|
|
+ }
|
|
|
+ toDir.mkdirs();
|
|
|
+ //切割文件,是否成功
|
|
|
+ long curSliceSize = RInterfaceUtil.spilt(file.getAbsolutePath(), toFileName, fileSplitCode);
|
|
|
+ if (curSliceSize > 0) {
|
|
|
+ JSONObject reStrFileUpload = null;
|
|
|
+ //上传zip文件分片
|
|
|
+ int startIndex = 0;
|
|
|
+ try {
|
|
|
+ if (reStrMd5 != null && reStrMd5.containsKey("data") && reStrMd5.getJSONObject("data") != null) {
|
|
|
+ startIndex = reStrMd5.getJSONObject("data").getInteger("curSliceOrder");
|
|
|
+ }
|
|
|
+ } catch (Exception r) {
|
|
|
+
|
|
|
+ }
|
|
|
+ setSbjd(escalationDTO.getId(), (startIndex + 1) + "/" + totalSliceNum);
|
|
|
+ //上传zip文件分片
|
|
|
+ for (int i = startIndex; i < totalSliceNum; i++) {
|
|
|
+ // 生成文件的路径
|
|
|
+ String t = toFileName + fileSplitCode + i;
|
|
|
+ Map<String, Object> paramFile = new HashMap<>();
|
|
|
+ File f = new File(t);
|
|
|
+ paramFile.put("name", file.getName());
|
|
|
+ if (StringUtils.isEmpty(validateEscalationDTO.getYear())) {
|
|
|
+ paramFile.put("year", StringUtils.getCurrentYear());
|
|
|
+ } else {
|
|
|
+ paramFile.put("year", validateEscalationDTO.getYear().substring(0, 4));
|
|
|
+ }
|
|
|
+ paramFile.put("zipFileSlice", f);
|
|
|
+ paramFile.put("zipMd5", fileMd5);
|
|
|
+ paramFile.put("totalSliceNum", totalSliceNum);
|
|
|
+ paramFile.put("curSliceOrder", i);
|
|
|
+ if (StringUtils.isNotEmpty(instid)) {
|
|
|
+ paramFile.put("instId", instid);
|
|
|
+ }
|
|
|
+ paramFile.put("curSliceSize", 10240 * 1024);
|
|
|
+ reStrFileUpload = RInterfaceUtilFromSheng.postRemote(token, uploadSplitFileUrl, null, paramFile);
|
|
|
+ System.out.println("reStrFileUpload :" + reStrFileUpload);
|
|
|
+ if (reStrFileUpload.containsKey("code") && !"200".equals(reStrFileUpload.getString("code"))) {
|
|
|
+ System.out.println("上传规划成果数据分片失败,分片数: " + i + " !");
|
|
|
+ EscalationDTO dto = new EscalationDTO();
|
|
|
+ dto.setId(escalationDTO.getId());
|
|
|
+ dto.setRemark(reStrFileUpload.toJSONString());
|
|
|
+ addCgglRz(dto);
|
|
|
+ updateLogInfo(validateEscalationDTO, reStrFileUpload.toJSONString());
|
|
|
+ return RequestResult.error("上传规划成果数据分片失败:" + reStrFileUpload.getString("msg") + ",分片数: " + i + " !", false);
|
|
|
+ } else {//记录分片个数及上传状态
|
|
|
+ setSbjd(escalationDTO.getId(), (i + 1) + "/" + totalSliceNum);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (reStrFileUpload != null && reStrFileUpload.containsKey("success") && reStrFileUpload.getBoolean("success")) {
|
|
|
+ if (toDir.exists()) {
|
|
|
+ //删除临时文件
|
|
|
+ FileUtils.deleteDirectory(toDir);
|
|
|
+ }
|
|
|
+ //TODO wanger 补正状态更正
|
|
|
+ if (StringUtils.isNotEmpty(instid)) {
|
|
|
+ validateEscalationDTO.setInstid(instid + "#");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ updateLogInfo(validateEscalationDTO, reStrMd5.toJSONString());
|
|
|
+ System.out.println("上传规划成果数据接口-查询MD5值接口失败!");
|
|
|
+ return RequestResult.error("上传规划成果数据接口-查询MD5值接口失败!", false);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ System.out.println("成果文件不存在!");
|
|
|
+ return RequestResult.error("成果文件不存在!", false);
|
|
|
+ }
|
|
|
}
|
|
|
-// if (!StringUtils.isEmpty(validateEscalationDTO.getInstid())) {
|
|
|
-// jsonObjectMd5.put("instId", validateEscalationDTO.getInstid());
|
|
|
-// }
|
|
|
-// jsonObjectMd5.put("totalSliceNum", totalSliceNum);
|
|
|
-// jsonObjectMd5.put("curSliceOrder", 0);
|
|
|
-// jsonObjectMd5.put("resetSliceOrder2Zero", false);
|
|
|
- //TODO wanger 根据鄂尔多斯市级接口文档对接
|
|
|
- jsonObjectMd5.put("md5", fileMd5);
|
|
|
- jsonObjectMd5.put("size", totalSliceNum);
|
|
|
- jsonObjectMd5.put("new", false);
|
|
|
- jsonObjectMd5.put("ghlx", StringUtils.getGhlx(validateEscalationDTO.getPlantype()));
|
|
|
- JSONObject reStrMd5 = RInterfaceUtil.getRemote(token, findByMd5Url, jsonObjectMd5, null);
|
|
|
- if (reStrMd5 != null && reStrMd5.containsKey("success") && reStrMd5.getBoolean("success")) {
|
|
|
- System.out.println(reStrMd5);
|
|
|
- File toDir = new File(temp + File.separator + fileMd5);
|
|
|
- String toFileName = toDir.getAbsolutePath() + File.separator + fileMd5;
|
|
|
- if (toDir.exists()) {
|
|
|
- FileUtils.deleteDirectory(toDir);
|
|
|
+ } else {
|
|
|
+ updateLogInfo(validateEscalationDTO, tokenJson.toJSONString());
|
|
|
+ System.out.println(tokenJson);
|
|
|
+ return RequestResult.error("市级系统token信息获取失败,请检查token获取地址、用户名、密码!", false);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ updateLogInfo(validateEscalationDTO, tokenJson.toJSONString());
|
|
|
+ System.out.println(tokenJson);
|
|
|
+ return RequestResult.error("市级系统token信息获取失败,请检查token获取地址、用户名、密码!", false);
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+ System.out.println(e.toString());
|
|
|
+ }
|
|
|
+ } else {//TODO wanger 非补正成果上报到巴彦淖尔盟
|
|
|
+ //TODO wanger 巴彦淖尔上传数据第一步:request token
|
|
|
+ JSONObject jsonObject = new JSONObject();
|
|
|
+ jsonObject.put("grant_type", "password");
|
|
|
+ jsonObject.put("username", byneusername);
|
|
|
+ jsonObject.put("password", bynepassword);
|
|
|
+ jsonObject.put("scope", bynescope);
|
|
|
+ Map<String, Object> body = new HashMap<>();
|
|
|
+ body.put("grant_type", "password");
|
|
|
+ body.put("username", byneusername);
|
|
|
+ body.put("password", bynepassword);
|
|
|
+ body.put("scope", bynescope);
|
|
|
+ JSONObject tokenJson = RInterfaceUtil.postRemote(null, byneOauthUrl, jsonObject, body);
|
|
|
+ System.out.println("tokenJson == " + tokenJson);
|
|
|
+ String token = "";
|
|
|
+ String fileMd5 = "";
|
|
|
+ try {
|
|
|
+ if (tokenJson.containsKey("access_token")) {
|
|
|
+ token = tokenJson.getString("token_type") + " " + tokenJson.getString("access_token");
|
|
|
+ System.out.println(token);
|
|
|
+ //查询数据库文件路径
|
|
|
+ QueryWrapper<EscalationFileDTO> wrapperFile = new QueryWrapper<EscalationFileDTO>();
|
|
|
+ wrapperFile.eq("id", validateEscalationDTO.getFileid());
|
|
|
+ EscalationFileDTO fileDTO = escalationFileMapper.selectOne(wrapperFile);
|
|
|
+ //获取文件md5
|
|
|
+ if (fileDTO != null) {
|
|
|
+ File file = new File(fileDTO.getPath());
|
|
|
+ if (file.exists()) {
|
|
|
+ fileMd5 = Md5Utils.getMD5(file);
|
|
|
+ JSONObject jsonObjectMd5 = new JSONObject();
|
|
|
+ String filename = file.getName();
|
|
|
+ String relFileName = StringUtils.getFileRelName(filename);
|
|
|
+ jsonObjectMd5.put("fileName", filename);
|
|
|
+ jsonObjectMd5.put("fileMd5", fileMd5);
|
|
|
+ //每个切片文件大小
|
|
|
+ long mod = file.length() % sliceSize;
|
|
|
+ long totalSliceNum = file.length() / sliceSize;
|
|
|
+ if (mod > 0) {
|
|
|
+ totalSliceNum = totalSliceNum + 1;
|
|
|
}
|
|
|
- toDir.mkdirs();
|
|
|
- //切割文件,是否成功
|
|
|
- long curSliceSize = RInterfaceUtil.spilt(file.getAbsolutePath(), toFileName, fileSplitCode);
|
|
|
- if (curSliceSize > 0) {
|
|
|
- JSONObject reStrFileUpload = null;
|
|
|
- //上传zip文件分片
|
|
|
- int startIndex = 0;
|
|
|
- try {
|
|
|
- if (reStrMd5 != null && reStrMd5.containsKey("data") && reStrMd5.getJSONObject("data") != null) {
|
|
|
- JSONArray chunks = reStrMd5.getJSONObject("data").getJSONArray("chunks");
|
|
|
- if (chunks != null) {
|
|
|
- startIndex = chunks.size();
|
|
|
+// jsonObjectMd5.put("totalSliceNum", totalSliceNum);
|
|
|
+// jsonObjectMd5.put("curSliceOrder", 0);
|
|
|
+// jsonObjectMd5.put("resetSliceOrder2Zero", true);
|
|
|
+ //TODO wanger 巴彦淖尔上传数据第二步:FindByMd5
|
|
|
+ JSONObject reStrMd5 = RInterfaceUtil.getRemote(token, byneFindByMd5Url, jsonObjectMd5, null);
|
|
|
+ System.out.println("reStrMd5 == " + reStrMd5);
|
|
|
+ if (reStrMd5 != null && "200".equals(reStrMd5.getString("code"))) {
|
|
|
+ System.out.println(reStrMd5);
|
|
|
+ String fileUploadPath = "";//TODO wanger 记录最后上传的文件位置
|
|
|
+ File toDir = new File(temp + File.separator + fileMd5);
|
|
|
+ String toFileName = toDir.getAbsolutePath() + File.separator + relFileName;
|
|
|
+ if (toDir.exists()) {
|
|
|
+ FileUtils.deleteDirectory(toDir);
|
|
|
+ }
|
|
|
+ toDir.mkdirs();
|
|
|
+ long curSliceSize = RInterfaceUtil.spiltByne(file.getAbsolutePath(), toFileName, fileSplitCode);
|
|
|
+ if (curSliceSize > 0) {
|
|
|
+ JSONObject reStrFileUpload = null;
|
|
|
+ int startIndex = 0;
|
|
|
+ try {
|
|
|
+ if (reStrMd5 != null && reStrMd5.containsKey("data") && reStrMd5.getJSONObject("data") != null) {
|
|
|
+ startIndex = reStrMd5.getJSONObject("data").getJSONArray("uploadedChunks").size();
|
|
|
}
|
|
|
+ } catch (Exception r) {
|
|
|
+
|
|
|
}
|
|
|
- } catch (Exception r) {
|
|
|
- }
|
|
|
- setSbjd(escalationDTO.getId(), (startIndex + 1) + "/" + totalSliceNum);
|
|
|
- //上传zip文件分片
|
|
|
- for (int i = startIndex; i < totalSliceNum; i++) {
|
|
|
- // 生成文件的路径
|
|
|
- String t = toFileName + fileSplitCode + i;
|
|
|
+ setSbjd(escalationDTO.getId(), (startIndex + 1) + "/" + totalSliceNum);
|
|
|
+ for (int i = startIndex; i < totalSliceNum; i++) {
|
|
|
+ // 生成文件的路径
|
|
|
+ String t = toFileName + fileSplitCode + "zip-" + (i + 1);
|
|
|
+ Map<String, Object> paramFile = new HashMap<>();
|
|
|
+ File f = new File(t);
|
|
|
+ String curMd5 = Md5Utils.getMD5(f);
|
|
|
+ paramFile.put("fileMd5", fileMd5);
|
|
|
+ paramFile.put("chunkFileMd5", curMd5);
|
|
|
+ paramFile.put("fileName", filename);
|
|
|
+ paramFile.put("currentChunk", (i + 1));
|
|
|
+ paramFile.put("upfile", f);
|
|
|
+ paramFile.put("totalSize", file.length());
|
|
|
+ paramFile.put("totalChunk", totalSliceNum);
|
|
|
+ paramFile.put("chunkSize", sliceSize);
|
|
|
+// paramFile.put("currentChunkSize", 10240 * 1024);
|
|
|
+ paramFile.put("currentChunkSize", f.length());
|
|
|
+ //TODO wanger 巴彦淖尔上传数据第三步:UploadSplitFile
|
|
|
+ reStrFileUpload = RInterfaceUtil.postRemote(token, byneFindByMd5Url, null, paramFile);
|
|
|
+ System.out.println("reStrFileUpload == " + reStrFileUpload);
|
|
|
+ System.out.println("reStrFileUpload :" + reStrFileUpload);
|
|
|
+ if (reStrFileUpload.containsKey("code") && !"200".equals(reStrFileUpload.getString("code"))) {
|
|
|
+ System.out.println("上传规划成果数据分片失败,分片数: " + i + " !");
|
|
|
+ EscalationDTO dto = new EscalationDTO();
|
|
|
+ dto.setId(escalationDTO.getId());
|
|
|
+ dto.setRemark(reStrFileUpload.toJSONString());
|
|
|
+ addCgglRz(dto);
|
|
|
+ updateLogInfo(validateEscalationDTO, reStrFileUpload.toJSONString());
|
|
|
+ return RequestResult.error("上传规划成果数据分片失败:" + reStrFileUpload.getString("msg") + ",分片数: " + i + " !", false);
|
|
|
+ } else {//记录分片个数及上传状态
|
|
|
+ fileUploadPath = reStrFileUpload.getString("data");
|
|
|
+ setSbjd(escalationDTO.getId(), (i + 1) + "/" + totalSliceNum);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //TODO wanger 巴彦淖尔上传数据第四步:Complete
|
|
|
Map<String, Object> paramFile = new HashMap<>();
|
|
|
- File f = new File(t);
|
|
|
- paramFile.put("file", f);
|
|
|
- paramFile.put("md5", fileMd5);
|
|
|
- paramFile.put("chunk", i);
|
|
|
-// paramFile.put("name", file.getName());
|
|
|
-// paramFile.put("year", validateEscalationDTO.getYear().substring(0, 4));
|
|
|
-// paramFile.put("zipFileSlice", f);
|
|
|
-// paramFile.put("zipMd5", fileMd5);
|
|
|
-// paramFile.put("totalSliceNum", totalSliceNum);
|
|
|
-// paramFile.put("curSliceOrder", i);
|
|
|
-// if (!StringUtils.isEmpty(validateEscalationDTO.getInstid())) {
|
|
|
-// paramFile.put("instId", validateEscalationDTO.getInstid());
|
|
|
-// }
|
|
|
-// //上传文件总大小
|
|
|
-// paramFile.put("curSliceSize", 10240 * 1024);
|
|
|
- //当前分片文件大小
|
|
|
-// paramFile.put("curSliceSize", f.length());
|
|
|
- reStrFileUpload = RInterfaceUtil.postRemote(token, uploadSplitFileUrl, null, paramFile);
|
|
|
- System.out.println("reStrFileUpload :" + reStrFileUpload);
|
|
|
- if (reStrFileUpload.containsKey("statuscode") && !"200".equals(reStrFileUpload.getString("statuscode"))) {
|
|
|
- System.out.println("上传规划成果数据分片失败,分片数: " + i + " !");
|
|
|
+// paramFile.put("fileMd5", fileMd5);
|
|
|
+// paramFile.put("fileName", filename);
|
|
|
+// paramFile.put("filePath", fileUploadPath);
|
|
|
+// paramFile.put("fileSize", file.length());
|
|
|
+ JSONObject mergeJSONObject = new JSONObject();
|
|
|
+ mergeJSONObject.put("fileMd5", fileMd5);
|
|
|
+ mergeJSONObject.put("fileName", filename);
|
|
|
+ mergeJSONObject.put("filePath", fileUploadPath);
|
|
|
+ mergeJSONObject.put("fileSize", file.length());
|
|
|
+ reStrFileUpload = RInterfaceUtil.postRemote(token, byneUploadCompleteFileUrl, mergeJSONObject, null);
|
|
|
+ System.out.println("reStrFileUpload == " + reStrFileUpload);
|
|
|
+ if (reStrFileUpload != null && "200".equals(reStrFileUpload.getString("code"))) {
|
|
|
+ if (toDir.exists()) {
|
|
|
+ FileUtils.deleteDirectory(toDir);
|
|
|
+ }
|
|
|
+ String fileUploadId = reStrFileUpload.getString("data");
|
|
|
+ //TODO wanger 巴彦淖尔上传数据第五步:Complete
|
|
|
+ paramFile = new HashMap<>();
|
|
|
+ paramFile.put("fileInfoId", fileUploadId);
|
|
|
+ paramFile.put("name", filename);
|
|
|
+ if (StringUtils.isEmpty(validateEscalationDTO.getYear())) {
|
|
|
+ paramFile.put("year", StringUtils.getCurrentYear());
|
|
|
+ } else {
|
|
|
+ paramFile.put("year", validateEscalationDTO.getYear().substring(0, 4));
|
|
|
+ }
|
|
|
+ paramFile.put("xzqmc", validateEscalationDTO.getXzqmc());
|
|
|
+ paramFile.put("xzqdm", validateEscalationDTO.getXzqdm());
|
|
|
+ paramFile.put("type", StringUtils.getGhlxByne(validateEscalationDTO.getPlantype()));
|
|
|
+ File zjfile = null;
|
|
|
+ if (escalationDTO.getFile() != null) {
|
|
|
+ String filepath = temp + "check.pdf";
|
|
|
+ byteArrayToFile(escalationDTO.getFile(), filepath);
|
|
|
+ zjfile = new File(filepath);
|
|
|
+ }
|
|
|
+ paramFile.put("zjbgFile", zjfile);
|
|
|
+ paramFile.put("phone", escalationDTO.getPhone());
|
|
|
+ paramFile.put("remark", escalationDTO.getUploadremark());
|
|
|
+ paramFile.put("wdbh", escalationDTO.getWdbh());
|
|
|
+ reStrFileUpload = RInterfaceUtil.postRemote(token, byneUploadFileUrl, null, paramFile);
|
|
|
+ System.out.println("reStrFileUpload == " + reStrFileUpload);
|
|
|
+ if (reStrFileUpload.containsKey("code") && !"200".equals(reStrFileUpload.getString("code"))) {
|
|
|
+ System.out.println("成果上报接口失败: !==" + reStrFileUpload.toJSONString());
|
|
|
+ EscalationDTO dto = new EscalationDTO();
|
|
|
+ dto.setId(escalationDTO.getId());
|
|
|
+ dto.setRemark(reStrFileUpload.toJSONString());
|
|
|
+ addCgglRz(dto);
|
|
|
+ updateLogInfo(validateEscalationDTO, reStrFileUpload.toJSONString());
|
|
|
+ return RequestResult.error("成果上报接口失败:" + reStrFileUpload.toJSONString() + "!", false);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ System.out.println("Complete Error!" + reStrFileUpload.toJSONString());
|
|
|
EscalationDTO dto = new EscalationDTO();
|
|
|
- dto.setUploadstatus("999");
|
|
|
dto.setId(escalationDTO.getId());
|
|
|
dto.setRemark(reStrFileUpload.toJSONString());
|
|
|
addCgglRz(dto);
|
|
|
updateLogInfo(validateEscalationDTO, reStrFileUpload.toJSONString());
|
|
|
- return RequestResult.error("上传规划成果数据分片失败:" + reStrFileUpload.getString("msg") + ",分片数: " + i + " !", false);
|
|
|
- } else {//记录分片个数及上传状态
|
|
|
- setSbjd(escalationDTO.getId(), (i + 1) + "/" + totalSliceNum);
|
|
|
+ return RequestResult.error("Complete Error!:" + reStrFileUpload.getString("msg") + "!", false);
|
|
|
}
|
|
|
}
|
|
|
- if ((startIndex == totalSliceNum) || (reStrFileUpload != null && reStrFileUpload.containsKey("success") && reStrFileUpload.getBoolean("success"))) {
|
|
|
- if (toDir.exists()) {
|
|
|
- //删除临时文件
|
|
|
-// FileUtils.deleteDirectory(toDir);
|
|
|
+ } else {
|
|
|
+ updateLogInfo(validateEscalationDTO, reStrMd5.toJSONString());
|
|
|
+ System.out.println("上传规划成果数据接口-查询MD5值接口失败!");
|
|
|
+ return RequestResult.error("上传规划成果数据接口-查询MD5值接口失败!", false);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ System.out.println("成果文件不存在!");
|
|
|
+ return RequestResult.error("成果文件不存在!", false);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ updateLogInfo(validateEscalationDTO, tokenJson.toJSONString());
|
|
|
+ System.out.println(tokenJson);
|
|
|
+ return RequestResult.error("市级系统token信息获取失败,请检查token获取地址、用户名、密码!", false);
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+ System.out.println(e.toString());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ } else {
|
|
|
+ //TODO wanger 普通旗县调用市级接口(乌兰察布、鄂尔多斯)
|
|
|
+ JSONObject jsonObject = new JSONObject();
|
|
|
+ jsonObject.put("appid", appid);
|
|
|
+ JSONObject tokenJson = RInterfaceUtil.postRemote(null, oauthUrl, jsonObject, null);
|
|
|
+ String token = "";
|
|
|
+ String fileMd5 = "";
|
|
|
+ try {
|
|
|
+ if (tokenJson.containsKey("success") && tokenJson.getBoolean("success")) {
|
|
|
+ //获取token
|
|
|
+ if (tokenJson.containsKey("data") && tokenJson.getJSONObject("data").containsKey("token")) {
|
|
|
+ token = tokenJson.getJSONObject("data").getString("token");
|
|
|
+ System.out.println(token);
|
|
|
+ //查询数据库文件路径
|
|
|
+ QueryWrapper<EscalationFileDTO> wrapperFile = new QueryWrapper<EscalationFileDTO>();
|
|
|
+ wrapperFile.eq("id", validateEscalationDTO.getFileid());
|
|
|
+ EscalationFileDTO fileDTO = escalationFileMapper.selectOne(wrapperFile);
|
|
|
+ //获取文件md5
|
|
|
+ if (fileDTO != null) {
|
|
|
+ File file = new File(fileDTO.getPath());
|
|
|
+ if (file.exists()) {
|
|
|
+ fileMd5 = Md5Utils.getMD5(file);
|
|
|
+ JSONObject jsonObjectMd5 = new JSONObject();
|
|
|
+ //每个切片文件大小
|
|
|
+ long mod = file.length() % sliceSize;
|
|
|
+ long totalSliceNum = file.length() / sliceSize;
|
|
|
+ if (mod > 0) {
|
|
|
+ totalSliceNum = totalSliceNum + 1;
|
|
|
+ }
|
|
|
+ //TODO wanger 根据鄂尔多斯市级接口文档对接
|
|
|
+ jsonObjectMd5.put("md5", fileMd5);
|
|
|
+ jsonObjectMd5.put("size", totalSliceNum);
|
|
|
+ jsonObjectMd5.put("new", false);
|
|
|
+ jsonObjectMd5.put("ghlx", StringUtils.getGhlx(validateEscalationDTO.getPlantype()));
|
|
|
+ JSONObject reStrMd5 = RInterfaceUtil.getRemote(token, findByMd5Url, jsonObjectMd5, null);
|
|
|
+ if (reStrMd5 != null && reStrMd5.containsKey("success") && reStrMd5.getBoolean("success")) {
|
|
|
+ System.out.println(reStrMd5);
|
|
|
+ File toDir = new File(temp + File.separator + fileMd5);
|
|
|
+ String toFileName = toDir.getAbsolutePath() + File.separator + fileMd5;
|
|
|
+ if (toDir.exists()) {
|
|
|
+ FileUtils.deleteDirectory(toDir);
|
|
|
+ }
|
|
|
+ toDir.mkdirs();
|
|
|
+ //切割文件,是否成功
|
|
|
+ long curSliceSize = RInterfaceUtil.spilt(file.getAbsolutePath(), toFileName, fileSplitCode);
|
|
|
+ if (curSliceSize > 0) {
|
|
|
+ JSONObject reStrFileUpload = null;
|
|
|
+ //上传zip文件分片
|
|
|
+ int startIndex = 0;
|
|
|
+ try {
|
|
|
+ if (reStrMd5 != null && reStrMd5.containsKey("data") && reStrMd5.getJSONObject("data") != null) {
|
|
|
+ JSONArray chunks = reStrMd5.getJSONObject("data").getJSONArray("chunks");
|
|
|
+ if (chunks != null) {
|
|
|
+ startIndex = chunks.size();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } catch (Exception r) {
|
|
|
}
|
|
|
- //分片上传完成后发起合包请求
|
|
|
- JSONObject jsonObjectMerge = new JSONObject();
|
|
|
- jsonObjectMerge.put("md5", fileMd5);
|
|
|
- jsonObjectMerge.put("filename", file.getName());
|
|
|
- jsonObjectMerge.put("type", "0");//成果类型默认为0
|
|
|
- if (!StringUtils.isEmpty(validateEscalationDTO.getInstid())) {
|
|
|
- jsonObjectMerge.put("instid", validateEscalationDTO.getInstid());
|
|
|
+ setSbjd(escalationDTO.getId(), (startIndex + 1) + "/" + totalSliceNum);
|
|
|
+ //上传zip文件分片
|
|
|
+ for (int i = startIndex; i < totalSliceNum; i++) {
|
|
|
+ // 生成文件的路径
|
|
|
+ String t = toFileName + fileSplitCode + i;
|
|
|
+ Map<String, Object> paramFile = new HashMap<>();
|
|
|
+ File f = new File(t);
|
|
|
+ paramFile.put("file", f);
|
|
|
+ paramFile.put("md5", fileMd5);
|
|
|
+ paramFile.put("chunk", i);
|
|
|
+ reStrFileUpload = RInterfaceUtil.postRemote(token, uploadSplitFileUrl, null, paramFile);
|
|
|
+ System.out.println("reStrFileUpload :" + reStrFileUpload);
|
|
|
+ if (reStrFileUpload.containsKey("statuscode") && !"200".equals(reStrFileUpload.getString("statuscode"))) {
|
|
|
+ System.out.println("上传规划成果数据分片失败,分片数: " + i + " !");
|
|
|
+ EscalationDTO dto = new EscalationDTO();
|
|
|
+ dto.setUploadstatus("999");
|
|
|
+ dto.setId(escalationDTO.getId());
|
|
|
+ dto.setRemark(reStrFileUpload.toJSONString());
|
|
|
+ addCgglRz(dto);
|
|
|
+ updateLogInfo(validateEscalationDTO, reStrFileUpload.toJSONString());
|
|
|
+ return RequestResult.error("上传规划成果数据分片失败:" + reStrFileUpload.getString("msg") + ",分片数: " + i + " !", false);
|
|
|
+ } else {//记录分片个数及上传状态
|
|
|
+ setSbjd(escalationDTO.getId(), (i + 1) + "/" + totalSliceNum);
|
|
|
+ }
|
|
|
}
|
|
|
- JSONObject mergeResult = RInterfaceUtil.postRemote(token, uploadCompleteUrl, jsonObjectMerge, null);
|
|
|
- System.out.println("合包请求结果:" + mergeResult);
|
|
|
- if (mergeResult != null && mergeResult.containsKey("success") && mergeResult.getBoolean("success")) {
|
|
|
- //TODO wanger 补正状态更正
|
|
|
+ if ((startIndex == totalSliceNum) || (reStrFileUpload != null && reStrFileUpload.containsKey("success") && reStrFileUpload.getBoolean("success"))) {
|
|
|
+ if (toDir.exists()) {
|
|
|
+ //删除临时文件
|
|
|
+// FileUtils.deleteDirectory(toDir);
|
|
|
+ }
|
|
|
+ //分片上传完成后发起合包请求
|
|
|
+ JSONObject jsonObjectMerge = new JSONObject();
|
|
|
+ jsonObjectMerge.put("md5", fileMd5);
|
|
|
+ jsonObjectMerge.put("filename", file.getName());
|
|
|
+ jsonObjectMerge.put("type", "0");//成果类型默认为0
|
|
|
if (!StringUtils.isEmpty(validateEscalationDTO.getInstid())) {
|
|
|
- validateEscalationDTO.setInstid(validateEscalationDTO.getInstid() + "#");
|
|
|
+ jsonObjectMerge.put("instid", validateEscalationDTO.getInstid());
|
|
|
+ }
|
|
|
+ JSONObject mergeResult = RInterfaceUtil.postRemote(token, uploadCompleteUrl, jsonObjectMerge, null);
|
|
|
+ System.out.println("合包请求结果:" + mergeResult);
|
|
|
+ if (mergeResult != null && mergeResult.containsKey("success") && mergeResult.getBoolean("success")) {
|
|
|
+ //TODO wanger 补正状态更正
|
|
|
+ if (!StringUtils.isEmpty(validateEscalationDTO.getInstid())) {
|
|
|
+ validateEscalationDTO.setInstid(validateEscalationDTO.getInstid() + "#");
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ updateLogInfo(validateEscalationDTO, mergeResult.toJSONString());
|
|
|
+ return RequestResult.error("上传规划成果数据接口-合包失败!" + (mergeResult == null ? "" : mergeResult.getString("message")), false);
|
|
|
}
|
|
|
- } else {
|
|
|
- updateLogInfo(validateEscalationDTO, mergeResult.toJSONString());
|
|
|
- return RequestResult.error("上传规划成果数据接口-合包失败!" + (mergeResult == null ? "" : mergeResult.getString("message")), false);
|
|
|
}
|
|
|
}
|
|
|
+ } else {
|
|
|
+ updateLogInfo(validateEscalationDTO, reStrMd5.toJSONString());
|
|
|
+ System.out.println("上传规划成果数据接口-查询MD5值接口失败!");
|
|
|
+ return RequestResult.error("上传规划成果数据接口-查询MD5值接口失败!", false);
|
|
|
}
|
|
|
} else {
|
|
|
- updateLogInfo(validateEscalationDTO, reStrMd5.toJSONString());
|
|
|
- System.out.println("上传规划成果数据接口-查询MD5值接口失败!");
|
|
|
- return RequestResult.error("上传规划成果数据接口-查询MD5值接口失败!", false);
|
|
|
+ System.out.println("成果文件不存在!");
|
|
|
+ return RequestResult.error("成果文件不存在!", false);
|
|
|
}
|
|
|
- } else {
|
|
|
- System.out.println("成果文件不存在!");
|
|
|
- return RequestResult.error("成果文件不存在!", false);
|
|
|
}
|
|
|
+ } else {
|
|
|
+ updateLogInfo(validateEscalationDTO, tokenJson.toJSONString());
|
|
|
+ System.out.println(tokenJson);
|
|
|
+ return RequestResult.error("市级系统token信息获取失败,请检查token获取地址、appid!", false);
|
|
|
}
|
|
|
} else {
|
|
|
updateLogInfo(validateEscalationDTO, tokenJson.toJSONString());
|
|
|
System.out.println(tokenJson);
|
|
|
return RequestResult.error("市级系统token信息获取失败,请检查token获取地址、appid!", false);
|
|
|
}
|
|
|
- } else {
|
|
|
- updateLogInfo(validateEscalationDTO, tokenJson.toJSONString());
|
|
|
- System.out.println(tokenJson);
|
|
|
- return RequestResult.error("市级系统token信息获取失败,请检查token获取地址、appid!", false);
|
|
|
+ } catch (Exception e) {
|
|
|
+ System.out.println(e.toString());
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
- System.out.println(e.toString());
|
|
|
}
|
|
|
}
|
|
|
//更新数据库上报状态
|
|
@@ -633,12 +908,6 @@ public class CgglServiceImpl implements CgglService {
|
|
|
}
|
|
|
escalationMapper.update(escalationDTO, wrapper);
|
|
|
addCgglRz(escalationDTO);
|
|
|
- //更改 审查状态 上报到市 同步更新到 市级(待审)
|
|
|
- escalationDTO = escalationMapper.selectOne(wrapper);
|
|
|
-// if (("2").equals(validateEscalationDTO.getSczt()) && ("1").equals(escalationDTO.getUploadstatus())) {
|
|
|
-// escalationDTO.setSczt("4");
|
|
|
-// escalationMapper.update(escalationDTO, wrapper);
|
|
|
-// }
|
|
|
return RequestResult.success("修改成功!", true);
|
|
|
}
|
|
|
|