use of com.biglybt.pifimpl.update.sf.SFPluginDetails in project BiglyBT by BiglySoftware.
the class PlatformManagerUpdateChecker method checkForUpdate.
@Override
public void checkForUpdate(final UpdateChecker checker) {
try {
SFPluginDetails sf_details = SFPluginDetailsLoaderFactory.getSingleton().getPluginDetails(plugin_interface.getPluginID());
String current_version = plugin_interface.getPluginVersion();
if (Logger.isEnabled())
Logger.log(new LogEvent(LOGID, "PlatformManager:Win32 update check starts: current = " + current_version));
boolean current_az_is_cvs = Constants.isCVSVersion();
String sf_plugin_version = sf_details.getVersion();
String sf_comp_version = sf_plugin_version;
if (current_az_is_cvs) {
String sf_cvs_version = sf_details.getCVSVersion();
if (sf_cvs_version.length() > 0) {
// sf cvs version ALWAYS entry in _CVS
sf_plugin_version = sf_cvs_version;
sf_comp_version = sf_plugin_version.substring(0, sf_plugin_version.length() - 4);
}
}
String target_version = null;
if (sf_comp_version.length() == 0 || !Character.isDigit(sf_comp_version.charAt(0))) {
if (Logger.isEnabled())
Logger.log(new LogEvent(LOGID, LogEvent.LT_WARNING, "PlatformManager:Win32 no valid version to check against (" + sf_comp_version + ")"));
} else if (Constants.compareVersions(current_version, sf_comp_version) < 0) {
target_version = sf_comp_version;
}
checker.reportProgress("Win32: current = " + current_version + ", latest = " + sf_comp_version);
if (Logger.isEnabled())
Logger.log(new LogEvent(LOGID, "PlatformManager:Win32 update required = " + (target_version != null)));
if (target_version != null) {
String target_download = sf_details.getDownloadURL();
if (current_az_is_cvs) {
String sf_cvs_version = sf_details.getCVSVersion();
if (sf_cvs_version.length() > 0) {
target_download = sf_details.getCVSDownloadURL();
}
}
ResourceDownloaderFactory rdf = ResourceDownloaderFactoryImpl.getSingleton();
ResourceDownloader direct_rdl = rdf.create(new URL(target_download));
String torrent_download = Constants.URL_PLUGINS_TORRENT_BASE;
int slash_pos = target_download.lastIndexOf("/");
if (slash_pos == -1) {
torrent_download += target_download;
} else {
torrent_download += target_download.substring(slash_pos + 1);
}
torrent_download += ".torrent";
if (I2PHelpers.isI2PInstalled()) {
torrent_download += "?i2p=1";
}
ResourceDownloader torrent_rdl = rdf.create(new URL(torrent_download));
torrent_rdl = rdf.getSuffixBasedDownloader(torrent_rdl);
// create an alternate downloader with torrent attempt first
ResourceDownloader alternate_rdl = rdf.getAlternateDownloader(new ResourceDownloader[] { torrent_rdl, direct_rdl });
// get size here so it is cached
rdf.getTimeoutDownloader(rdf.getRetryDownloader(alternate_rdl, RD_SIZE_RETRIES), RD_SIZE_TIMEOUT).getSize();
List update_desc = new ArrayList();
List desc_lines = HTMLUtils.convertHTMLToText("", sf_details.getDescription());
update_desc.addAll(desc_lines);
List comment_lines = HTMLUtils.convertHTMLToText(" ", sf_details.getComment());
update_desc.addAll(comment_lines);
String[] update_d = new String[update_desc.size()];
update_desc.toArray(update_d);
final Update update = checker.addUpdate(UPDATE_NAME, update_d, current_version, target_version, alternate_rdl, Update.RESTART_REQUIRED_YES);
update.setDescriptionURL(sf_details.getInfoURL());
alternate_rdl.addListener(new ResourceDownloaderAdapter() {
@Override
public boolean completed(final ResourceDownloader downloader, InputStream data) {
installUpdate(checker, update, downloader, data);
return (true);
}
@Override
public void failed(ResourceDownloader downloader, ResourceDownloaderException e) {
// Debug.out( downloader.getName() + " failed", e );
update.complete(false);
}
});
}
} catch (Throwable e) {
Debug.printStackTrace(e);
checker.reportProgress("Failed to load plugin details for the platform manager: " + Debug.getNestedExceptionMessage(e));
checker.setFailed(new Exception("Failed to load plugin details for the platform manager", e));
} finally {
checker.completed();
}
}
use of com.biglybt.pifimpl.update.sf.SFPluginDetails in project BiglyBT by BiglySoftware.
the class Plugin method execute.
@Override
public void execute(String commandName, final ConsoleInput ci, List args) {
if (args.isEmpty()) {
printHelpExtra(ci.out, args);
return;
}
String subcmd = (String) args.get(0);
if (!java.util.Arrays.asList(new String[] { "location", "list", "listall", "status", "startup", "install", "uninstall", "update" }).contains(subcmd)) {
ci.out.println("Invalid subcommand: " + subcmd);
ci.out.println();
return;
}
PluginManager plugin_manager = ci.getCore().getPluginManager();
if (subcmd.equals("list") || subcmd.equals("listall")) {
boolean all_plugins = subcmd.equals("listall");
ci.out.println("> -----");
PluginInterface[] plugins = plugin_manager.getPluginInterfaces();
TreeSet plugin_ids = new TreeSet(String.CASE_INSENSITIVE_ORDER);
for (int i = 0; i < plugins.length; i++) {
if (!all_plugins && !plugins[i].getPluginState().isOperational()) {
continue;
}
String plugin_id = plugins[i].getPluginID();
plugin_ids.add(plugin_id);
}
TextWrap.printList(plugin_ids.iterator(), ci.out, " ");
ci.out.println("> -----");
return;
}
if (subcmd.equals("location")) {
// Taken from ConfigSectionPlugins.
File fUserPluginDir = FileUtil.getUserFile("plugins");
String sep = File.separator;
String sUserPluginDir;
try {
sUserPluginDir = fUserPluginDir.getCanonicalPath();
} catch (Throwable e) {
sUserPluginDir = fUserPluginDir.toString();
}
if (!sUserPluginDir.endsWith(sep)) {
sUserPluginDir += sep;
}
File fAppPluginDir = FileUtil.getApplicationFile("plugins");
String sAppPluginDir;
try {
sAppPluginDir = fAppPluginDir.getCanonicalPath();
} catch (Throwable e) {
sAppPluginDir = fAppPluginDir.toString();
}
if (!sAppPluginDir.endsWith(sep)) {
sAppPluginDir += sep;
}
ci.out.println("Shared plugin location:");
ci.out.println(" " + sAppPluginDir);
ci.out.println("User plugin location:");
ci.out.println(" " + sUserPluginDir);
ci.out.println();
return;
}
if (subcmd.equals("update")) {
if (args.size() != 1) {
ci.out.println("Usage: update");
return;
}
UpdateManager update_manager = plugin_manager.getDefaultPluginInterface().getUpdateManager();
final UpdateCheckInstance checker = update_manager.createUpdateCheckInstance();
checker.addListener(new UpdateCheckInstanceListener() {
@Override
public void cancelled(UpdateCheckInstance instance) {
}
@Override
public void complete(UpdateCheckInstance instance) {
Update[] updates = instance.getUpdates();
try {
for (Update update : updates) {
ci.out.println("Updating " + update.getName());
for (ResourceDownloader rd : update.getDownloaders()) {
rd.addListener(new ResourceDownloaderAdapter() {
@Override
public void reportActivity(ResourceDownloader downloader, String activity) {
ci.out.println("\t" + activity);
}
@Override
public void reportPercentComplete(ResourceDownloader downloader, int percentage) {
ci.out.println("\t" + percentage + "%");
}
});
rd.download();
}
}
boolean restart_required = false;
for (int i = 0; i < updates.length; i++) {
if (updates[i].getRestartRequired() == Update.RESTART_REQUIRED_YES) {
restart_required = true;
}
}
if (restart_required) {
ci.out.println("**** Restart required to complete update ****");
}
} catch (Throwable e) {
ci.out.println("Plugin update failed: " + Debug.getNestedExceptionMessage(e));
}
}
});
checker.start();
return;
}
if (subcmd.equals("install")) {
if (args.size() == 1) {
ci.out.println("Contacting plugin repository for list of available plugins...");
try {
SFPluginDetails[] plugins = SFPluginDetailsLoaderFactory.getSingleton().getPluginDetails();
for (SFPluginDetails p : plugins) {
String category = p.getCategory();
if (category != null) {
if (category.equalsIgnoreCase("hidden") || (category.equalsIgnoreCase("core"))) {
continue;
}
}
String id = p.getId();
if (plugin_manager.getPluginInterfaceByID(id, false) == null) {
String desc = p.getDescription();
int pos = desc.indexOf("<br");
if (pos > 0) {
desc = desc.substring(0, pos);
}
ci.out.println("\t" + id + ": \t\t" + desc);
}
}
} catch (Throwable e) {
ci.out.println("Failed to list plugins: " + Debug.getNestedExceptionMessage(e));
}
} else {
String target_id = (String) args.get(1);
if (plugin_manager.getPluginInterfaceByID(target_id, false) != null) {
ci.out.println("Plugin '" + target_id + "' already installed");
return;
}
final PluginInstaller installer = plugin_manager.getPluginInstaller();
try {
final StandardPlugin sp = installer.getStandardPlugin(target_id);
if (sp == null) {
ci.out.println("Plugin '" + target_id + "' is unknown");
return;
}
new AEThread2("Plugin Installer") {
@Override
public void run() {
try {
Map<Integer, Object> properties = new HashMap<>();
properties.put(UpdateCheckInstance.PT_UI_STYLE, UpdateCheckInstance.PT_UI_STYLE_NONE);
properties.put(UpdateCheckInstance.PT_UI_DISABLE_ON_SUCCESS_SLIDEY, true);
final AESemaphore sem = new AESemaphore("plugin-install");
final boolean[] restart_required = { false };
UpdateCheckInstance instance = installer.install(new InstallablePlugin[] { sp }, false, properties, new PluginInstallationListener() {
@Override
public void completed() {
ci.out.println("Installation complete");
sem.release();
}
@Override
public void cancelled() {
ci.out.println("Installation cancelled");
sem.release();
}
@Override
public void failed(PluginException e) {
ci.out.println("Installation failed: " + Debug.getNestedExceptionMessage(e));
sem.release();
}
});
instance.addListener(new UpdateCheckInstanceListener() {
@Override
public void cancelled(UpdateCheckInstance instance) {
ci.out.println("Installation cancelled");
}
@Override
public void complete(UpdateCheckInstance instance) {
Update[] updates = instance.getUpdates();
for (final Update update : updates) {
ResourceDownloader[] rds = update.getDownloaders();
for (ResourceDownloader rd : rds) {
rd.addListener(new ResourceDownloaderAdapter() {
@Override
public void reportActivity(ResourceDownloader downloader, String activity) {
ci.out.println("\t" + activity);
}
@Override
public void reportPercentComplete(ResourceDownloader downloader, int percentage) {
ci.out.println("\t" + percentage + "%");
}
});
try {
rd.download();
} catch (Throwable e) {
}
}
if (update.getRestartRequired() != Update.RESTART_REQUIRED_NO) {
restart_required[0] = true;
}
}
}
});
sem.reserve();
if (restart_required[0]) {
ci.out.println("**** Restart required to complete installation ****");
}
} catch (Throwable e) {
ci.out.println("Install failed: " + Debug.getNestedExceptionMessage(e));
}
}
}.start();
} catch (Throwable e) {
ci.out.println("Install failed: " + Debug.getNestedExceptionMessage(e));
}
}
return;
}
// Commands from this point require a plugin ID.
if (args.size() == 1) {
ci.out.println("No plugin ID given.");
ci.out.println();
return;
}
String plugin_id = (String) args.get(1);
PluginInterface plugin = plugin_manager.getPluginInterfaceByID(plugin_id, false);
if (plugin == null) {
ci.out.println("Invalid plugin ID: " + plugin_id);
ci.out.println();
return;
}
if (subcmd.equals("status")) {
ci.out.println("ID : " + plugin.getPluginID());
ci.out.println("Name : " + plugin.getPluginName());
ci.out.println("Version: " + plugin.getPluginVersion());
ci.out.println("Running: " + plugin.getPluginState().isOperational());
ci.out.println("Runs at startup: " + plugin.getPluginState().isLoadedAtStartup());
if (!plugin.getPluginState().isBuiltIn()) {
ci.out.println("Location: " + plugin.getPluginDirectoryName());
}
ci.out.println();
return;
}
if (subcmd.equals("startup")) {
if (args.size() == 2) {
ci.out.println("Need to pass either \"on\" or \"off\"");
ci.out.println();
return;
}
String enabled_mode = (String) args.get(2);
if (enabled_mode.equals("on")) {
plugin.getPluginState().setLoadedAtStartup(true);
} else if (enabled_mode.equals("off")) {
plugin.getPluginState().setLoadedAtStartup(false);
} else {
ci.out.println("Need to pass either \"on\" or \"off\"");
ci.out.println();
return;
}
ci.out.println("Done.");
ci.out.println();
return;
}
if (subcmd.equals("uninstall")) {
PluginInterface pi = plugin_manager.getPluginInterfaceByID(plugin_id, false);
if (pi == null) {
ci.out.println("Plugin '" + plugin_id + "' is not installed");
return;
}
final PluginInstaller installer = plugin_manager.getPluginInstaller();
try {
final StandardPlugin sp = installer.getStandardPlugin(plugin_id);
if (sp == null) {
ci.out.println("Plugin '" + plugin_id + "' is not a standard plugin");
return;
}
final PluginInstaller uninstaller = plugin_manager.getPluginInstaller();
Map<Integer, Object> properties = new HashMap<>();
final AESemaphore sem = new AESemaphore("plugin-uninstall");
UpdateCheckInstance instance = uninstaller.uninstall(new PluginInterface[] { pi }, new PluginInstallationListener() {
@Override
public void completed() {
ci.out.println("Uninstallation complete");
sem.release();
}
@Override
public void cancelled() {
ci.out.println("Uninstallation cancelled");
sem.release();
}
@Override
public void failed(PluginException e) {
ci.out.println("Uninstallation failed: " + Debug.getNestedExceptionMessage(e));
sem.release();
}
}, properties);
instance.addListener(new UpdateCheckInstanceListener() {
@Override
public void cancelled(UpdateCheckInstance instance) {
ci.out.println("InsUninstallationtallation cancelled");
}
@Override
public void complete(UpdateCheckInstance instance) {
Update[] updates = instance.getUpdates();
for (final Update update : updates) {
ResourceDownloader[] rds = update.getDownloaders();
for (ResourceDownloader rd : rds) {
try {
rd.download();
} catch (Throwable e) {
}
}
}
}
});
sem.reserve();
Object obj = properties.get(UpdateCheckInstance.PT_UNINSTALL_RESTART_REQUIRED);
if (obj instanceof Boolean && (Boolean) obj) {
ci.out.println("**** Restart required to complete uninstallation ****");
}
} catch (Throwable e) {
ci.out.println("Uninstall failed: " + Debug.getNestedExceptionMessage(e));
}
}
}
Aggregations