mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-13 04:45:08 -05:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
142 lines
4.4 KiB
Python
142 lines
4.4 KiB
Python
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# 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/>.
|
|
|
|
__all__ = ['ezrss',
|
|
'tvtorrents',
|
|
'womble',
|
|
'btn',
|
|
'thepiratebay',
|
|
'kat',
|
|
'publichd',
|
|
'torrentleech',
|
|
'scc',
|
|
'hdtorrents',
|
|
'torrentday',
|
|
'hdbits',
|
|
'iptorrents',
|
|
'omgwtfnzbs',
|
|
'nextgen'
|
|
]
|
|
|
|
import sickbeard
|
|
from sickbeard import logger
|
|
|
|
from os import sys
|
|
|
|
def sortedProviderList():
|
|
|
|
initialList = sickbeard.providerList + sickbeard.newznabProviderList + sickbeard.torrentRssProviderList
|
|
providerDict = dict(zip([x.getID() for x in initialList], initialList))
|
|
|
|
newList = []
|
|
|
|
# add all modules in the priority list, in order
|
|
for curModule in sickbeard.PROVIDER_ORDER:
|
|
if curModule in providerDict:
|
|
newList.append(providerDict[curModule])
|
|
|
|
# add any modules that are missing from that list
|
|
for curModule in providerDict:
|
|
if providerDict[curModule] not in newList:
|
|
newList.append(providerDict[curModule])
|
|
|
|
return newList
|
|
|
|
def makeProviderList():
|
|
|
|
return [x.provider for x in [getProviderModule(y) for y in __all__] if x]
|
|
|
|
def getNewznabProviderList(data):
|
|
|
|
defaultList = [makeNewznabProvider(x) for x in getDefaultNewznabProviders().split('!!!')]
|
|
providerList = filter(lambda x: x, [makeNewznabProvider(x) for x in data.split('!!!')])
|
|
|
|
providerDict = dict(zip([x.name for x in providerList], providerList))
|
|
|
|
for curDefault in defaultList:
|
|
if not curDefault:
|
|
continue
|
|
|
|
if curDefault.name not in providerDict:
|
|
curDefault.default = True
|
|
providerList.append(curDefault)
|
|
else:
|
|
providerDict[curDefault.name].default = True
|
|
providerDict[curDefault.name].name = curDefault.name
|
|
providerDict[curDefault.name].url = curDefault.url
|
|
providerDict[curDefault.name].needs_auth = curDefault.needs_auth
|
|
|
|
return filter(lambda x: x, providerList)
|
|
|
|
|
|
def makeNewznabProvider(configString):
|
|
|
|
if not configString:
|
|
return None
|
|
|
|
try:
|
|
name, url, key, catIDs, enabled = configString.split('|')
|
|
except ValueError:
|
|
logger.log(u"Skipping Newznab provider string: '" + configString + "', incorrect format", logger.ERROR)
|
|
return None
|
|
|
|
newznab = sys.modules['sickbeard.providers.newznab']
|
|
|
|
newProvider = newznab.NewznabProvider(name, url, key=key, catIDs=catIDs)
|
|
newProvider.enabled = enabled == '1'
|
|
|
|
return newProvider
|
|
|
|
def getTorrentRssProviderList(data):
|
|
providerList = filter(lambda x: x, [makeTorrentRssProvider(x) for x in data.split('!!!')])
|
|
return filter(lambda x: x, providerList)
|
|
|
|
def makeTorrentRssProvider(configString):
|
|
|
|
if not configString:
|
|
return None
|
|
|
|
name, url, enabled = configString.split('|')
|
|
|
|
torrentRss = sys.modules['sickbeard.providers.rsstorrent']
|
|
|
|
newProvider = torrentRss.TorrentRssProvider(name, url)
|
|
newProvider.enabled = enabled == '1'
|
|
|
|
return newProvider
|
|
|
|
def getDefaultNewznabProviders():
|
|
return 'Sick Beard Index|http://lolo.sickbeard.com/|0|5030,5040,5060|0!!!NZBs.org|http://nzbs.org/||5030,5040,5060,5070,5090|0!!!Usenet-Crawler|https://www.usenet-crawler.com/||5030,5040,5060|0'
|
|
|
|
def getProviderModule(name):
|
|
name = name.lower()
|
|
prefix = "sickbeard.providers."
|
|
if name in __all__ and prefix+name in sys.modules:
|
|
return sys.modules[prefix+name]
|
|
else:
|
|
raise Exception("Can't find " + prefix+name + " in " + "Providers")
|
|
|
|
def getProviderClass(id):
|
|
|
|
providerMatch = [x for x in sickbeard.providerList + sickbeard.newznabProviderList + sickbeard.torrentRssProviderList if x.getID() == id]
|
|
|
|
if len(providerMatch) != 1:
|
|
return None
|
|
else:
|
|
return providerMatch[0]
|