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.
75 lines
2.6 KiB
Python
75 lines
2.6 KiB
Python
# Authors:
|
|
# Pedro Jose Pereira Vieito <pvieito@gmail.com> (Twitter: @pvieito)
|
|
#
|
|
# URL: https://github.com/mr-orange/Sick-Beard
|
|
#
|
|
# 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/>.
|
|
#
|
|
# Uses the Synology Download Station API: http://download.synology.com/download/Document/DeveloperGuide/Synology_Download_Station_Web_API.pdf
|
|
|
|
import sickbeard
|
|
from sickbeard.clients.generic import GenericClient
|
|
|
|
class DownloadStationAPI(GenericClient):
|
|
|
|
def __init__(self, host=None, username=None, password=None):
|
|
|
|
super(DownloadStationAPI, self).__init__('DownloadStation', host, username, password)
|
|
|
|
self.url = self.host + 'webapi/DownloadStation/task.cgi'
|
|
|
|
def _get_auth(self):
|
|
|
|
auth_url = self.host + 'webapi/auth.cgi?api=SYNO.API.Auth&version=2&method=login&account=' + self.username + '&passwd=' + self.password + '&session=DownloadStation&format=sid'
|
|
|
|
try:
|
|
response = self.session.get(auth_url, verify=False)
|
|
self.auth = response.json()['data']['sid']
|
|
except:
|
|
return None
|
|
|
|
return self.auth
|
|
|
|
def _add_torrent_uri(self, result):
|
|
|
|
data = {'api':'SYNO.DownloadStation.Task',
|
|
'version':'1', 'method':'create',
|
|
'session':'DownloadStation',
|
|
'_sid':self.auth,
|
|
'uri':result.url
|
|
}
|
|
if sickbeard.TORRENT_PATH:
|
|
data['destination'] = sickbeard.TORRENT_PATH
|
|
response = self._request(method='post', data=data)
|
|
|
|
return response.json()['success']
|
|
|
|
def _add_torrent_file(self, result):
|
|
|
|
data = {'api':'SYNO.DownloadStation.Task',
|
|
'version':'1',
|
|
'method':'create',
|
|
'session':'DownloadStation',
|
|
'_sid':self.auth
|
|
}
|
|
if sickbeard.TORRENT_PATH:
|
|
data['destination'] = sickbeard.TORRENT_PATH
|
|
files = {'file':(result.name + '.torrent', result.content)}
|
|
response = self._request(method='post', data=data, files=files)
|
|
|
|
return response.json()['success']
|
|
|
|
api = DownloadStationAPI()
|