|
@@ -1,10 +1,19 @@
|
|
|
package com.shanghaichengdi.downloadcenterserver.controller;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.shanghaichengdi.downloadcentercommon.util.ImageDownload;
|
|
|
+import com.shanghaichengdi.downloadcentercommon.util.SSLUtil;
|
|
|
import com.shanghaichengdi.downloadcenterserver.domain.PicDownload;
|
|
|
import com.shanghaichengdi.downloadcenterserver.faced.PicDownloadFaced;
|
|
|
import com.shanghaigeography.entity.ResultMsg;
|
|
|
import com.shanghaigeography.eum.ResultState;
|
|
|
+import java.io.File;
|
|
|
+import java.net.URL;
|
|
|
+import java.net.URLDecoder;
|
|
|
+import java.text.ParseException;
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.web.bind.annotation.CrossOrigin;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
@@ -32,4 +41,73 @@ public class PicDownloadController {
|
|
|
}
|
|
|
return new ResultMsg<String>().setMsg("下载成功").setCode(ResultState.SUCCESS).toJSON();
|
|
|
}
|
|
|
+
|
|
|
+ @Deprecated
|
|
|
+ @PostMapping("/first/pictures")
|
|
|
+ public String downloadFirstPictures(@RequestBody String data) {
|
|
|
+ PicDownload picDownload = JSONObject.parseObject(data, PicDownload.class);
|
|
|
+ int resultNum = this.downloadPics(picDownload.getImageUrls(), picDownload.getPassTime());
|
|
|
+ if (resultNum != picDownload.getImageUrls().size()) {
|
|
|
+ return new ResultMsg<String>()
|
|
|
+ .setMsg("下载失败")
|
|
|
+ .setCode(ResultState.ERROR)
|
|
|
+ .setData(String.valueOf(resultNum))
|
|
|
+ .toJSON();
|
|
|
+ }
|
|
|
+ return new ResultMsg<String>()
|
|
|
+ .setMsg("下载成功")
|
|
|
+ .setCode(ResultState.SUCCESS)
|
|
|
+ .setData(String.valueOf(resultNum))
|
|
|
+ .toJSON();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Deprecated
|
|
|
+ private int downloadPics(List<String> imageUrls, String passTime) {
|
|
|
+ String time = passTime.split("\\+")[0];
|
|
|
+ Date times;
|
|
|
+ try {
|
|
|
+ SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
+ times =
|
|
|
+ formatter.parse(
|
|
|
+ time.split("\\.")[0].split("T")[0] + " " + time.split("\\.")[0].split("T")[1]);
|
|
|
+ } catch (ParseException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+ SimpleDateFormat formatter = new SimpleDateFormat("yyyy_MM_dd_HH_mm_ss");
|
|
|
+ SimpleDateFormat formatter1 = new SimpleDateFormat("yyyyMMdd_HHmmss");
|
|
|
+ String dir = formatter.format(times);
|
|
|
+ String newTime = formatter1.format(times) + time.split("\\.")[1];
|
|
|
+ String year = dir.split("\\_")[0];
|
|
|
+ String month = dir.split("\\_")[1];
|
|
|
+ String day = dir.split("\\_")[2];
|
|
|
+ String hour = dir.split("\\_")[3];
|
|
|
+ String dirs = year + "\\" + year + month + day + "\\" + hour;
|
|
|
+
|
|
|
+ int i = 0;
|
|
|
+ File photoDir = new File("\\\\K6XL82KY31YIWFC\\photo\\" + dirs);
|
|
|
+ photoDir.mkdirs();
|
|
|
+ for (String imageUrl : imageUrls) {
|
|
|
+ boolean isSuccess = false;
|
|
|
+ URL url = null;
|
|
|
+ try {
|
|
|
+ url = new URL(URLDecoder.decode(imageUrl, "utf-8"));
|
|
|
+ if ("https".equalsIgnoreCase(url.getProtocol())) {
|
|
|
+ SSLUtil.ignoreSsl();
|
|
|
+ }
|
|
|
+ String photoFile =
|
|
|
+ "\\\\K6XL82KY31YIWFC\\photo\\" + dirs + "\\" + "P" + i + "_" + newTime + ".jpg";
|
|
|
+ System.out.println(url);
|
|
|
+ isSuccess = ImageDownload.download(imageUrl, photoFile);
|
|
|
+ if (!isSuccess) {
|
|
|
+ return i;
|
|
|
+ }
|
|
|
+ i++;
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ return i;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return i;
|
|
|
+ }
|
|
|
}
|