93 lines
2.4 KiB
JavaScript
93 lines
2.4 KiB
JavaScript
/*
|
|
Script: Deluge.Add.File.js
|
|
Contains the Add Torrent by file window.
|
|
|
|
Copyright:
|
|
(C) Damien Churchill 2009 <damoxc@gmail.com>
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, write to:
|
|
The Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
Ext.deluge.add.FileWindow = Ext.extend(Ext.deluge.add.Window, {
|
|
constructor: function(config) {
|
|
config = Ext.apply({
|
|
layout: 'fit',
|
|
width: 350,
|
|
height: 115,
|
|
bodyStyle: 'padding: 10px 5px;',
|
|
buttonAlign: 'center',
|
|
closeAction: 'hide',
|
|
modal: true,
|
|
plain: true,
|
|
title: _('Add from File'),
|
|
iconCls: 'x-deluge-add-file',
|
|
buttons: [{
|
|
text: _('Add'),
|
|
handler: this.onAdd,
|
|
scope: this
|
|
}]
|
|
}, config);
|
|
Ext.deluge.add.UrlWindow.superclass.constructor.call(this, config);
|
|
},
|
|
|
|
initComponent: function() {
|
|
Ext.deluge.add.UrlWindow.superclass.initComponent.call(this);
|
|
this.form = this.add(new Ext.form.FormPanel({
|
|
baseCls: 'x-plain',
|
|
labelWidth: 55,
|
|
autoHeight: true,
|
|
fileUpload: true,
|
|
items: [{
|
|
xtype: 'fileuploadfield',
|
|
id: 'torrentFile',
|
|
emptyText: _('Select a torrent'),
|
|
fieldLabel: _('File'),
|
|
name: 'file',
|
|
buttonCfg: {
|
|
text: _('Browse') + '...'
|
|
}
|
|
}]
|
|
}));
|
|
},
|
|
|
|
onAdd: function(field, e) {
|
|
if (this.form.getForm().isValid()) {
|
|
this.form.getForm().submit({
|
|
url: '/upload',
|
|
waitMsg: _('Uploading your torrent...'),
|
|
success: this.onUploadSuccess,
|
|
scope: this
|
|
});
|
|
}
|
|
this.fireEvent('beforeadd', null);
|
|
},
|
|
|
|
onUploadSuccess: function(fp, upload) {
|
|
this.hide();
|
|
var filename = upload.result.toString();
|
|
this.form.getForm().findField('torrentFile').setValue('');
|
|
Deluge.Client.web.get_torrent_info(filename, {
|
|
success: this.onGotInfo,
|
|
scope: this,
|
|
filename: filename
|
|
});
|
|
},
|
|
|
|
onGotInfo: function(info, obj, response, request) {
|
|
info['filename'] = request.options.filename;
|
|
this.fireEvent('add', info);
|
|
}
|
|
}); |