implement installing plugins via the webui
This commit is contained in:
parent
104852d47e
commit
a126081d2c
|
@ -32,6 +32,80 @@ Copyright:
|
|||
*/
|
||||
|
||||
Ext.namespace('Ext.deluge.preferences');
|
||||
|
||||
Ext.deluge.preferences.InstallPlugin = Ext.extend(Ext.Window, {
|
||||
|
||||
height: 115,
|
||||
width: 350,
|
||||
|
||||
bodyStyle: 'padding: 10px 5px;',
|
||||
|
||||
buttonAlign: 'center',
|
||||
|
||||
closeAction: 'hide',
|
||||
|
||||
iconCls: 'x-deluge-add-file',
|
||||
|
||||
layout: 'fit',
|
||||
|
||||
modal: true,
|
||||
|
||||
plain: true,
|
||||
|
||||
title: _('Install Plugin'),
|
||||
|
||||
initComponent: function() {
|
||||
Ext.deluge.add.FileWindow.superclass.initComponent.call(this);
|
||||
this.addButton(_('Install'), this.onInstall, this);
|
||||
|
||||
this.form = this.add({
|
||||
xtype: 'form',
|
||||
baseCls: 'x-plain',
|
||||
labelWidth: 55,
|
||||
autoHeight: true,
|
||||
fileUpload: true,
|
||||
items: [{
|
||||
xtype: 'fileuploadfield',
|
||||
id: 'pluginEgg',
|
||||
emptyText: _('Select an egg'),
|
||||
fieldLabel: _('Plugin Egg'),
|
||||
name: 'file',
|
||||
buttonCfg: {
|
||||
text: _('Browse') + '...'
|
||||
}
|
||||
}]
|
||||
});
|
||||
},
|
||||
|
||||
onInstall: function(field, e) {
|
||||
this.form.getForm().submit({
|
||||
url: '/upload',
|
||||
waitMsg: _('Uploading your plugin...'),
|
||||
success: this.onUploadSuccess,
|
||||
scope: this
|
||||
});
|
||||
},
|
||||
|
||||
onUploadPlugin: function(info, obj, response, request) {
|
||||
this.fireEvent('pluginadded');
|
||||
},
|
||||
|
||||
onUploadSuccess: function(fp, upload) {
|
||||
this.hide();
|
||||
if (upload.result.success) {
|
||||
var filename = this.form.getForm().findField('pluginEgg').value;
|
||||
var path = upload.result.files[0]
|
||||
this.form.getForm().findField('pluginEgg').setValue('');
|
||||
Deluge.Client.web.upload_plugin(filename, path, {
|
||||
success: this.onUploadPlugin,
|
||||
scope: this,
|
||||
filename: filename
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Ext.deluge.preferences.Plugins = Ext.extend(Ext.Panel, {
|
||||
constructor: function(config) {
|
||||
config = Ext.apply({
|
||||
|
@ -213,6 +287,14 @@ Ext.deluge.preferences.Plugins = Ext.extend(Ext.Panel, {
|
|||
delete info;
|
||||
},
|
||||
|
||||
onInstallPlugin: function() {
|
||||
if (!this.installWindow) {
|
||||
this.installWindow = new Ext.deluge.preferences.InstallPlugin();
|
||||
this.installWindow.on('pluginadded', this.onPluginInstall, this);
|
||||
}
|
||||
this.installWindow.show();
|
||||
},
|
||||
|
||||
onPluginEnabled: function(pluginName) {
|
||||
var index = this.grid.getStore().find('plugin', pluginName);
|
||||
var plugin = this.grid.getStore().getAt(index);
|
||||
|
@ -227,6 +309,10 @@ Ext.deluge.preferences.Plugins = Ext.extend(Ext.Panel, {
|
|||
plugin.commit();
|
||||
},
|
||||
|
||||
onPluginInstall: function() {
|
||||
this.updatePlugins();
|
||||
},
|
||||
|
||||
onPluginSelect: function(selmodel, rowIndex, r) {
|
||||
Deluge.Client.web.get_plugin_info(r.get('plugin'), {
|
||||
success: this.onGotPluginInfo,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -36,7 +36,7 @@
|
|||
import os
|
||||
import time
|
||||
import base64
|
||||
import urllib
|
||||
import shutil
|
||||
import logging
|
||||
import hashlib
|
||||
import tempfile
|
||||
|
@ -828,6 +828,32 @@ class WebApi(JSONComponent):
|
|||
@export
|
||||
def get_plugin_resources(self, name):
|
||||
return component.get("Web.PluginManager").get_plugin_resources(name)
|
||||
|
||||
@export
|
||||
def upload_plugin(self, filename, path):
|
||||
main_deferred = Deferred()
|
||||
|
||||
shutil.copyfile(path, os.path.join(get_config_dir(), "plugins", filename))
|
||||
component.get("Web.PluginManager").scan_for_plugins()
|
||||
|
||||
if client.is_localhost():
|
||||
client.core.rescan_plugins()
|
||||
return True
|
||||
|
||||
plugin_data = base64.encodestring(open(path, "rb").read())
|
||||
|
||||
def on_upload_complete(*args):
|
||||
client.core.rescan_plugins()
|
||||
component.get("Web.PluginManager").scan_for_plugins()
|
||||
main_deferred.callback(True)
|
||||
|
||||
def on_upload_error(*args):
|
||||
main_deferred.callback(False)
|
||||
|
||||
d = client.core.upload_plugin(filename, plugin_data)
|
||||
d.addCallback(on_upload_complete)
|
||||
d.addErrback(on_upload_error)
|
||||
return main_deferred
|
||||
|
||||
@export
|
||||
def register_event_listener(self, event):
|
||||
|
@ -836,7 +862,7 @@ class WebApi(JSONComponent):
|
|||
|
||||
:param event: The event name
|
||||
:type event: string
|
||||
"""
|
||||
"""
|
||||
self.event_queue.add_listener(__request__.session_id, event)
|
||||
|
||||
@export
|
||||
|
@ -846,12 +872,12 @@ class WebApi(JSONComponent):
|
|||
|
||||
:param event: The event name
|
||||
:type event: string
|
||||
"""
|
||||
"""
|
||||
self.event_queue.remove_listener(__request__.session_id, event)
|
||||
|
||||
@export
|
||||
def get_events(self):
|
||||
"""
|
||||
Retrieve the pending events for the session.
|
||||
"""
|
||||
"""
|
||||
return self.event_queue.get_events(__request__.session_id)
|
||||
|
|
|
@ -159,7 +159,10 @@ class Upload(resource.Resource):
|
|||
|
||||
if "file" not in request.args:
|
||||
request.setResponseCode(http.OK)
|
||||
return ""
|
||||
return common.json.dumps({
|
||||
'success': True,
|
||||
'files': []
|
||||
})
|
||||
|
||||
tempdir = os.path.join(tempfile.gettempdir(), "delugeweb")
|
||||
if not os.path.isdir(tempdir):
|
||||
|
|
Loading…
Reference in New Issue