mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 03:45:01 -05:00
690e842bb1
Fix for Download Station issues.
78 lines
2.5 KiB
Python
78 lines
2.5 KiB
Python
# Authors: Mr_Orange & Jens Timmerman <jens.timmerman@gmail.com>
|
|
# URL: https://github.com/mr-orange/Sick-Beard
|
|
#
|
|
# This file is part of Sick Beard.
|
|
#
|
|
# Sick Beard 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.
|
|
#
|
|
# Sick Beard 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 Sick Beard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import sickbeard
|
|
from sickbeard import logger
|
|
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):
|
|
|
|
params = {'api': 'SYNO.API.Auth',
|
|
'version': '2',
|
|
'method': 'login',
|
|
'account': self.username,
|
|
'passwd': self.password,
|
|
'session': 'SickBeard',
|
|
'format': 'sid',
|
|
}
|
|
|
|
self.response = self.session.get(self.host + 'webapi/auth.cgi', params=params)
|
|
|
|
if not self.response.json["success"]:
|
|
return None
|
|
|
|
self.auth = self.response.json["data"]["sid"]
|
|
|
|
return self.auth
|
|
|
|
def _add_torrent_uri(self, result):
|
|
|
|
params = {'api': 'SYNO.DownloadStation.Task',
|
|
'version': '1',
|
|
'method': 'create',
|
|
'_sid': self.auth,
|
|
'uri': result.url,
|
|
}
|
|
|
|
self._request(method='get', params=params)
|
|
|
|
return self.response.json["success"]
|
|
|
|
def _add_torrent_file(self, result):
|
|
|
|
params = {'api': 'SYNO.DownloadStation.Task',
|
|
'version': '1',
|
|
'method': 'create',
|
|
'_sid': self.auth,
|
|
'file': 'tv.torrent',
|
|
}
|
|
|
|
self._request(method='get', params=params, files={'file': result.content})
|
|
|
|
return self.response.json["success"]
|
|
|
|
api = DownloadStationAPI() |