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!
145 lines
4.5 KiB
Python
145 lines
4.5 KiB
Python
# Author: Harm van Tilborg <harm@zeroxcool.net>
|
|
# URL: https://github.com/hvt/Sick-Beard/tree/dtt
|
|
#
|
|
# 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 urllib
|
|
import re
|
|
|
|
from xml.dom.minidom import parseString
|
|
|
|
import sickbeard
|
|
import generic
|
|
|
|
from sickbeard.common import Quality
|
|
from sickbeard import logger
|
|
from sickbeard import tvcache
|
|
from sickbeard.helpers import sanitizeSceneName, get_xml_text
|
|
from sickbeard import show_name_helpers
|
|
from sickbeard.exceptions import ex
|
|
|
|
class DTTProvider(generic.TorrentProvider):
|
|
|
|
def __init__(self):
|
|
generic.TorrentProvider.__init__(self, "DailyTvTorrents")
|
|
self.supportsBacklog = True
|
|
self.cache = DTTCache(self)
|
|
self.url = 'http://www.dailytvtorrents.org/'
|
|
|
|
def isEnabled(self):
|
|
return sickbeard.DTT
|
|
|
|
def imageName(self):
|
|
return 'dailytvtorrents.gif'
|
|
|
|
def getQuality(self, item):
|
|
url = item.getElementsByTagName('enclosure')[0].getAttribute('url')
|
|
quality = Quality.sceneQuality(url)
|
|
return quality
|
|
|
|
def findSeasonResults(self, show, season):
|
|
|
|
return generic.TorrentProvider.findSeasonResults(self, show, season)
|
|
|
|
def _dtt_show_id(self, show_name):
|
|
return sanitizeSceneName(show_name).replace('.','-').lower()
|
|
|
|
def _get_season_search_strings(self, show, season, wantedEp, searchSeason=False):
|
|
search_string = []
|
|
|
|
for show_name in set(show_name_helpers.allPossibleShowNames(show)):
|
|
show_string = sanitizeSceneName(show_name).replace('.','-').lower()
|
|
search_string.append(show_string)
|
|
|
|
return search_string
|
|
|
|
def _get_episode_search_strings(self, episode):
|
|
return self._get_season_search_strings(episode.show, episode.season)
|
|
|
|
def _doSearch(self, search_params, show=None):
|
|
|
|
# show_id = self._dtt_show_id(show.name)
|
|
|
|
params = {"items" : "all"}
|
|
|
|
if sickbeard.DTT_NORAR:
|
|
params.update({"norar" : "yes"})
|
|
|
|
if sickbeard.DTT_SINGLE:
|
|
params.update({"single" : "yes"})
|
|
|
|
searchURL = self.url + "rss/show/" + search_params + "?" + urllib.urlencode(params)
|
|
|
|
logger.log(u"Search string: " + searchURL, logger.DEBUG)
|
|
|
|
data = self.getURL(searchURL)
|
|
|
|
if not data:
|
|
return []
|
|
|
|
try:
|
|
parsedXML = parseString(data)
|
|
items = parsedXML.getElementsByTagName('item')
|
|
except Exception, e:
|
|
logger.log(u"Error trying to load DTT RSS feed: "+ex(e), logger.ERROR)
|
|
logger.log(u"RSS data: "+data, logger.DEBUG)
|
|
return []
|
|
|
|
results = []
|
|
|
|
for curItem in items:
|
|
(title, url) = self._get_title_and_url(curItem)
|
|
results.append(curItem)
|
|
|
|
return results
|
|
|
|
def _get_title_and_url(self, item):
|
|
description_node = item.getElementsByTagName('description')[0]
|
|
|
|
title = get_xml_text(description_node).replace('_', '.').split(' (')[0]
|
|
url = item.getElementsByTagName('enclosure')[0].getAttribute('url')
|
|
|
|
return (title, url)
|
|
|
|
class DTTCache(tvcache.TVCache):
|
|
|
|
def __init__(self, provider):
|
|
tvcache.TVCache.__init__(self, provider)
|
|
|
|
# only poll DTT every 30 minutes max
|
|
self.minTime = 30
|
|
|
|
def _getRSSData(self):
|
|
|
|
params = {"items" : "all"}
|
|
|
|
if sickbeard.DTT_NORAR:
|
|
params.update({"norar" : "yes"})
|
|
|
|
if sickbeard.DTT_SINGLE:
|
|
params.update({"single" : "yes"})
|
|
|
|
url = self.provider.url + 'rss/allshows?' + urllib.urlencode(params)
|
|
logger.log(u"DTT cache update URL: "+ url, logger.DEBUG)
|
|
data = self.provider.getURL(url)
|
|
return data
|
|
|
|
def _parseItem(self, item):
|
|
title, url = self.provider._get_title_and_url(item)
|
|
logger.log(u"Adding item from RSS to cache: "+title, logger.DEBUG)
|
|
return self._addCacheEntry(title, url)
|
|
|
|
provider = DTTProvider() |