forked from fanruan/design
pengda
4 years ago
9 changed files with 1094 additions and 75 deletions
@ -0,0 +1,429 @@
|
||||
package com.fr.design; |
||||
|
||||
import com.fr.base.FRContext; |
||||
import com.fr.decision.update.data.UpdateConstants; |
||||
import com.fr.decision.update.exception.UpdateException; |
||||
import com.fr.decision.update.info.UpdateCallBack; |
||||
import com.fr.decision.update.info.UpdateProcessBean; |
||||
import com.fr.design.env.DesignerWorkspaceInfo; |
||||
import com.fr.design.env.DesignerWorkspaceType; |
||||
import com.fr.design.env.RemoteWorkspace; |
||||
import com.fr.design.i18n.Toolkit; |
||||
import com.fr.general.CommonIOUtils; |
||||
import com.fr.general.ComparatorUtils; |
||||
import com.fr.general.GeneralUtils; |
||||
import com.fr.general.IOUtils; |
||||
import com.fr.general.http.HttpToolbox; |
||||
import com.fr.invoke.Reflect; |
||||
import com.fr.json.JSONArray; |
||||
import com.fr.json.JSONObject; |
||||
import com.fr.locale.InterProviderFactory; |
||||
import com.fr.log.FineLoggerFactory; |
||||
import com.fr.plugin.context.PluginContext; |
||||
import com.fr.plugin.manage.PluginManager; |
||||
import com.fr.plugin.manage.control.PluginTaskCallback; |
||||
import com.fr.plugin.manage.control.PluginTaskResult; |
||||
import com.fr.plugin.manage.control.ProgressCallback; |
||||
import com.fr.rpc.Result; |
||||
import com.fr.stable.StableUtils; |
||||
import com.fr.stable.StringUtils; |
||||
import com.fr.third.org.apache.http.client.methods.CloseableHttpResponse; |
||||
import com.fr.third.org.apache.http.client.methods.HttpGet; |
||||
import com.fr.third.org.apache.http.impl.client.CloseableHttpClient; |
||||
import com.fr.workspace.WorkContext; |
||||
import com.fr.workspace.base.WorkspaceAPI; |
||||
import com.fr.workspace.connect.WorkspaceConnectionInfo; |
||||
import com.fr.workspace.engine.base.FineObjectPool; |
||||
import com.fr.workspace.engine.channel.http.FunctionalHttpRequest; |
||||
import com.fr.workspace.engine.exception.WorkspaceConnectionException; |
||||
import com.fr.workspace.engine.rpc.WorkspaceProxyPool; |
||||
import java.io.File; |
||||
import java.io.FileOutputStream; |
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
import java.lang.reflect.Method; |
||||
import java.net.ProtocolException; |
||||
import java.net.URI; |
||||
import java.util.ArrayList; |
||||
import java.util.HashMap; |
||||
import java.util.HashSet; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import java.util.Set; |
||||
import java.util.concurrent.CountDownLatch; |
||||
|
||||
/** |
||||
* @author pengda |
||||
* @version 10.0 |
||||
* Created by Bryant on 2021-06-02 |
||||
*/ |
||||
public class VersionCheckUtils { |
||||
private static final String SYNCPLUGINLIB = StableUtils.getInstallHome() + "/logs/syncLib/plugins/"; |
||||
private static final String SYNCLIB = StableUtils.getInstallHome() + "/logs/syncLib/"; |
||||
private static final String ZIP = ".zip"; |
||||
public static final String INCONSISTENCY = "inconsistency"; |
||||
public static final String MISSING = "missing"; |
||||
private static final String ID = "id"; |
||||
private static final String VERSION = "version"; |
||||
private static final String NAME = "name"; |
||||
|
||||
|
||||
public static boolean versionCheck(String envName) { |
||||
return checkLocalAndRemoteJartime(envName) && checkLocalAndRemotePlugin().size() == 0; |
||||
} |
||||
|
||||
public static boolean versionCheck(DesignerWorkspaceInfo selectedEnv) { |
||||
return checkLocalAndRemoteJartime(selectedEnv) && checkLocalAndRemotePlugin().size() == 0; |
||||
} |
||||
|
||||
public static boolean checkLocalAndRemoteJartime(String envName) { |
||||
DesignerEnvManager envManager = DesignerEnvManager.getEnvManager(); |
||||
DesignerWorkspaceInfo selectedEnv = envManager.getWorkspaceInfo(envName); |
||||
return checkLocalAndRemoteJartime(selectedEnv); |
||||
} |
||||
|
||||
public static boolean checkLocalAndRemoteJartime(DesignerWorkspaceInfo selectedEnv){ |
||||
//是否需要做服务校验
|
||||
if (needCheckBranch(selectedEnv)) { |
||||
String localBranch; |
||||
String remoteBranch = getRemoteBranch(selectedEnv); |
||||
localBranch = GeneralUtils.readFullBuildNO(); |
||||
//通过是否包含#来避免当前版本为非安装版本(主要是内部开发版本)
|
||||
if (localBranch.contains("#") && ComparatorUtils.equals(localBranch, remoteBranch)) { |
||||
//说明版本一致,仅做日志记录
|
||||
FineLoggerFactory.getLogger().info("Remote Designer version consistency"); |
||||
return true; |
||||
} else { |
||||
return false; |
||||
} |
||||
} |
||||
return true; |
||||
} |
||||
|
||||
public static List<String> getNoExistServiceDescription(String envName) { |
||||
DesignerEnvManager envManager = DesignerEnvManager.getEnvManager(); |
||||
DesignerWorkspaceInfo selectedEnv = envManager.getWorkspaceInfo(envName); |
||||
WorkspaceConnectionInfo connectionInfo = selectedEnv.getConnection(); |
||||
List<String> noExistServiceDescription = new ArrayList<>(); |
||||
Set<Class> noExistServiceSet = getNoExistServiceSet(connectionInfo); |
||||
for (Class clazz : noExistServiceSet) { |
||||
WorkspaceAPI workspaceAPI = (WorkspaceAPI) clazz.getAnnotation(WorkspaceAPI.class); |
||||
if (workspaceAPI == null) { |
||||
FineLoggerFactory.getLogger().info("workspace service {} get annotation failed", clazz); |
||||
continue; |
||||
} |
||||
if (workspaceAPI.ignore()) { |
||||
continue; |
||||
} |
||||
String descriptionOfCN = InterProviderFactory.getProvider().getLocText(workspaceAPI.description()); |
||||
noExistServiceDescription.add(descriptionOfCN); |
||||
} |
||||
return noExistServiceDescription; |
||||
} |
||||
|
||||
public static String getRemoteBranch(String envName) { |
||||
DesignerEnvManager envManager = DesignerEnvManager.getEnvManager(); |
||||
DesignerWorkspaceInfo selectedEnv = envManager.getWorkspaceInfo(envName); |
||||
return getRemoteBranch(selectedEnv); |
||||
} |
||||
|
||||
public static String getRemoteBranch(DesignerWorkspaceInfo selectedEnv) { |
||||
String remoteBranch = StringUtils.EMPTY; |
||||
WorkspaceConnectionInfo connectionInfo = selectedEnv.getConnection(); |
||||
try { |
||||
remoteBranch = new FunctionalHttpRequest(connectionInfo).getServerBranch(); |
||||
} catch (WorkspaceConnectionException e) { |
||||
remoteBranch = Toolkit.i18nText("Fine-Design_Basic_Remote_Design_Branch_Is_Old") + formatBranch(GeneralUtils.readFullBuildNO()); |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
return remoteBranch; |
||||
} |
||||
|
||||
/** |
||||
* 获取不存在的服务列表 |
||||
* |
||||
* @param info 环境连接信息 |
||||
* @return 以Set形式返回不存在的服务 |
||||
*/ |
||||
public static Set<Class> getNoExistServiceSet(WorkspaceConnectionInfo info) { |
||||
Set<Class> noExistServiceSet = new HashSet<Class>(); |
||||
Set<Class> remoteServiceSet = new HashSet<Class>(); |
||||
Set<Class> localServiceSet = FineObjectPool.getInstance().getServerPool().keySet(); |
||||
|
||||
try { |
||||
JSONArray serviceArray = new FunctionalHttpRequest(info).getServiceList(); |
||||
for (int i = 0; i < serviceArray.size(); i++) { |
||||
try { |
||||
Class clazz = Class.forName((String) serviceArray.get(i)); |
||||
remoteServiceSet.add(clazz); |
||||
} catch (Exception e) { |
||||
continue; |
||||
} |
||||
} |
||||
noExistServiceSet.addAll(localServiceSet); |
||||
noExistServiceSet.removeAll(remoteServiceSet); |
||||
return noExistServiceSet; |
||||
} catch (WorkspaceConnectionException e) { |
||||
FineLoggerFactory.getLogger().info(e.getMessage()); |
||||
//根据本地的服务列表做逐一检测
|
||||
for (Class clazz : localServiceSet) { |
||||
Method testMethod = Reflect.on(Method.class).create(clazz, "connectTest", new Class[0], String.class, new Class[0], 1025, 8, null, null, null, null).get(); |
||||
WorkspaceProxyPool proxyPool = (WorkspaceProxyPool) (((RemoteWorkspace) WorkContext.getCurrent()).getClient()).getPool(); |
||||
Result result = proxyPool.testInvoker(testMethod); |
||||
Exception invokeException = (Exception) result.getException(); |
||||
if (invokeException != null) { |
||||
Exception cause = (Exception) invokeException.getCause(); |
||||
//获取被包装最底层的异常
|
||||
while (cause != null) { |
||||
invokeException = cause; |
||||
cause = (Exception) invokeException.getCause(); |
||||
} |
||||
//该异常表示服务不存在
|
||||
if (invokeException instanceof ClassNotFoundException) { |
||||
noExistServiceSet.add(clazz); |
||||
} |
||||
} |
||||
} |
||||
return noExistServiceSet; |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
return noExistServiceSet; |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* 格式化分支版本号 |
||||
* |
||||
* @param branch 初始的分支版本号 |
||||
* @return 格式化后的版本号 |
||||
*/ |
||||
private static String formatBranch(String branch) { |
||||
if (branch.contains("#")) { |
||||
return branch.substring(branch.lastIndexOf("-") + 1, branch.length() - 13); |
||||
} |
||||
return branch; |
||||
} |
||||
|
||||
private static boolean needCheckBranch(DesignerWorkspaceInfo selectedEnv) { |
||||
if (selectedEnv.getType() == DesignerWorkspaceType.Remote) { |
||||
return true; |
||||
} |
||||
return false; |
||||
} |
||||
|
||||
public static JSONArray checkLocalAndRemotePlugin() { |
||||
JSONArray differentPlugins = new JSONArray(); |
||||
JSONArray remotePlugins = FRContext.getCommonOperator().getPluginStatus(); |
||||
Map<String, PluginContext> localPluginsMap = new HashMap<>(); |
||||
List<PluginContext> localPlugins = PluginManager.getContexts(); |
||||
for (PluginContext pluginContext : localPlugins) { |
||||
localPluginsMap.put(pluginContext.getID(), pluginContext); |
||||
} |
||||
JSONObject remotePlugin; |
||||
for (int i = 0; i < remotePlugins.size(); i++) { |
||||
remotePlugin = remotePlugins.getJSONObject(i); |
||||
if (localPluginsMap.containsKey(remotePlugin.getString(ID))) { |
||||
if (ComparatorUtils.equals(localPluginsMap.get(remotePlugin.getString(ID)).getVersion(), remotePlugin.getString(VERSION))) { |
||||
continue; |
||||
} else { |
||||
if (remotePlugin.getString(NAME) == null) { |
||||
remotePlugin.put(NAME, localPluginsMap.get(remotePlugin.getString(ID)).getName()); |
||||
} |
||||
remotePlugin.put("type", INCONSISTENCY); |
||||
} |
||||
} |
||||
remotePlugin.put("type", MISSING); |
||||
if (remotePlugin.getString(NAME) == null) { |
||||
remotePlugin.put(NAME, remotePlugin.getString("id")); |
||||
} |
||||
differentPlugins.put(remotePlugin); |
||||
} |
||||
return differentPlugins; |
||||
} |
||||
|
||||
public static JSONArray syncPlugins(JSONArray differentPlugins, UpdateCallBack callBack) { |
||||
Set<String> uninstallFailed = uninstallPlugins(differentPlugins); |
||||
Map<String, String> downloadURL = getPluginsDownloadURL(differentPlugins, uninstallFailed); |
||||
downloadPlugins(downloadURL, callBack); |
||||
return installPlugins(differentPlugins); |
||||
} |
||||
|
||||
private static Set<String> uninstallPlugins(JSONArray differentPlugins) { |
||||
Map<String, PluginContext> localPluginsMap = new HashMap<>(); |
||||
List<PluginContext> localPlugins = PluginManager.getContexts(); |
||||
for (PluginContext pluginContext : localPlugins) { |
||||
localPluginsMap.put(pluginContext.getID(), pluginContext); |
||||
} |
||||
Set<String> uninstallFailedID = new HashSet<>(); |
||||
for (int i = 0; i < differentPlugins.size(); i++) { |
||||
String id = differentPlugins.getJSONObject(i).getString(ID); |
||||
if (localPluginsMap.containsKey(id)) { |
||||
PluginManager.getController().uninstall(localPluginsMap.get(id).getMarker(), true, new PluginTaskCallback() { |
||||
@Override |
||||
public void done(PluginTaskResult result) { |
||||
if (!result.isSuccess()) { |
||||
FineLoggerFactory.getLogger().error("uninstall plugin:" + id + " failed"); |
||||
uninstallFailedID.add(id); |
||||
} |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
return uninstallFailedID; |
||||
} |
||||
|
||||
private static JSONArray installPlugins(JSONArray differentPlugins) { |
||||
File file = new File(SYNCPLUGINLIB); |
||||
JSONArray syncFailedPlugins = JSONArray.create(); |
||||
if (file.isDirectory()) { |
||||
File[] plugins = file.listFiles(); |
||||
if (plugins != null && plugins.length > 0) { |
||||
CountDownLatch latch = new CountDownLatch(plugins.length); |
||||
for (File plugin : plugins) { |
||||
if (plugin.getName().endsWith(ZIP)) { |
||||
PluginManager.getController().install(plugin, new ProgressCallback() { |
||||
@Override |
||||
public void updateProgress(String description, double progress) { |
||||
} |
||||
@Override |
||||
public void done(PluginTaskResult result) { |
||||
latch.countDown(); |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
try { |
||||
latch.await(); |
||||
} catch (InterruptedException e) { |
||||
e.printStackTrace(); |
||||
} |
||||
} |
||||
} |
||||
List<PluginContext> localPlugins = PluginManager.getContexts(); |
||||
Map<String, String> localPluginsInfo = new HashMap<>(); |
||||
for (int i = 0; i < localPlugins.size(); i++) { |
||||
localPluginsInfo.put(localPlugins.get(i).getID(), localPlugins.get(i).getVersion()); |
||||
} |
||||
for (int i = 0; i < differentPlugins.size(); i++) { |
||||
JSONObject plugin = differentPlugins.getJSONObject(i); |
||||
String id = plugin.getString(ID); |
||||
if (localPluginsInfo.containsKey(id) && ComparatorUtils.equals(plugin.getString(VERSION), localPluginsInfo.get(id))) { |
||||
continue; |
||||
} |
||||
syncFailedPlugins.add(plugin); |
||||
} |
||||
return syncFailedPlugins; |
||||
} |
||||
|
||||
private static void downloadPlugins(Map<String, String> urls, UpdateCallBack callBack) { |
||||
CommonIOUtils.deleteFile(new File(SYNCLIB)); |
||||
UpdateProcessBean bean = new UpdateProcessBean(); |
||||
FileOutputStream fos = null; |
||||
CloseableHttpClient httpClient; |
||||
CloseableHttpResponse httpResponse; |
||||
HttpGet httpGet = new HttpGet(); |
||||
InputStream in = null; |
||||
try { |
||||
for (String idAndVersion : urls.keySet()) { |
||||
try { |
||||
httpGet.setURI(URI.create(urls.get(idAndVersion))); |
||||
httpClient = HttpToolbox.getHttpClient(urls.get(idAndVersion)); |
||||
String target = SYNCPLUGINLIB + idAndVersion + ZIP; |
||||
httpResponse = httpClient.execute(httpGet); |
||||
if (httpResponse.getStatusLine().getStatusCode() != 200) { |
||||
FineLoggerFactory.getLogger().error("download plugin error :" + urls.get(idAndVersion)); |
||||
continue; |
||||
} |
||||
long totalSize = httpResponse.getEntity().getContentLength(); |
||||
in = httpResponse.getEntity().getContent(); |
||||
//保存文件
|
||||
File saveDir = new File(target); |
||||
StableUtils.makesureFileExist(saveDir); |
||||
|
||||
bean.setDownloadedFiles(bean.getDownloadedFiles() + 1); |
||||
bean.setName(idAndVersion); |
||||
bean.setTotalLength((int) totalSize); |
||||
bean.setDownloadLength(0); |
||||
callBack.updateProgress(bean); |
||||
fos = new FileOutputStream(saveDir); |
||||
int bytesRead; |
||||
int totalBytesRead = 0; |
||||
byte[] getData = new byte[UpdateConstants.BYTE]; |
||||
while ((bytesRead = in.read(getData)) != -1) { |
||||
fos.write(getData, 0, bytesRead); |
||||
getData = new byte[UpdateConstants.BYTE]; |
||||
totalBytesRead += bytesRead; |
||||
bean.setDownloadLength(totalBytesRead); |
||||
callBack.updateProgress(bean); |
||||
} |
||||
} catch (ProtocolException e) { |
||||
UpdateException exception = new UpdateException(e.getMessage() + " downloadPluginZip Exception in network"); |
||||
FineLoggerFactory.getLogger().error(exception.getErrorMessage(), e); |
||||
} catch (IOException e) { |
||||
UpdateException exception = new UpdateException(e.getMessage() + " downloadPluginZip Exception in download"); |
||||
FineLoggerFactory.getLogger().error(exception.getErrorMessage(), e); |
||||
} |
||||
} |
||||
} finally { |
||||
CommonIOUtils.close(fos); |
||||
CommonIOUtils.close(in); |
||||
} |
||||
} |
||||
|
||||
|
||||
private static Map<String, String> getPluginsDownloadURL(JSONArray differentPlugins, Set<String> uninstallFailed) { |
||||
Map<String, String> downloadURL = new HashMap<>(); |
||||
JSONObject differentPlugin; |
||||
String id; |
||||
String version; |
||||
try { |
||||
for (int i = 0; i < differentPlugins.size(); i++) { |
||||
String url = null; |
||||
differentPlugin = differentPlugins.getJSONObject(i); |
||||
id = differentPlugin.getString(ID); |
||||
if (uninstallFailed.contains(id)) { |
||||
continue; |
||||
} |
||||
version = differentPlugin.getString(VERSION); |
||||
try { |
||||
//url = CloudCenter.getInstance().acquireUrlByKind("sync10.plugin");
|
||||
url = "http://192.168.5.83:3008/api/v1/plugin/download/history?pluginId={}&version={}"; |
||||
url = StringUtils.messageFormat(url, id, version); |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
|
||||
downloadURL.put(id + "-" + version, url); |
||||
} |
||||
} catch (Exception e) { |
||||
|
||||
} |
||||
return getPluginZipDownloadURL(downloadURL); |
||||
} |
||||
|
||||
private static Map<String, String> getPluginZipDownloadURL(Map<String, String> urls) { |
||||
CloseableHttpClient httpClient; |
||||
CloseableHttpResponse httpResponse; |
||||
HttpGet httpGet = new HttpGet(); |
||||
InputStream in = null; |
||||
try { |
||||
for (String idAndVersion : urls.keySet()) { |
||||
httpClient = HttpToolbox.getHttpClient(urls.get(idAndVersion)); |
||||
httpGet.setURI(URI.create(urls.get(idAndVersion))); |
||||
httpResponse = httpClient.execute(httpGet); |
||||
in = httpResponse.getEntity().getContent(); |
||||
JSONObject urlJson = new JSONObject(IOUtils.inputStream2String(in)); |
||||
String downloadURL = urlJson.getString("result"); |
||||
if (downloadURL != null) { |
||||
urls.replace(idAndVersion, urlJson.getString("result")); |
||||
} |
||||
} |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} finally { |
||||
CommonIOUtils.close(in); |
||||
} |
||||
return urls; |
||||
} |
||||
} |
@ -0,0 +1,73 @@
|
||||
package com.fr.env; |
||||
|
||||
import com.fr.design.dialog.link.MessageWithLink; |
||||
import com.fr.design.gui.ibutton.UIButton; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.i18n.Toolkit; |
||||
import com.fr.design.layout.FRGUIPaneFactory; |
||||
import com.fr.design.utils.gui.GUICoreUtils; |
||||
import com.fr.general.CloudCenter; |
||||
import com.fr.general.GeneralContext; |
||||
import com.fr.general.IOUtils; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Dimension; |
||||
import java.awt.Frame; |
||||
import java.awt.event.ActionEvent; |
||||
import java.awt.event.ActionListener; |
||||
import java.util.Locale; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.JDialog; |
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* 主jar下载失败的弹出框 |
||||
* |
||||
* */ |
||||
|
||||
public class ErrorDialog extends JDialog implements ActionListener { |
||||
public ErrorDialog(Frame parent, String message) { |
||||
super(parent, true); |
||||
init(message); |
||||
} |
||||
|
||||
private void init(String message){ |
||||
//主体内容
|
||||
JPanel centerPanel = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||
|
||||
//带超链的提示信息
|
||||
JPanel messagePanel = FRGUIPaneFactory.createLeftFlowZeroGapBorderPane(); |
||||
messagePanel.setBorder(BorderFactory.createEmptyBorder(5,0,0,0)); |
||||
|
||||
MessageWithLink messageWithLink = new MessageWithLink(message + ",", Toolkit.i18nText("Fine-Design_Basic_Sync_Help"), CloudCenter.getInstance().acquireUrlByKind("help.replacejars", "https://help.fanruan.com/finereport/doc-view-3268.html")); |
||||
messageWithLink.setPreferredSize(new Dimension(108, 20)); |
||||
JPanel messageLinkPane = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||
messageLinkPane.setBorder(BorderFactory.createEmptyBorder(5, 8, 5, 0)); |
||||
messageLinkPane.add(messageWithLink); |
||||
|
||||
//错误提示图标
|
||||
UILabel imageLabel = new UILabel(IOUtils.readIcon("com/fr/design/icon/versioncheck/bigfail.png")); |
||||
messagePanel.add(imageLabel); |
||||
messagePanel.add(messageLinkPane); |
||||
|
||||
//确定按钮
|
||||
UIButton ok = new UIButton(Toolkit.i18nText("Fine-Design_Basic_Button_OK")); |
||||
ok.addActionListener(this); |
||||
ok.setSize(new Dimension(44, 20)); |
||||
JPanel okPanel = FRGUIPaneFactory.createRightFlowInnerContainer_S_Pane(); |
||||
okPanel.add(ok); |
||||
|
||||
centerPanel.add(messagePanel, BorderLayout.CENTER); |
||||
centerPanel.add(okPanel, BorderLayout.SOUTH); |
||||
|
||||
this.setTitle(Toolkit.i18nText("Fine-Design_Basic_Tool_Tips")); |
||||
this.setResizable(false); |
||||
this.add(centerPanel, BorderLayout.CENTER); |
||||
this.setSize(new Dimension(GeneralContext.getLocale().equals(Locale.US) ? 282 : 262, 118)); |
||||
GUICoreUtils.centerWindow(this); |
||||
} |
||||
|
||||
@Override |
||||
public void actionPerformed(ActionEvent e) { |
||||
this.dispose(); |
||||
} |
||||
} |
@ -0,0 +1,119 @@
|
||||
package com.fr.env; |
||||
|
||||
import com.fr.design.RestartHelper; |
||||
import com.fr.design.dialog.link.MessageWithLink; |
||||
import com.fr.design.gui.ibutton.UIButton; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.gui.itextarea.UITextArea; |
||||
import com.fr.design.i18n.Toolkit; |
||||
import com.fr.design.layout.FRGUIPaneFactory; |
||||
import com.fr.design.mainframe.DesignerContext; |
||||
import com.fr.design.utils.gui.GUICoreUtils; |
||||
import com.fr.general.CloudCenter; |
||||
import com.fr.general.GeneralContext; |
||||
import com.fr.general.IOUtils; |
||||
import com.fr.json.JSONArray; |
||||
import com.fr.json.JSONObject; |
||||
import com.fr.stable.StringUtils; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Dimension; |
||||
import java.awt.Frame; |
||||
import java.awt.event.MouseAdapter; |
||||
import java.awt.event.MouseEvent; |
||||
import java.awt.event.MouseListener; |
||||
import java.util.Locale; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.Icon; |
||||
import javax.swing.JDialog; |
||||
import javax.swing.JLabel; |
||||
import javax.swing.JPanel; |
||||
import javax.swing.JScrollPane; |
||||
import javax.swing.UIManager; |
||||
|
||||
/** |
||||
* @author pengda |
||||
* @version 10.0 |
||||
* Created by Bryant on 2021-06-02 |
||||
*/ |
||||
public class SyncFailedPluginsDialog extends JDialog { |
||||
private UILabel detailsLabel; |
||||
private JScrollPane scrollPane; |
||||
public SyncFailedPluginsDialog(Frame parent, JSONArray syncFailedPlugins) { |
||||
super(parent, true); |
||||
JPanel body = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||
|
||||
JPanel northPane = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||
northPane.setBorder(BorderFactory.createEmptyBorder(0,0,5,0)); |
||||
JPanel imagePanel = new JPanel(); |
||||
Icon icon = IOUtils.readIcon("com/fr/design/icon/versioncheck/warning.png"); |
||||
JLabel imageLabel = new JLabel(); |
||||
imageLabel.setIcon(icon); |
||||
imagePanel.add(imageLabel); |
||||
imagePanel.setPreferredSize(new Dimension(20, 20)); |
||||
|
||||
JPanel messagePane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||
MessageWithLink messageWithLink = new MessageWithLink(Toolkit.i18nText("Fine-Design_Basic_Sync_Plugin_Fail_Suggestion"),Toolkit.i18nText("Fine-Design_Basic_Sync_Deal_Immediately"), |
||||
CloudCenter.getInstance().acquireUrlByKind("help.installplugins", "https://help.fanruan.com/finereport/doc-view-2198.html")); |
||||
messageWithLink.setPreferredSize(new Dimension(316, 20)); |
||||
|
||||
messagePane.add(messageWithLink); |
||||
messagePane.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 0)); |
||||
|
||||
northPane.add(imageLabel, BorderLayout.WEST); |
||||
northPane.add(messagePane, BorderLayout.CENTER); |
||||
|
||||
JPanel centerPanel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||
detailsLabel = new UILabel(Toolkit.i18nText("Fine_Designer_Look_Detail")); |
||||
detailsLabel.setIcon(UIManager.getIcon("OptionPane.narrow.down")); |
||||
detailsLabel.addMouseListener(detailsLabelClickListener); |
||||
JPanel detailsTitlePanel = FRGUIPaneFactory.createLeftFlowZeroGapBorderPane(); |
||||
detailsTitlePanel.add(detailsLabel); |
||||
detailsTitlePanel.setBorder(BorderFactory.createEmptyBorder(0,0,5,0)); |
||||
|
||||
UITextArea detailsTextArea = new UITextArea(); |
||||
StringBuilder detailsText = new StringBuilder(StringUtils.EMPTY); |
||||
for (int i = 0; i < syncFailedPlugins.size(); i++) { |
||||
JSONObject plugin = syncFailedPlugins.getJSONObject(i); |
||||
detailsText.append(plugin.getString("name")).append(",").append(Toolkit.i18nText("Fine-Design_Basic_Sync_Server_Version")).append(plugin.getString("version")).append("\n"); |
||||
} |
||||
detailsTextArea.setText(detailsText.toString()); |
||||
scrollPane = new JScrollPane(detailsTextArea); |
||||
centerPanel.add(detailsTitlePanel,BorderLayout.NORTH); |
||||
centerPanel.add(scrollPane,BorderLayout.CENTER); |
||||
|
||||
JPanel southPane = FRGUIPaneFactory.createRightFlowInnerContainer_S_Pane(); |
||||
UIButton restartButton = new UIButton(Toolkit.i18nText("Fine-Design_Updater_Restart_Designer")); |
||||
restartButton.addMouseListener(restartButtonClickListener); |
||||
southPane.add(restartButton); |
||||
|
||||
body.add(northPane,BorderLayout.NORTH); |
||||
body.add(centerPanel,BorderLayout.CENTER); |
||||
body.add(southPane,BorderLayout.SOUTH); |
||||
|
||||
this.setTitle(Toolkit.i18nText("Fine-Design_Basic_Tool_Tips")); |
||||
this.setResizable(false); |
||||
this.add(body, BorderLayout.CENTER); |
||||
this.setSize(new Dimension(GeneralContext.getLocale().equals(Locale.US) ? 400 : 380, 225)); |
||||
GUICoreUtils.centerWindow(this); |
||||
} |
||||
|
||||
private MouseListener detailsLabelClickListener = new MouseAdapter() { |
||||
@Override |
||||
public void mouseClicked(MouseEvent e) { |
||||
if(scrollPane.isVisible()){ |
||||
scrollPane.setVisible(false); |
||||
detailsLabel.setIcon(UIManager.getIcon("OptionPane.narrow.right")); |
||||
}else{ |
||||
scrollPane.setVisible(true); |
||||
detailsLabel.setIcon(UIManager.getIcon("OptionPane.narrow.down")); |
||||
} |
||||
} |
||||
}; |
||||
|
||||
private MouseListener restartButtonClickListener = new MouseAdapter() { |
||||
@Override |
||||
public void mouseClicked(MouseEvent e) { |
||||
RestartHelper.restartForUpdate(DesignerContext.getDesignerFrame()); |
||||
} |
||||
}; |
||||
} |
@ -0,0 +1,100 @@
|
||||
package com.fr.env; |
||||
|
||||
import com.fr.design.VersionCheckUtils; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.i18n.Toolkit; |
||||
import com.fr.design.layout.FRGUIPaneFactory; |
||||
import com.fr.design.mainframe.DesignerContext; |
||||
import com.fr.design.utils.gui.GUICoreUtils; |
||||
import com.fr.general.ComparatorUtils; |
||||
import com.fr.general.GeneralContext; |
||||
import com.fr.general.GeneralUtils; |
||||
import com.fr.general.IOUtils; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import java.awt.Frame; |
||||
import java.awt.event.ActionEvent; |
||||
import java.awt.event.ActionListener; |
||||
import java.awt.event.MouseAdapter; |
||||
import java.awt.event.MouseEvent; |
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
import java.util.Locale; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.JDialog; |
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* @author pengda |
||||
* @version 10.0 |
||||
* Created by Bryant on 2021-06-02 |
||||
*/ |
||||
public class VersionCheckMessageDialog extends JDialog implements ActionListener { |
||||
private UILabel imageLabel; |
||||
private UILabel detailLabel; |
||||
private JPanel centerPanel; |
||||
private JPanel detailPanel; |
||||
private JPanel body; |
||||
private String envName; |
||||
|
||||
public VersionCheckMessageDialog(Frame parent, String message, String envName) { |
||||
super(parent, true); |
||||
this.envName = envName; |
||||
init(message); |
||||
} |
||||
|
||||
private void init(String message) { |
||||
JPanel imagePanel = new JPanel(); |
||||
imageLabel = new UILabel(IOUtils.readIcon("com/fr/design/images/warnings/warning32.png")); |
||||
imagePanel.add(imageLabel); |
||||
JPanel messagePanel = FRGUIPaneFactory.createVerticalFlowLayout_S_Pane(true); |
||||
UILabel messageText = new UILabel(); |
||||
messageText.setText("<html>" + message + "</html>"); |
||||
messagePanel.add(messageText); |
||||
|
||||
centerPanel = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||
centerPanel.setBorder(BorderFactory.createEmptyBorder(15, 10, 10, 10)); |
||||
centerPanel.add(imagePanel, BorderLayout.WEST); |
||||
centerPanel.add(messagePanel, BorderLayout.CENTER); |
||||
|
||||
detailLabel = new UILabel(); |
||||
detailLabel.setText(Toolkit.i18nText("Fine_Designer_Look_Detail")); |
||||
detailLabel.setForeground(Color.BLUE); |
||||
|
||||
detailPanel = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||
detailPanel.add(detailLabel, BorderLayout.EAST); |
||||
|
||||
String localBranch = GeneralUtils.readFullBuildNO(); |
||||
String remoteBranch = VersionCheckUtils.getRemoteBranch(envName); |
||||
List<String> noExistServiceDescription; |
||||
if(ComparatorUtils.equals(localBranch,remoteBranch)) { |
||||
noExistServiceDescription = new ArrayList<>(); |
||||
}else{ |
||||
noExistServiceDescription = VersionCheckUtils.getNoExistServiceDescription(this.envName); |
||||
} |
||||
detailPanel.addMouseListener(new MouseAdapter() { |
||||
@Override |
||||
public void mouseClicked(MouseEvent e) { |
||||
CheckServiceDialog checkServiceDialog = new CheckServiceDialog(DesignerContext.getDesignerFrame(), localBranch, remoteBranch, noExistServiceDescription); |
||||
checkServiceDialog.setVisible(true); |
||||
} |
||||
}); |
||||
|
||||
body = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||
body.add(centerPanel, BorderLayout.CENTER); |
||||
body.add(detailPanel, BorderLayout.SOUTH); |
||||
|
||||
this.setTitle(Toolkit.i18nText("Fine-Design_Basic_Sync_Prompt")); |
||||
this.setResizable(false); |
||||
this.add(body, BorderLayout.NORTH); |
||||
this.setSize(new Dimension(GeneralContext.getLocale().equals(Locale.US) ? 300 : 280, 135)); |
||||
GUICoreUtils.centerWindow(this); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public void actionPerformed(ActionEvent e) { |
||||
this.dispose(); |
||||
} |
||||
} |
Loading…
Reference in new issue