mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
deda4bc65a
Simplify request responses within torrent clients. There is no need to pass the response through the parent class when dealing with requests. In many places this makes the code more readable and simplifies logic.
134 lines
4.2 KiB
Python
134 lines
4.2 KiB
Python
# Authors: Mr_Orange <mr_orange@hotmail.it>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of SickGear.
|
|
#
|
|
# SickGear 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 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# SickGear 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 SickGear. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import re
|
|
|
|
import sickbeard
|
|
from sickbeard import logger
|
|
from sickbeard.clients.generic import GenericClient
|
|
import urllib
|
|
|
|
|
|
class uTorrentAPI(GenericClient):
|
|
def __init__(self, host=None, username=None, password=None):
|
|
|
|
super(uTorrentAPI, self).__init__('uTorrent', host, username, password)
|
|
|
|
self.url = self.host + 'gui/'
|
|
|
|
def _request(self, method='get', params={}, files=None):
|
|
|
|
return super(uTorrentAPI, self)._request(
|
|
method=method,
|
|
params='token={0:s}&{1:s}'.format(self.auth, '&'.join(
|
|
['%s' % urllib.urlencode(dict([[key, str(value)]])) for key, value in params.iteritems()])) if any(params) else params,
|
|
files=files)
|
|
|
|
def _get_auth(self):
|
|
|
|
try:
|
|
response = self.session.get(self.url + 'token.html', verify=False)
|
|
self.auth = re.findall('<div.*?>(.*?)</', response.text)[0]
|
|
return self.auth if not response.status_code == 404 else None
|
|
except:
|
|
return None
|
|
|
|
def _add_torrent_uri(self, result):
|
|
|
|
params = {'action': 'add-url', 's': result.url}
|
|
return self._request(params=params)
|
|
|
|
def _add_torrent_file(self, result):
|
|
|
|
params = {'action': 'add-file'}
|
|
files = {'torrent_file': (result.name + '.torrent', result.content)}
|
|
return self._request(method='post', params=params, files=files)
|
|
|
|
def _set_torrent_label(self, result):
|
|
|
|
params = {'action': 'setprops',
|
|
'hash': result.hash,
|
|
's': 'label',
|
|
'v': sickbeard.TORRENT_LABEL
|
|
}
|
|
return self._request(params=params)
|
|
|
|
def _set_torrent_ratio(self, result):
|
|
|
|
ratio = None
|
|
if result.ratio:
|
|
ratio = result.ratio
|
|
|
|
if ratio:
|
|
params = {'action': 'setprops',
|
|
'hash': result.hash,
|
|
's': 'seed_override',
|
|
'v': '1'
|
|
}
|
|
if self._request(params=params):
|
|
params = {'action': 'setprops',
|
|
'hash': result.hash,
|
|
's': 'seed_ratio',
|
|
'v': float(ratio) * 10
|
|
}
|
|
return self._request(params=params)
|
|
else:
|
|
return False
|
|
|
|
return True
|
|
|
|
def _set_torrent_seed_time(self, result):
|
|
|
|
if sickbeard.TORRENT_SEED_TIME:
|
|
time = 3600 * float(sickbeard.TORRENT_SEED_TIME)
|
|
params = {'action': 'setprops',
|
|
'hash': result.hash,
|
|
's': 'seed_override',
|
|
'v': '1'
|
|
}
|
|
if self._request(params=params):
|
|
params = {'action': 'setprops',
|
|
'hash': result.hash,
|
|
's': 'seed_time',
|
|
'v': time
|
|
}
|
|
return self._request(params=params)
|
|
else:
|
|
return False
|
|
else:
|
|
return True
|
|
|
|
def _set_torrent_priority(self, result):
|
|
|
|
if result.priority == 1:
|
|
params = {'action': 'queuetop', 'hash': result.hash}
|
|
return self._request(params=params)
|
|
else:
|
|
return True
|
|
|
|
def _set_torrent_pause(self, result):
|
|
|
|
if sickbeard.TORRENT_PAUSED:
|
|
params = {'action': 'pause', 'hash': result.hash}
|
|
else:
|
|
params = {'action': 'start', 'hash': result.hash}
|
|
|
|
return self._request(params=params)
|
|
|
|
|
|
api = uTorrentAPI()
|