mirror of
https://github.com/rembo10/headphones.git
synced 2026-07-22 08:53:59 +01:00
Debug logging
This commit is contained in:
@@ -37,7 +37,7 @@ def addTorrent(link, title):
|
|||||||
password = headphones.UTORRENT_PASSWORD
|
password = headphones.UTORRENT_PASSWORD
|
||||||
label = headphones.UTORRENT_LABEL
|
label = headphones.UTORRENT_LABEL
|
||||||
token = ''
|
token = ''
|
||||||
|
logger.info("2")
|
||||||
if not host.startswith('http'):
|
if not host.startswith('http'):
|
||||||
host = 'http://' + host
|
host = 'http://' + host
|
||||||
|
|
||||||
@@ -52,18 +52,22 @@ def addTorrent(link, title):
|
|||||||
# Retrieve session id
|
# Retrieve session id
|
||||||
auth = (username, password) if username and password else None
|
auth = (username, password) if username and password else None
|
||||||
token_request = request.request_response(host + 'token.html', auth=auth)
|
token_request = request.request_response(host + 'token.html', auth=auth)
|
||||||
|
logger.info("3")
|
||||||
token = re.findall('<div.*?>(.*?)</', token_request.content)[0]
|
token = re.findall('<div.*?>(.*?)</', token_request.content)[0]
|
||||||
guid = token_request.cookies['GUID']
|
guid = token_request.cookies['GUID']
|
||||||
|
logger.info("4")
|
||||||
cookies = dict(GUID = guid)
|
cookies = dict(GUID = guid)
|
||||||
|
logger.info("5")
|
||||||
|
|
||||||
if link.startswith("magnet") or link.startswith("http") or link.endswith(".torrent"):
|
if link.startswith("magnet") or link.startswith("http") or link.endswith(".torrent"):
|
||||||
|
logger.info("Adding link")
|
||||||
params = {'action':'add-url', 's':link, 'token':token}
|
params = {'action':'add-url', 's':link, 'token':token}
|
||||||
response = request.request_json(host, params=params, auth=auth, cookies=cookies)
|
response = request.request_json(host, params=params, auth=auth, cookies=cookies)
|
||||||
else:
|
else:
|
||||||
method = "post"
|
logger.info("adding file")
|
||||||
params = {'action':'add-file', 'token':token}
|
params = {'action':'add-file', 'token':token}
|
||||||
files = {'torrent_file':{'music.torrent', link}}
|
files = {'torrent_file':{'music.torrent', link}}
|
||||||
response = request.request_json(host, method=method, params=params, files=files, auth=auth, cookies=cookies)
|
response = request.request_json(host, method="post", params=params, files=files, auth=auth, cookies=cookies)
|
||||||
if not response:
|
if not response:
|
||||||
logger.error("Error sending torrent to uTorrent")
|
logger.error("Error sending torrent to uTorrent")
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user