2008-07-03 14:59:31 +00:00
|
|
|
/*
|
|
|
|
* MIT License
|
2008-09-28 11:57:09 +00:00
|
|
|
* Copyright (c) 2008 Ishan Arora <ishan@qbittorrent.org>,
|
|
|
|
* Christophe Dumez <chris@qbittorrent.org>
|
2008-07-03 14:59:31 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
2008-07-04 07:48:15 +00:00
|
|
|
*/
|
2008-07-03 14:59:31 +00:00
|
|
|
|
2008-05-17 12:44:42 +00:00
|
|
|
window.addEvent('domready', function(){
|
2008-09-27 19:55:56 +00:00
|
|
|
// Tabs
|
|
|
|
myTabs1 = new mootabs('myTabs', {
|
|
|
|
width: '100%',
|
|
|
|
height: '100%'
|
|
|
|
});
|
|
|
|
// Download list
|
2008-09-28 11:57:09 +00:00
|
|
|
myTable = new dynamicTable('myTable', {overCls: 'over', selectCls: 'selected', altCls: 'alt'});
|
|
|
|
myTableUP = new dynamicTable('myTableUP', {overCls: 'over', selectCls: 'selected', altCls: 'alt'});
|
2008-05-17 12:44:42 +00:00
|
|
|
var r=0;
|
|
|
|
var waiting=false;
|
2008-09-28 11:30:24 +00:00
|
|
|
var stateToImg = function(state){
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case 'paused':
|
|
|
|
return '<img src="images/skin/paused.png"/>';
|
|
|
|
case 'seeding':
|
|
|
|
return '<img src="images/skin/seeding.png"/>';
|
|
|
|
case 'checking':
|
|
|
|
return '<img src="images/time.png"/>';
|
|
|
|
case 'downloading':
|
|
|
|
return '<img src="images/skin/downloading.png"/>';
|
|
|
|
case 'connecting':
|
|
|
|
return '<img src="images/skin/connecting.png"/>';
|
|
|
|
case 'stalled':
|
|
|
|
return '<img src="images/skin/stalled.png"/>';
|
|
|
|
case 'queued':
|
|
|
|
return '<img src="images/skin/queued.png"/>';
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
};
|
2008-05-17 12:44:42 +00:00
|
|
|
var round1 = function(val){return Math.round(val*10)/10};
|
|
|
|
var fspeed = function(val){return round1(val/1024) + ' KiB/s';};
|
|
|
|
var fsize = function(val){
|
|
|
|
var units = ['B', 'KiB', 'MiB', 'GiB'];
|
|
|
|
for(var i=0; i<5; i++){
|
|
|
|
if (val < 1024) {
|
|
|
|
return round1(val) + ' ' + units[i];
|
|
|
|
}
|
|
|
|
val /= 1024;
|
|
|
|
}
|
|
|
|
return round1(val) + ' TiB';
|
|
|
|
};
|
|
|
|
var ajaxfn = function(){
|
2008-09-28 11:30:24 +00:00
|
|
|
var url = 'json/events';
|
2008-05-17 12:44:42 +00:00
|
|
|
if (!waiting){
|
|
|
|
waiting=true;
|
2008-09-14 10:14:54 +00:00
|
|
|
var request = new Request.JSON({
|
|
|
|
url: url,
|
2008-05-17 12:44:42 +00:00
|
|
|
method: 'get',
|
2008-09-28 11:30:24 +00:00
|
|
|
onComplete: function(events) {
|
|
|
|
if(events){
|
|
|
|
// Add new torrents or update them
|
|
|
|
unfinished_hashes = myTable.getRowIds();
|
|
|
|
finished_hashes = myTableUP.getRowIds();
|
|
|
|
events_hashes = new Array();
|
|
|
|
events.each(function(event){
|
|
|
|
events_hashes[events_hashes.length] = event.hash;
|
|
|
|
if(event.seed) {
|
|
|
|
var row = new Array();
|
|
|
|
row.length = 4;
|
|
|
|
row[0] = stateToImg(event.state);
|
|
|
|
row[1] = event.name;
|
2008-09-28 10:07:00 +00:00
|
|
|
row[2] = fsize(event.size);
|
2008-09-28 11:30:24 +00:00
|
|
|
row[3] = fspeed(event.upspeed);
|
|
|
|
if(!finished_hashes.contains(event.hash)) {
|
|
|
|
// New finished torrent
|
|
|
|
finished_hashes[finished_hashes.length] = event.hash;
|
2008-09-27 19:55:56 +00:00
|
|
|
myTableUP.insertRow(event.hash, row);
|
2008-09-28 11:30:24 +00:00
|
|
|
if(unfinished_hashes.contains(event.hash)) {
|
|
|
|
// Torrent used to be in unfinished list
|
|
|
|
// Remove it
|
|
|
|
myTable.removeRow(event.hash);
|
|
|
|
unfinished_hashes.erase(event.hash);
|
2008-09-27 20:31:50 +00:00
|
|
|
}
|
|
|
|
} else {
|
2008-09-28 11:30:24 +00:00
|
|
|
// Update torrent data
|
2008-09-27 19:55:56 +00:00
|
|
|
myTableUP.updateRow(event.hash, row);
|
2008-09-27 20:31:50 +00:00
|
|
|
}
|
2008-09-28 11:30:24 +00:00
|
|
|
} else {
|
2008-09-27 19:55:56 +00:00
|
|
|
var row = new Array();
|
2008-09-28 11:30:24 +00:00
|
|
|
row.length = 6;
|
|
|
|
row[0] = stateToImg(event.state);
|
|
|
|
row[1] = event.name;
|
2008-09-27 20:31:50 +00:00
|
|
|
row[2] = fsize(event.size);
|
|
|
|
row[3] = round1(event.progress*100) + ' %';
|
|
|
|
row[4] = fspeed(event.dlspeed);
|
|
|
|
row[5] = fspeed(event.upspeed);
|
2008-09-28 11:30:24 +00:00
|
|
|
if(!unfinished_hashes.contains(event.hash)) {
|
|
|
|
// New unfinished torrent
|
|
|
|
unfinished_hashes[unfinished_hashes.length] = event.hash;
|
|
|
|
myTable.insertRow(event.hash, row);
|
|
|
|
if(finished_hashes.contains(event.hash)) {
|
|
|
|
// Torrent used to be in unfinished list
|
|
|
|
// Remove it
|
|
|
|
myTableUP.removeRow(event.hash);
|
|
|
|
finished_hashes.erase(event.hash);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Update torrent data
|
|
|
|
myTable.updateRow(event.hash, row);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// Remove deleted torrents
|
|
|
|
unfinished_hashes.each(function(hash){
|
|
|
|
if(!events_hashes.contains(hash)) {
|
|
|
|
myTable.removeRow(hash);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
finished_hashes.each(function(hash){
|
|
|
|
if(!events_hashes.contains(hash)) {
|
|
|
|
myTableUP.removeRow(hash);
|
|
|
|
}
|
|
|
|
});
|
2008-05-17 12:44:42 +00:00
|
|
|
}
|
|
|
|
waiting=false;
|
|
|
|
ajaxfn.delay(1000);
|
|
|
|
}
|
|
|
|
}).send();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
ajaxfn();
|
|
|
|
// ajaxfn.periodical(5000);
|
|
|
|
});
|
2008-09-28 16:23:08 +00:00
|
|
|
|
|
|
|
window.addEvent('keydown', function(event){
|
|
|
|
if (event.key == 'a' && event.control) {
|
2008-09-28 16:25:51 +00:00
|
|
|
event.stop();
|
2008-09-28 16:23:08 +00:00
|
|
|
if($("Tab1").hasClass('active')) {
|
|
|
|
myTable.selectAll();
|
|
|
|
} else {
|
|
|
|
myTableUP.selectAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|