1 /* 2 Script: Deluge.Details.Status.js 3 The status tab displayed in the details panel. 4 5 Copyright: 6 (C) Damien Churchill 2009 <damoxc@gmail.com> 7 This program is free software; you can redistribute it and/or modify 8 it under the terms of the GNU General Public License as published by 9 the Free Software Foundation; either version 3, or (at your option) 10 any later version. 11 12 This program is distributed in the hope that it will be useful, 13 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 GNU General Public License for more details. 16 17 You should have received a copy of the GNU General Public License 18 along with this program. If not, write to: 19 The Free Software Foundation, Inc., 20 51 Franklin Street, Fifth Floor 21 Boston, MA 02110-1301, USA. 22 23 In addition, as a special exception, the copyright holders give 24 permission to link the code of portions of this program with the OpenSSL 25 library. 26 You must obey the GNU General Public License in all respects for all of 27 the code used other than OpenSSL. If you modify file(s) with this 28 exception, you may extend this exception to your version of the file(s), 29 but you are not obligated to do so. If you do not wish to do so, delete 30 this exception statement from your version. If you delete this exception 31 statement from all source files in the program, then also delete it here. 32 */ 33 34 Ext.deluge.details.StatusTab = Ext.extend(Ext.Panel, { 35 title: _('Status'), 36 autoScroll: true, 37 38 onRender: function(ct, position) { 39 Ext.deluge.details.StatusTab.superclass.onRender.call(this, ct, position); 40 41 this.progressBar = this.add({ 42 xtype: 'fullprogressbar', 43 cls: 'x-deluge-status-progressbar' 44 }); 45 46 this.status = this.add({ 47 cls: 'x-deluge-status', 48 id: 'deluge-details-status', 49 50 border: false, 51 width: 1000, 52 listeners: { 53 'render': { 54 fn: function(panel) { 55 panel.load({ 56 url: '/render/tab_status.html', 57 text: _('Loading') + '...' 58 }); 59 panel.getUpdater().on('update', this.onPanelUpdate, this); 60 }, 61 scope: this 62 } 63 } 64 }); 65 }, 66 67 clear: function() { 68 this.progressBar.updateProgress(0, ' '); 69 for (var k in this.fields) { 70 this.fields[k].innerHTML = ''; 71 } 72 }, 73 74 update: function(torrentId) { 75 if (!this.fields) this.getFields(); 76 Deluge.Client.core.get_torrent_status(torrentId, Deluge.Keys.Status, { 77 success: this.onRequestComplete, 78 scope: this 79 }); 80 }, 81 82 onPanelUpdate: function(el, response) { 83 this.fields = {}; 84 Ext.each(Ext.query('dd', this.status.body.dom), function(field) { 85 this.fields[field.className] = field; 86 }, this); 87 }, 88 89 onRequestComplete: function(status) { 90 seeders = status.total_seeds > -1 ? status.num_seeds + ' (' + status.total_seeds + ')' : status.num_seeds 91 peers = status.total_peers > -1 ? status.num_peers + ' (' + status.total_peers + ')' : status.num_peers 92 var data = { 93 downloaded: fsize(status.total_done) + ' (' + fsize(status.total_payload_download) + ')', 94 uploaded: fsize(status.total_uploaded) + ' (' + fsize(status.total_payload_upload) + ')', 95 share: status.ratio.toFixed(3), 96 announce: ftime(status.next_announce), 97 tracker_status: status.tracker_status, 98 downspeed: fspeed(status.download_payload_rate), 99 upspeed: fspeed(status.upload_payload_rate), 100 eta: ftime(status.eta), 101 pieces: status.num_pieces + ' (' + fsize(status.piece_length) + ')', 102 seeders: seeders, 103 peers: peers, 104 avail: status.distributed_copies.toFixed(3), 105 active_time: ftime(status.active_time), 106 seeding_time: ftime(status.seeding_time), 107 seed_rank: status.seed_rank, 108 time_added: fdate(status.time_added) 109 } 110 data.auto_managed = _((status.is_auto_managed) ? 'True' : 'False'); 111 112 for (var field in this.fields) { 113 this.fields[field].innerHTML = data[field]; 114 } 115 var text = status.state + ' ' + status.progress.toFixed(2) + '%'; 116 this.progressBar.updateProgress(status.progress, text); 117 } 118 }); 119 Deluge.Details.add(new Ext.deluge.details.StatusTab()); 120