mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 03:45:01 -05:00
e96035ff4f
Search mode allows you to choose season packs only or episodes only which controls how backlogs search for data. Search fallback if selected will attempt a 2nd search this time using the alternative search mode to see if it can get results if the previous attempt failed. Provider settings are now read and stored dynamically instead of always having to retrieve them by there static names, this will allow for dropping in new provider modules easier to intergrate with existing options already present. Fixed search code to not perform dupe searches by mistake. Cache stores a list of shows we have rejected so that next time around we don't have to process them to know we don't like em.
199 lines
5.7 KiB
Python
199 lines
5.7 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/>.
|
|
|
|
import urllib
|
|
import re
|
|
|
|
try:
|
|
import xml.etree.cElementTree as etree
|
|
except ImportError:
|
|
import elementtree.ElementTree as etree
|
|
|
|
import sickbeard
|
|
import generic
|
|
|
|
from sickbeard.common import Quality
|
|
from sickbeard import logger
|
|
from sickbeard import tvcache
|
|
from sickbeard import helpers
|
|
|
|
|
|
class EZRSSProvider(generic.TorrentProvider):
|
|
def __init__(self):
|
|
|
|
generic.TorrentProvider.__init__(self, "EZRSS")
|
|
|
|
self.supportsBacklog = True
|
|
|
|
self.enabled = False
|
|
self.ratio = None
|
|
|
|
self.cache = EZRSSCache(self)
|
|
|
|
self.url = 'https://www.ezrss.it/'
|
|
|
|
def isEnabled(self):
|
|
return self.enabled
|
|
|
|
def imageName(self):
|
|
return 'ezrss.png'
|
|
|
|
def getQuality(self, item):
|
|
|
|
filename = item.filename
|
|
quality = Quality.nameQuality(filename)
|
|
|
|
return quality
|
|
|
|
def findSearchResults(self, show, season, episodes, search_mode, manualSearch=False):
|
|
|
|
self.show = show
|
|
|
|
results = {}
|
|
|
|
if show.air_by_date or show.sports:
|
|
logger.log(self.name + u" doesn't support air-by-date or sports backloging because of limitations on their RSS search.",
|
|
logger.WARNING)
|
|
return results
|
|
|
|
results = generic.TorrentProvider.findSearchResults(self, show, season, episodes, search_mode, manualSearch)
|
|
|
|
return results
|
|
|
|
def _get_season_search_strings(self, ep_obj):
|
|
|
|
params = {}
|
|
|
|
params['show_name'] = helpers.sanitizeSceneName(self.show.name, ezrss=True).replace('.', ' ').encode('utf-8')
|
|
|
|
if ep_obj.show.air_by_date or ep_obj.show.sports:
|
|
params['season'] = str(ep_obj.airdate)[:7]
|
|
else:
|
|
params['season'] = ep_obj.scene_season
|
|
|
|
return [params]
|
|
|
|
def _get_episode_search_strings(self, ep_obj, add_string=''):
|
|
|
|
params = {}
|
|
|
|
if not ep_obj:
|
|
return params
|
|
|
|
params['show_name'] = helpers.sanitizeSceneName(self.show.name, ezrss=True).replace('.', ' ').encode('utf-8')
|
|
|
|
if self.show.air_by_date:
|
|
params['date'] = str(ep_obj.airdate)
|
|
if self.show.sports:
|
|
params['date'] = str(ep_obj.airdate)
|
|
else:
|
|
params['season'] = ep_obj.scene_season
|
|
params['episode'] = ep_obj.scene_episode
|
|
|
|
return [params]
|
|
|
|
def _doSearch(self, search_params, epcount=0, age=0):
|
|
|
|
params = {"mode": "rss"}
|
|
|
|
if search_params:
|
|
params.update(search_params)
|
|
|
|
search_url = self.url + 'search/index.php?' + urllib.urlencode(params)
|
|
|
|
logger.log(u"Search string: " + search_url, logger.DEBUG)
|
|
|
|
data = self.cache.getRSSFeed(search_url)
|
|
|
|
if not data:
|
|
return []
|
|
|
|
items = data.entries
|
|
|
|
results = []
|
|
for curItem in items:
|
|
|
|
(title, url) = self._get_title_and_url(curItem)
|
|
|
|
if title and url:
|
|
logger.log(u"RSS Feed provider: [" + self.name + "] Attempting to add item to cache: " + title, logger.DEBUG)
|
|
results.append(curItem)
|
|
else:
|
|
logger.log(
|
|
u"The XML returned from the " + self.name + " RSS feed is incomplete, this result is unusable",
|
|
logger.ERROR)
|
|
|
|
return results
|
|
|
|
def _get_title_and_url(self, item):
|
|
(title, url) = generic.TorrentProvider._get_title_and_url(self, item)
|
|
|
|
filename = item.filename
|
|
if filename:
|
|
new_title = self._extract_name_from_filename(filename)
|
|
if new_title:
|
|
title = new_title
|
|
logger.log(u"Extracted the name " + title + " from the torrent link", logger.DEBUG)
|
|
|
|
return (title, url)
|
|
|
|
def _extract_name_from_filename(self, filename):
|
|
name_regex = '(.*?)\.?(\[.*]|\d+\.TPB)\.torrent$'
|
|
logger.log(u"Comparing " + name_regex + " against " + filename, logger.DEBUG)
|
|
match = re.match(name_regex, filename, re.I)
|
|
if match:
|
|
return match.group(1)
|
|
return None
|
|
|
|
def seedRatio(self):
|
|
return self.ratio
|
|
|
|
|
|
class EZRSSCache(tvcache.TVCache):
|
|
def __init__(self, provider):
|
|
|
|
tvcache.TVCache.__init__(self, provider)
|
|
|
|
# only poll EZRSS every 15 minutes max
|
|
self.minTime = 15
|
|
|
|
def _getRSSData(self):
|
|
|
|
rss_url = self.provider.url + 'feed/'
|
|
logger.log(self.provider.name + " cache update URL: " + rss_url, logger.DEBUG)
|
|
|
|
return self.getRSSFeed(rss_url)
|
|
|
|
def _parseItem(self, item):
|
|
|
|
(title, url) = self.provider._get_title_and_url(item)
|
|
|
|
if title and url:
|
|
logger.log(u"RSS Feed provider: [" + self.provider.name + "] Attempting to add item to cache: " + title, logger.DEBUG)
|
|
url = self._translateLinkURL(url)
|
|
return self._addCacheEntry(title, url)
|
|
|
|
else:
|
|
logger.log(
|
|
u"The XML returned from the " + self.provider.name + " feed is incomplete, this result is unusable",
|
|
logger.ERROR)
|
|
return None
|
|
|
|
|
|
provider = EZRSSProvider()
|