mirror of
https://github.com/rembo10/headphones.git
synced 2026-07-21 16:34:01 +01:00
156 lines
5.3 KiB
Python
156 lines
5.3 KiB
Python
# This file is part of Headphones.
|
|
#
|
|
# Headphones 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.
|
|
#
|
|
# Headphones 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 Headphones. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import urllib
|
|
import urllib2
|
|
import urlparse
|
|
import cookielib
|
|
import json
|
|
import re
|
|
import os
|
|
import time
|
|
import headphones
|
|
|
|
from headphones import logger, notifiers
|
|
|
|
class utorrentclient(object):
|
|
TOKEN_REGEX = "<div id='token' style='display:none;'>([^<>]+)</div>"
|
|
|
|
def __init__(self, base_url = None, username = None, password = None,):
|
|
|
|
host = headphones.UTORRENT_HOST
|
|
if not host.startswith('http'):
|
|
host = 'http://' + host
|
|
|
|
if host.endswith('/'):
|
|
host = host[:-1]
|
|
|
|
if host.endswith('/gui'):
|
|
host = host[:-4]
|
|
|
|
self.base_url = host
|
|
self.username = headphones.UTORRENT_USERNAME
|
|
self.password = headphones.UTORRENT_PASSWORD
|
|
self.opener = self._make_opener('uTorrent', self.base_url, self.username, self.password)
|
|
self.token = self._get_token()
|
|
#TODO refresh token, when necessary
|
|
|
|
def _make_opener(self, realm, base_url, username, password):
|
|
"""uTorrent API need HTTP Basic Auth and cookie support for token verify."""
|
|
auth = urllib2.HTTPBasicAuthHandler()
|
|
auth.add_password(realm=realm,uri=base_url,user=username,passwd=password)
|
|
opener = urllib2.build_opener(auth)
|
|
urllib2.install_opener(opener)
|
|
|
|
cookie_jar = cookielib.CookieJar()
|
|
cookie_handler = urllib2.HTTPCookieProcessor(cookie_jar)
|
|
|
|
handlers = [auth, cookie_handler]
|
|
opener = urllib2.build_opener(*handlers)
|
|
return opener
|
|
|
|
def _get_token(self):
|
|
url = urlparse.urljoin(self.base_url, 'gui/token.html')
|
|
try:
|
|
response = self.opener.open(url)
|
|
except urllib2.HTTPError as err:
|
|
logger.debug('URL: ' + str(url))
|
|
logger.debug('Error getting Token. uTorrent responded with error: ' + str(err))
|
|
match = re.search(utorrentclient.TOKEN_REGEX, response.read())
|
|
return match.group(1)
|
|
|
|
def list(self, **kwargs):
|
|
params = [('list', '1')]
|
|
params += kwargs.items()
|
|
return self._action(params)
|
|
|
|
def add_url(self, url):
|
|
#can recieve magnet or normal .torrent link
|
|
params = [('action', 'add-url'), ('s', url)]
|
|
return self._action(params)
|
|
|
|
def start(self, *hashes):
|
|
params = [('action', 'start'), ]
|
|
for hash in hashes:
|
|
params.append(('hash', hash))
|
|
return self._action(params)
|
|
|
|
def stop(self, *hashes):
|
|
params = [('action', 'stop'), ]
|
|
for hash in hashes:
|
|
params.append(('hash', hash))
|
|
return self._action(params)
|
|
|
|
def pause(self, *hashes):
|
|
params = [('action', 'pause'), ]
|
|
for hash in hashes:
|
|
params.append(('hash', hash))
|
|
return self._action(params)
|
|
|
|
def forcestart(self, *hashes):
|
|
params = [('action', 'forcestart'), ]
|
|
for hash in hashes:
|
|
params.append(('hash', hash))
|
|
return self._action(params)
|
|
|
|
def getfiles(self, hash):
|
|
params = [('action', 'getfiles'), ('hash', hash)]
|
|
return self._action(params)
|
|
|
|
def getprops(self, hash):
|
|
params = [('action', 'getprops'), ('hash', hash)]
|
|
return self._action(params)
|
|
|
|
def setprops(self, hash, s, v):
|
|
params = [('action', 'setprops'), ('hash', hash), ("s", s), ("v", v)]
|
|
return self._action(params)
|
|
|
|
def setprio(self, hash, priority, *files):
|
|
params = [('action', 'setprio'), ('hash', hash), ('p', str(priority))]
|
|
for file_index in files:
|
|
params.append(('f', str(file_index)))
|
|
|
|
return self._action(params)
|
|
|
|
def _action(self, params, body=None, content_type=None):
|
|
url = self.base_url + '/gui/' + '?token=' + self.token + '&' + urllib.urlencode(params)
|
|
request = urllib2.Request(url)
|
|
|
|
if body:
|
|
request.add_data(body)
|
|
request.add_header('Content-length', len(body))
|
|
if content_type:
|
|
request.add_header('Content-type', content_type)
|
|
|
|
try:
|
|
response = self.opener.open(request)
|
|
return response.code, json.loads(response.read())
|
|
except urllib2.HTTPError as err:
|
|
logger.debug('URL: ' + str(url))
|
|
logger.debug('uTorrent webUI raised the following error: ' + str(err))
|
|
|
|
def addTorrent(link, hash):
|
|
|
|
label = headphones.UTORRENT_LABEL
|
|
uTorrentClient = utorrentclient()
|
|
uTorrentClient.add_url(link)
|
|
time.sleep(1) #need to ensure file is loaded uTorrent...
|
|
uTorrentClient.setprops(hash,'label', label)
|
|
torrentList = uTorrentClient.list()
|
|
for torrent in torrentList[1].get('torrents'):
|
|
if (torrent[0].lower()==hash):
|
|
return torrent[26]
|
|
|
|
return False |