|
|
@ -1,6 +1,7 @@ |
|
|
|
package com.fr.design.mainframe.errorinfo; |
|
|
|
package com.fr.design.mainframe.errorinfo; |
|
|
|
|
|
|
|
|
|
|
|
import com.fr.base.FRContext; |
|
|
|
import com.fr.base.FRContext; |
|
|
|
|
|
|
|
import com.fr.design.mainframe.SiteCenterToken; |
|
|
|
import com.fr.general.ComparatorUtils; |
|
|
|
import com.fr.general.ComparatorUtils; |
|
|
|
import com.fr.general.FRLogger; |
|
|
|
import com.fr.general.FRLogger; |
|
|
|
import com.fr.general.GeneralContext; |
|
|
|
import com.fr.general.GeneralContext; |
|
|
@ -11,8 +12,6 @@ import com.fr.json.JSONException; |
|
|
|
import com.fr.json.JSONObject; |
|
|
|
import com.fr.json.JSONObject; |
|
|
|
import com.fr.license.function.VT4FR; |
|
|
|
import com.fr.license.function.VT4FR; |
|
|
|
import com.fr.log.LogHandler; |
|
|
|
import com.fr.log.LogHandler; |
|
|
|
import com.fr.regist.FRCoreContext; |
|
|
|
|
|
|
|
import com.fr.regist.LicenseListener; |
|
|
|
|
|
|
|
import com.fr.stable.CodeUtils; |
|
|
|
import com.fr.stable.CodeUtils; |
|
|
|
import com.fr.stable.EnvChangedListener; |
|
|
|
import com.fr.stable.EnvChangedListener; |
|
|
|
import com.fr.stable.ProductConstants; |
|
|
|
import com.fr.stable.ProductConstants; |
|
|
@ -94,6 +93,7 @@ public class ErrorInfoUploader { |
|
|
|
private void downloadSolution(File localCacheZip) { |
|
|
|
private void downloadSolution(File localCacheZip) { |
|
|
|
try { |
|
|
|
try { |
|
|
|
String downloadURL = SiteCenter.getInstance().acquireUrlByKind("solution.download", "http://cloud.fanruan.com/api/solution"); |
|
|
|
String downloadURL = SiteCenter.getInstance().acquireUrlByKind("solution.download", "http://cloud.fanruan.com/api/solution"); |
|
|
|
|
|
|
|
downloadURL = String.format("%s?token=%s", downloadURL, SiteCenterToken.generateToken()); |
|
|
|
HttpClient hc = new HttpClient(downloadURL); |
|
|
|
HttpClient hc = new HttpClient(downloadURL); |
|
|
|
hc.asGet(); |
|
|
|
hc.asGet(); |
|
|
|
InputStream in = hc.getResponseStream(); |
|
|
|
InputStream in = hc.getResponseStream(); |
|
|
@ -113,7 +113,8 @@ public class ErrorInfoUploader { |
|
|
|
private boolean needUpdate(File localCacheZip) { |
|
|
|
private boolean needUpdate(File localCacheZip) { |
|
|
|
if (localCacheZip.exists()) { |
|
|
|
if (localCacheZip.exists()) { |
|
|
|
// 判断本地文件大小.
|
|
|
|
// 判断本地文件大小.
|
|
|
|
String checkURL = SiteCenter.getInstance().acquireUrlByKind("solution.check", "http://cloud.fanruan.com/api/checkUpdate"); |
|
|
|
String checkURL = SiteCenter.getInstance().acquireUrlByKind("solution.check", "http://cloud.fanruan.com/api/solution/cache/check"); |
|
|
|
|
|
|
|
checkURL = String.format("%s?token=%s", checkURL, SiteCenterToken.generateToken()); |
|
|
|
HttpClient client = new HttpClient(checkURL); |
|
|
|
HttpClient client = new HttpClient(checkURL); |
|
|
|
client.asGet(); |
|
|
|
client.asGet(); |
|
|
|
if (client.isServerAlive()) { |
|
|
|
if (client.isServerAlive()) { |
|
|
@ -171,8 +172,7 @@ public class ErrorInfoUploader { |
|
|
|
|
|
|
|
|
|
|
|
private boolean sendErroInfo(String url, String content) { |
|
|
|
private boolean sendErroInfo(String url, String content) { |
|
|
|
HashMap<String, String> para = new HashMap<>(); |
|
|
|
HashMap<String, String> para = new HashMap<>(); |
|
|
|
String date = new SimpleDateFormat("yyyy-MM-dd").format(Calendar.getInstance().getTime()); |
|
|
|
para.put("token", SiteCenterToken.generateToken()); |
|
|
|
para.put("token", CodeUtils.md5Encode(date, "", "MD5")); |
|
|
|
|
|
|
|
para.put("content", content); |
|
|
|
para.put("content", content); |
|
|
|
HttpClient httpClient = new HttpClient(url, para, true); |
|
|
|
HttpClient httpClient = new HttpClient(url, para, true); |
|
|
|
httpClient.asGet(); |
|
|
|
httpClient.asGet(); |
|
|
|