|
|
|
@ -10,6 +10,7 @@ import com.fr.design.extra.Process;
|
|
|
|
|
import com.fr.general.Inter; |
|
|
|
|
import com.fr.plugin.Plugin; |
|
|
|
|
import com.fr.plugin.PluginLoader; |
|
|
|
|
import com.fr.plugin.PluginVerifyException; |
|
|
|
|
import com.fr.stable.StringUtils; |
|
|
|
|
|
|
|
|
|
import javax.swing.*; |
|
|
|
@ -43,11 +44,13 @@ public class UpdateOnlineExecutor implements Executor {
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void run(Process<String> process) { |
|
|
|
|
if(StringUtils.isBlank(DesignerEnvManager.getEnvManager().getBBSName())){ |
|
|
|
|
if (StringUtils.isBlank(DesignerEnvManager.getEnvManager().getBBSName())) { |
|
|
|
|
LoginCheckContext.fireLoginCheckListener(); |
|
|
|
|
} |
|
|
|
|
if(StringUtils.isNotBlank(DesignerEnvManager.getEnvManager().getBBSName())){ |
|
|
|
|
if (StringUtils.isNotBlank(DesignerEnvManager.getEnvManager().getBBSName())) { |
|
|
|
|
try { |
|
|
|
|
for (int i = 0; i < pluginIDs.length; i++) { |
|
|
|
|
try { |
|
|
|
|
Plugin plugin = PluginLoader.getLoader().getPluginById(pluginIDs[i]); |
|
|
|
|
String id = null; |
|
|
|
|
if (plugin != null) { |
|
|
|
@ -55,7 +58,6 @@ public class UpdateOnlineExecutor implements Executor {
|
|
|
|
|
} |
|
|
|
|
String username = DesignerEnvManager.getEnvManager().getBBSName(); |
|
|
|
|
String password = DesignerEnvManager.getEnvManager().getBBSPassword(); |
|
|
|
|
try { |
|
|
|
|
PluginHelper.downloadPluginFile(id, username, password, new Process<Double>() { |
|
|
|
|
@Override |
|
|
|
|
public void process(Double integer) { |
|
|
|
@ -63,6 +65,8 @@ public class UpdateOnlineExecutor implements Executor {
|
|
|
|
|
}); |
|
|
|
|
updateFileFromDisk(PluginHelper.getDownloadTempFile()); |
|
|
|
|
process.process(PERCENT_100 / pluginIDs.length * (i + 1) + "%"); |
|
|
|
|
} catch (PluginVerifyException e) { |
|
|
|
|
throw e; |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
FRContext.getLogger().error(e.getMessage(), e); |
|
|
|
|
} |
|
|
|
@ -82,14 +86,16 @@ public class UpdateOnlineExecutor implements Executor {
|
|
|
|
|
if (rv == JOptionPane.OK_OPTION) { |
|
|
|
|
RestartHelper.restart(); |
|
|
|
|
} |
|
|
|
|
} catch (PluginVerifyException e) { |
|
|
|
|
JOptionPane.showMessageDialog(null, e.getMessage(), Inter.getLocText("FR-Designer-Plugin_Warning"), JOptionPane.ERROR_MESSAGE); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void updateFileFromDisk(File fileOnDisk) { |
|
|
|
|
try { |
|
|
|
|
private void updateFileFromDisk(File fileOnDisk) throws Exception { |
|
|
|
|
Plugin plugin = PluginHelper.readPlugin(fileOnDisk); |
|
|
|
|
if (plugin == null) { |
|
|
|
|
JOptionPane.showMessageDialog(null, Inter.getLocText("FR-Designer-Plugin_Illegal_Plugin_Zip"), Inter.getLocText("FR-Designer-Plugin_Warning"), JOptionPane.ERROR_MESSAGE); |
|
|
|
@ -106,8 +112,5 @@ public class UpdateOnlineExecutor implements Executor {
|
|
|
|
|
} else { |
|
|
|
|
JOptionPane.showMessageDialog(null, Inter.getLocText("FR-Designer-Plugin_Cannot_Update_Not_Install"), Inter.getLocText("FR-Designer-Plugin_Warning"), JOptionPane.ERROR_MESSAGE); |
|
|
|
|
} |
|
|
|
|
} catch (Exception e1) { |
|
|
|
|
JOptionPane.showMessageDialog(null, e1.getMessage(), Inter.getLocText("FR-Designer-Plugin_Warning"), JOptionPane.ERROR_MESSAGE); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|