2014-04-22 04:02:43 -04:00
|
|
|
# coding=utf-8
|
2014-03-10 01:18:05 -04:00
|
|
|
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# This file is part of SickRage.
|
2014-03-10 01:18:05 -04:00
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# SickRage is free software: you can redistribute it and/or modify
|
2014-03-10 01:18:05 -04:00
|
|
|
# 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.
|
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# SickRage is distributed in the hope that it will be useful,
|
2014-03-10 01:18:05 -04:00
|
|
|
# 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
|
2014-05-23 08:37:22 -04:00
|
|
|
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
from __future__ import with_statement
|
|
|
|
|
|
|
|
import datetime
|
|
|
|
import os
|
|
|
|
import re
|
2014-04-25 21:39:43 -04:00
|
|
|
import urllib
|
2014-04-25 20:03:24 -04:00
|
|
|
import urlparse
|
2014-05-06 17:35:37 -04:00
|
|
|
import time
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
import sickbeard
|
|
|
|
|
2014-04-28 05:15:29 -04:00
|
|
|
from lib import requests
|
|
|
|
from lib.feedparser import feedparser
|
2014-03-10 01:18:05 -04:00
|
|
|
from sickbeard import helpers, classes, logger, db
|
2014-05-17 07:40:26 -04:00
|
|
|
from sickbeard.common import MULTI_EP_RESULT, SEASON_RESULT, cpu_presets
|
2014-03-10 01:18:05 -04:00
|
|
|
from sickbeard import tvcache
|
|
|
|
from sickbeard import encodingKludge as ek
|
|
|
|
from sickbeard.exceptions import ex
|
|
|
|
from lib.hachoir_parser import createParser
|
|
|
|
from sickbeard.name_parser.parser import NameParser, InvalidNameException
|
2014-04-29 09:14:19 -04:00
|
|
|
from sickbeard.common import Quality
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-04-30 18:07:18 -04:00
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
class GenericProvider:
|
2014-03-10 01:18:05 -04:00
|
|
|
NZB = "nzb"
|
|
|
|
TORRENT = "torrent"
|
|
|
|
|
|
|
|
def __init__(self, name):
|
|
|
|
|
|
|
|
# these need to be set in the subclass
|
|
|
|
self.providerType = None
|
|
|
|
self.name = name
|
|
|
|
self.url = ''
|
|
|
|
|
2014-04-29 09:14:19 -04:00
|
|
|
self.show = None
|
2014-05-17 01:23:11 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
self.supportsBacklog = False
|
2014-05-26 02:29:22 -04:00
|
|
|
self.supportsAbsoluteNumbering = False
|
2014-05-27 03:44:23 -04:00
|
|
|
self.anime_only = False
|
2014-05-17 01:23:11 -04:00
|
|
|
|
2014-05-16 05:16:01 -04:00
|
|
|
self.search_mode = None
|
|
|
|
self.search_fallback = False
|
2014-05-18 12:39:30 -04:00
|
|
|
self.backlog_only = False
|
2014-05-27 03:44:23 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
self.cache = tvcache.TVCache(self)
|
|
|
|
|
2014-04-28 05:15:29 -04:00
|
|
|
self.session = requests.session()
|
|
|
|
self.session.verify = False
|
2014-04-30 18:07:18 -04:00
|
|
|
self.session.headers.update({
|
2014-05-01 23:03:44 -04:00
|
|
|
'user-agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'})
|
2014-04-28 05:15:29 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
def getID(self):
|
|
|
|
return GenericProvider.makeID(self.name)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def makeID(name):
|
2014-03-25 01:57:24 -04:00
|
|
|
return re.sub("[^\w\d_]", "_", name.strip().lower())
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def imageName(self):
|
|
|
|
return self.getID() + '.png'
|
|
|
|
|
|
|
|
def _checkAuth(self):
|
|
|
|
return
|
|
|
|
|
|
|
|
def isActive(self):
|
|
|
|
if self.providerType == GenericProvider.NZB and sickbeard.USE_NZBS:
|
|
|
|
return self.isEnabled()
|
|
|
|
elif self.providerType == GenericProvider.TORRENT and sickbeard.USE_TORRENTS:
|
|
|
|
return self.isEnabled()
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def isEnabled(self):
|
|
|
|
"""
|
|
|
|
This should be overridden and should return the config setting eg. sickbeard.MYPROVIDER
|
|
|
|
"""
|
|
|
|
return False
|
|
|
|
|
|
|
|
def getResult(self, episodes):
|
|
|
|
"""
|
|
|
|
Returns a result of the correct type for this provider
|
|
|
|
"""
|
|
|
|
|
|
|
|
if self.providerType == GenericProvider.NZB:
|
|
|
|
result = classes.NZBSearchResult(episodes)
|
|
|
|
elif self.providerType == GenericProvider.TORRENT:
|
|
|
|
result = classes.TorrentSearchResult(episodes)
|
|
|
|
else:
|
|
|
|
result = classes.SearchResult(episodes)
|
2014-03-25 01:57:24 -04:00
|
|
|
|
|
|
|
result.provider = self
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
return result
|
|
|
|
|
2014-04-25 23:42:35 -04:00
|
|
|
def getURL(self, url, post_data=None, headers=None, json=False):
|
2014-03-10 01:18:05 -04:00
|
|
|
"""
|
|
|
|
By default this is just a simple urlopen call but this method should be overridden
|
|
|
|
for providers with special URL requirements (like cookies)
|
|
|
|
"""
|
|
|
|
|
|
|
|
if not headers:
|
|
|
|
headers = []
|
|
|
|
|
2014-04-25 23:42:35 -04:00
|
|
|
data = helpers.getURL(url, post_data, headers, json=json)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
if not data:
|
|
|
|
logger.log(u"Error loading " + self.name + " URL: " + url, logger.ERROR)
|
|
|
|
return None
|
|
|
|
|
|
|
|
return data
|
|
|
|
|
|
|
|
def downloadResult(self, result):
|
|
|
|
"""
|
|
|
|
Save the result to disk.
|
|
|
|
"""
|
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(u"Downloading a result from " + self.name + " at " + result.url)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
data = self.getURL(result.url)
|
|
|
|
|
2014-04-30 09:49:50 -04:00
|
|
|
if data is None:
|
2014-03-10 01:18:05 -04:00
|
|
|
return False
|
|
|
|
|
|
|
|
# use the appropriate watch folder
|
|
|
|
if self.providerType == GenericProvider.NZB:
|
|
|
|
saveDir = sickbeard.NZB_DIR
|
|
|
|
writeMode = 'w'
|
|
|
|
elif self.providerType == GenericProvider.TORRENT:
|
|
|
|
saveDir = sickbeard.TORRENT_DIR
|
|
|
|
writeMode = 'wb'
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
# use the result name as the filename
|
|
|
|
file_name = ek.ek(os.path.join, saveDir, helpers.sanitizeFileName(result.name) + '.' + self.providerType)
|
|
|
|
|
|
|
|
logger.log(u"Saving to " + file_name, logger.DEBUG)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with open(file_name, writeMode) as fileOut:
|
|
|
|
fileOut.write(data)
|
|
|
|
helpers.chmodAsParent(file_name)
|
|
|
|
except EnvironmentError, e:
|
|
|
|
logger.log("Unable to save the file: " + ex(e), logger.ERROR)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# as long as it's a valid download then consider it a successful snatch
|
|
|
|
return self._verify_download(file_name)
|
|
|
|
|
|
|
|
def _verify_download(self, file_name=None):
|
|
|
|
"""
|
|
|
|
Checks the saved file to see if it was actually valid, if not then consider the download a failure.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# primitive verification of torrents, just make sure we didn't get a text file or something
|
|
|
|
if self.providerType == GenericProvider.TORRENT:
|
|
|
|
parser = createParser(file_name)
|
|
|
|
if parser:
|
|
|
|
mime_type = parser._getMimeType()
|
|
|
|
try:
|
|
|
|
parser.stream._input.close()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
if mime_type != 'application/x-bittorrent':
|
|
|
|
logger.log(u"Result is not a valid torrent file", logger.WARNING)
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2014-05-18 08:59:42 -04:00
|
|
|
def searchRSS(self, episodes):
|
|
|
|
return self.cache.findNeededEpisodes(episodes)
|
2014-05-15 00:16:46 -04:00
|
|
|
|
2014-05-26 02:29:22 -04:00
|
|
|
def getQuality(self, item, anime=False):
|
2014-03-10 01:18:05 -04:00
|
|
|
"""
|
|
|
|
Figures out the quality of the given RSS item node
|
|
|
|
|
|
|
|
item: An elementtree.ElementTree element representing the <item> tag of the RSS feed
|
|
|
|
|
|
|
|
Returns a Quality value obtained from the node's data
|
|
|
|
"""
|
2014-03-25 01:57:24 -04:00
|
|
|
(title, url) = self._get_title_and_url(item) # @UnusedVariable
|
2014-05-26 02:29:22 -04:00
|
|
|
quality = Quality.sceneQuality(title, anime)
|
2014-03-10 01:18:05 -04:00
|
|
|
return quality
|
|
|
|
|
2014-05-07 03:50:49 -04:00
|
|
|
def _doSearch(self, search_params, epcount=0, age=0):
|
2014-03-10 01:18:05 -04:00
|
|
|
return []
|
|
|
|
|
2014-04-30 09:49:50 -04:00
|
|
|
def _get_season_search_strings(self, episode):
|
2014-03-10 01:18:05 -04:00
|
|
|
return []
|
|
|
|
|
2014-04-30 09:49:50 -04:00
|
|
|
def _get_episode_search_strings(self, eb_obj, add_string=''):
|
2014-03-10 01:18:05 -04:00
|
|
|
return []
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
def _get_title_and_url(self, item):
|
|
|
|
"""
|
|
|
|
Retrieves the title and URL data from the item XML node
|
|
|
|
|
|
|
|
item: An elementtree.ElementTree element representing the <item> tag of the RSS feed
|
|
|
|
|
|
|
|
Returns: A tuple containing two strings representing title and URL respectively
|
|
|
|
"""
|
2014-05-05 09:26:02 -04:00
|
|
|
|
|
|
|
title = item.title if item.title else None
|
2014-03-10 01:18:05 -04:00
|
|
|
if title:
|
|
|
|
title = title.replace(' ', '.')
|
|
|
|
|
2014-05-05 09:26:02 -04:00
|
|
|
url = item.link if item.link else None
|
2014-03-10 01:18:05 -04:00
|
|
|
if url:
|
|
|
|
url = url.replace('&', '&')
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
return (title, url)
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-05-17 01:23:11 -04:00
|
|
|
def findSearchResults(self, show, season, episodes, search_mode, manualSearch=False):
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-04-30 21:20:53 -04:00
|
|
|
self._checkAuth()
|
|
|
|
self.show = show
|
|
|
|
|
2014-04-27 06:31:54 -04:00
|
|
|
results = {}
|
2014-05-05 09:26:02 -04:00
|
|
|
searchItems = {}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-05-16 01:40:49 -04:00
|
|
|
searched_scene_season = None
|
2014-05-03 05:23:26 -04:00
|
|
|
for epObj in episodes:
|
2014-05-17 13:30:23 -04:00
|
|
|
itemList = []
|
|
|
|
|
2014-05-17 01:23:11 -04:00
|
|
|
if search_mode == 'sponly' and searched_scene_season:
|
2014-05-16 05:16:01 -04:00
|
|
|
if searched_scene_season == epObj.scene_season:
|
2014-05-16 01:40:49 -04:00
|
|
|
continue
|
|
|
|
|
2014-05-16 05:16:01 -04:00
|
|
|
# mark season searched for season pack searches so we can skip later on
|
|
|
|
searched_scene_season = epObj.scene_season
|
|
|
|
|
2014-05-17 01:23:11 -04:00
|
|
|
if search_mode == 'sponly':
|
2014-05-05 09:26:02 -04:00
|
|
|
for curString in self._get_season_search_strings(epObj):
|
2014-05-07 03:50:49 -04:00
|
|
|
itemList += self._doSearch(curString, len(episodes))
|
2014-05-16 01:16:35 -04:00
|
|
|
else:
|
2014-05-30 03:36:47 -04:00
|
|
|
cacheResult = self.cache.searchCache([epObj], manualSearch)
|
|
|
|
if len(cacheResult):
|
|
|
|
results.update({epObj.episode: cacheResult[epObj]})
|
|
|
|
continue
|
|
|
|
|
2014-05-16 01:16:35 -04:00
|
|
|
for curString in self._get_episode_search_strings(epObj):
|
|
|
|
itemList += self._doSearch(curString, len(episodes))
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-05-05 09:26:02 -04:00
|
|
|
# next episode if no search results
|
2014-05-17 14:14:48 -04:00
|
|
|
if not len(itemList):
|
2014-05-05 09:26:02 -04:00
|
|
|
continue
|
2014-05-04 17:20:04 -04:00
|
|
|
|
2014-05-05 09:26:02 -04:00
|
|
|
# remove duplicate items
|
2014-05-16 01:40:49 -04:00
|
|
|
searchItems[epObj] = itemList
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-06-26 00:39:34 -04:00
|
|
|
# if we have cached results return them.
|
2014-05-30 03:36:47 -04:00
|
|
|
if len(results):
|
|
|
|
return results
|
2014-05-12 15:48:47 -04:00
|
|
|
|
2014-05-16 01:40:49 -04:00
|
|
|
for ep_obj in searchItems:
|
|
|
|
for item in searchItems[ep_obj]:
|
2014-05-08 10:03:50 -04:00
|
|
|
|
2014-05-05 09:26:02 -04:00
|
|
|
(title, url) = self._get_title_and_url(item)
|
2014-05-04 08:05:27 -04:00
|
|
|
|
2014-05-05 09:26:02 -04:00
|
|
|
# parse the file name
|
|
|
|
try:
|
2014-05-31 06:35:11 -04:00
|
|
|
myParser = NameParser(False, showObj=show, epObj=ep_obj, convert=True)
|
|
|
|
parse_result = myParser.parse(title)
|
2014-05-05 09:26:02 -04:00
|
|
|
except InvalidNameException:
|
|
|
|
logger.log(u"Unable to parse the filename " + title + " into a valid episode", logger.WARNING)
|
2014-05-03 05:23:26 -04:00
|
|
|
continue
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-06-07 07:06:21 -04:00
|
|
|
quality = parse_result.quality
|
2014-07-06 07:10:25 -04:00
|
|
|
release_group = parse_result.release_group
|
2014-05-26 02:29:22 -04:00
|
|
|
|
2014-05-05 09:26:02 -04:00
|
|
|
if not (self.show.air_by_date or self.show.sports):
|
2014-05-17 01:23:11 -04:00
|
|
|
if search_mode == 'sponly' and len(parse_result.episode_numbers):
|
2014-05-16 05:16:01 -04:00
|
|
|
logger.log(
|
|
|
|
u"This is supposed to be a season pack search but the result " + title + " is not a valid season pack, skipping it",
|
|
|
|
logger.DEBUG)
|
|
|
|
continue
|
|
|
|
|
2014-05-05 09:26:02 -04:00
|
|
|
if not len(parse_result.episode_numbers) and (
|
2014-05-13 15:04:59 -04:00
|
|
|
parse_result.season_number != None and parse_result.season_number != ep_obj.season) or (
|
2014-05-11 15:04:47 -04:00
|
|
|
parse_result.season_number == None and ep_obj.season != 1):
|
2014-05-05 09:26:02 -04:00
|
|
|
logger.log(u"The result " + title + " doesn't seem to be a valid season for season " + str(
|
2014-05-11 15:04:47 -04:00
|
|
|
ep_obj.season) + ", ignoring", logger.DEBUG)
|
2014-05-05 09:26:02 -04:00
|
|
|
continue
|
|
|
|
elif len(parse_result.episode_numbers) and (
|
2014-05-19 09:57:20 -04:00
|
|
|
parse_result.season_number != ep_obj.season or ep_obj.episode not in parse_result.episode_numbers):
|
2014-05-11 15:04:47 -04:00
|
|
|
logger.log(u"Episode " + title + " isn't " + str(ep_obj.season) + "x" + str(
|
|
|
|
ep_obj.episode) + ", skipping it", logger.DEBUG)
|
2014-05-05 09:26:02 -04:00
|
|
|
continue
|
|
|
|
|
|
|
|
# we just use the existing info for normal searches
|
2014-05-19 09:08:16 -04:00
|
|
|
actual_season = ep_obj.season
|
2014-05-05 09:26:02 -04:00
|
|
|
actual_episodes = parse_result.episode_numbers
|
|
|
|
else:
|
|
|
|
if not (parse_result.air_by_date or parse_result.sports):
|
|
|
|
logger.log(
|
|
|
|
u"This is supposed to be a date search but the result " + title + " didn't parse as one, skipping it",
|
|
|
|
logger.DEBUG)
|
|
|
|
continue
|
|
|
|
|
2014-05-13 15:04:59 -04:00
|
|
|
if (parse_result.air_by_date and parse_result.air_date != ep_obj.airdate) or (
|
2014-05-27 03:44:23 -04:00
|
|
|
parse_result.sports and parse_result.sports_event_date != ep_obj.airdate):
|
2014-05-13 15:02:22 -04:00
|
|
|
logger.log("Episode " + title + " didn't air on " + str(ep_obj.airdate) + ", skipping it",
|
|
|
|
logger.DEBUG)
|
|
|
|
continue
|
|
|
|
|
2014-06-26 00:39:34 -04:00
|
|
|
airdate = parse_result.air_date.toordinal() if parse_result.air_date else parse_result.sports_event_date.toordinal()
|
2014-06-21 18:46:59 -04:00
|
|
|
myDB = db.DBConnection()
|
|
|
|
sql_results = myDB.select(
|
|
|
|
"SELECT season, episode FROM tv_episodes WHERE showid = ? AND airdate = ?",
|
2014-06-26 00:39:34 -04:00
|
|
|
[show.indexerid, airdate])
|
2014-05-05 09:26:02 -04:00
|
|
|
|
|
|
|
if len(sql_results) != 1:
|
|
|
|
logger.log(
|
|
|
|
u"Tried to look up the date for the episode " + title + " but the database didn't give proper results, skipping it",
|
|
|
|
logger.WARNING)
|
|
|
|
continue
|
|
|
|
|
|
|
|
actual_season = int(sql_results[0]["season"])
|
|
|
|
actual_episodes = [int(sql_results[0]["episode"])]
|
|
|
|
|
|
|
|
# make sure we want the episode
|
|
|
|
wantEp = True
|
|
|
|
for epNo in actual_episodes:
|
2014-05-07 03:50:49 -04:00
|
|
|
if not show.wantEpisode(actual_season, epNo, quality, manualSearch):
|
2014-05-05 09:26:02 -04:00
|
|
|
wantEp = False
|
|
|
|
break
|
|
|
|
|
|
|
|
if not wantEp:
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(
|
2014-05-13 15:04:59 -04:00
|
|
|
u"Ignoring result " + title + " because we don't want an episode that is " +
|
|
|
|
Quality.qualityStrings[
|
2014-05-05 09:26:02 -04:00
|
|
|
quality], logger.DEBUG)
|
2014-05-08 10:03:50 -04:00
|
|
|
|
2014-04-30 18:07:18 -04:00
|
|
|
continue
|
|
|
|
|
2014-05-05 09:26:02 -04:00
|
|
|
logger.log(u"Found result " + title + " at " + url, logger.DEBUG)
|
|
|
|
|
|
|
|
# make a result object
|
|
|
|
epObj = []
|
|
|
|
for curEp in actual_episodes:
|
|
|
|
epObj.append(show.getEpisode(actual_season, curEp))
|
|
|
|
|
|
|
|
result = self.getResult(epObj)
|
|
|
|
result.url = url
|
|
|
|
result.name = title
|
|
|
|
result.quality = quality
|
2014-07-06 07:10:25 -04:00
|
|
|
result.release_group = release_group
|
2014-05-05 09:26:02 -04:00
|
|
|
result.provider = self
|
|
|
|
result.content = None
|
|
|
|
|
|
|
|
if len(epObj) == 1:
|
|
|
|
epNum = epObj[0].episode
|
|
|
|
logger.log(u"Single episode result.", logger.DEBUG)
|
|
|
|
elif len(epObj) > 1:
|
|
|
|
epNum = MULTI_EP_RESULT
|
|
|
|
logger.log(u"Separating multi-episode result to check for later - result contains episodes: " + str(
|
|
|
|
parse_result.episode_numbers), logger.DEBUG)
|
|
|
|
elif len(epObj) == 0:
|
|
|
|
epNum = SEASON_RESULT
|
|
|
|
logger.log(u"Separating full season result to check for later", logger.DEBUG)
|
|
|
|
|
|
|
|
if not result:
|
2014-05-04 08:05:27 -04:00
|
|
|
continue
|
|
|
|
|
2014-05-05 09:26:02 -04:00
|
|
|
if epNum in results:
|
|
|
|
results[epNum].append(result)
|
|
|
|
else:
|
|
|
|
results[epNum] = [result]
|
2014-05-03 19:26:12 -04:00
|
|
|
|
|
|
|
return results
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def findPropers(self, search_date=None):
|
|
|
|
|
|
|
|
results = self.cache.listPropers(search_date)
|
|
|
|
|
|
|
|
return [classes.Proper(x['name'], x['url'], datetime.datetime.fromtimestamp(x['time'])) for x in results]
|
|
|
|
|
2014-05-08 18:28:28 -04:00
|
|
|
def seedRatio(self):
|
|
|
|
'''
|
|
|
|
Provider should override this value if custom seed ratio enabled
|
|
|
|
It should return the value of the provider seed ratio
|
|
|
|
'''
|
|
|
|
return ''
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
class NZBProvider(GenericProvider):
|
|
|
|
def __init__(self, name):
|
|
|
|
GenericProvider.__init__(self, name)
|
|
|
|
|
|
|
|
self.providerType = GenericProvider.NZB
|
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
class TorrentProvider(GenericProvider):
|
2014-03-10 01:18:05 -04:00
|
|
|
def __init__(self, name):
|
|
|
|
GenericProvider.__init__(self, name)
|
|
|
|
|
2014-07-03 10:07:07 -04:00
|
|
|
self.providerType = GenericProvider.TORRENT
|