Update deprecated rTorrent commands

This commit is contained in:
zp
2016-07-13 22:18:54 -05:00
parent 5b74b1618a
commit ef98b32d94
3 changed files with 32 additions and 32 deletions
+2 -2
View File
@@ -164,7 +164,7 @@ class ClientRequest {
createDirectoryMethodCall(options) {
this.requests.push(
this.getMethodCall('execute', ['mkdir', '-p', options.path])
this.getMethodCall('execute2', ['mkdir', '-p', options.path])
);
}
@@ -270,7 +270,7 @@ class ClientRequest {
let hashes = this.getEnsuredArray(options.hashes);
hashes.forEach((hash) => {
this.requests.push(this.getMethodCall('d.set_priority',
this.requests.push(this.getMethodCall('d.priority.set',
[hash, options.priority]));
this.requests.push(this.getMethodCall('d.update_priorities',
[hash]));
+26 -26
View File
@@ -134,7 +134,7 @@ var clientUtil = {
'd.custom1=',
'd.custom2=',
'd.custom=sch_ignore', // ignore scheduler
'cat="$t.multicall=d.hash=,t.get_url=,cat={@!@}"',
'cat="$t.multicall=d.hash=,t.url=,cat={@!@}"',
'cat="$t.multicall=d.hash=,t.scrape_complete=,cat={@!@}"', // total seeds
'cat="$t.multicall=d.hash=,t.scrape_incomplete=,cat={@!@}"', // total peers
// 'cat=$d.views=',
@@ -150,11 +150,11 @@ var clientUtil = {
'completedChunks'
],
filePropertyMethods: [
'f.get_path=',
'f.get_path_components=',
'f.get_priority=',
'f.get_size_bytes=',
'f.get_size_chunks=',
'f.path=',
'f.path_components=',
'f.priority=',
'f.size_bytes=',
'f.size_chunks=',
'f.completed_chunks='
],
trackerProperties: [
@@ -166,12 +166,12 @@ var clientUtil = {
'type'
],
trackerPropertyMethods: [
't.get_group=',
't.get_url=',
't.get_id=',
't.get_min_interval=',
't.get_normal_interval=',
't.get_type='
't.group=',
't.url=',
't.id=',
't.min_interval=',
't.normal_interval=',
't.type='
],
clientProperties: [
'uploadRate',
@@ -183,12 +183,12 @@ var clientUtil = {
'downloadThrottle'
],
clientPropertyMethods: [
'get_up_rate',
'get_up_total',
'throttle.global_up.rate',
'throttle.global_up.total',
'throttle.global_up.max_rate',
'get_down_rate',
'get_down_total',
'throttle.global_down.rate',
'throttle.global_down.total',
'throttle.global_down.max_rate'
],
peerProperties: [
@@ -206,16 +206,16 @@ var clientUtil = {
'isIncoming'
],
peerPropertyMethods: [
'p.get_address=',
'p.get_completed_percent=',
'p.get_client_version=',
'p.get_down_rate=',
'p.get_down_total=',
'p.get_up_rate=',
'p.get_up_total=',
'p.get_id=',
'p.get_peer_rate=',
'p.get_peer_total=',
'p.address=',
'p.completed_percent=',
'p.client_version=',
'p.down_rate=',
'p.down_total=',
'p.up_rate=',
'p.up_total=',
'p.id=',
'p.peer_rate=',
'p.peer_total=',
'p.is_encrypted=',
'p.is_incoming='
]
+4 -4
View File
@@ -1,10 +1,10 @@
const rTorrentPropMap = {
transferData: {
uploadRate: 'get_up_rate',
uploadTotal: 'get_up_total',
uploadRate: 'throttle.global_up.rate',
uploadTotal: 'throttle.global_up.total',
uploadThrottle: 'throttle.global_up.max_rate',
downloadRate: 'get_down_rate',
downloadTotal: 'get_down_total',
downloadRate: 'throttle.global_down.rate',
downloadTotal: 'throttle.global_down.total',
downloadThrottle: 'throttle.global_down.max_rate'
}
};