mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 11:55:03 -05:00
ee458bd211
Show root dirs can not be set from general config menu. Mass editing shows now has the ability to delete root dirs as well as edit them. Daily search no longer is restricted to just 1 week of results for searching from which now allows for replacing lower quality downloads with higher quality ones if available. RSS Cache is updated for each provider on demand now when performing manual, failed, backlog, or daily searches.
149 lines
4.4 KiB
Python
149 lines
4.4 KiB
Python
# Author: Mr_Orange
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of SickRage.
|
|
#
|
|
# SickRage 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.
|
|
#
|
|
# SickRage 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 SickRage. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import urllib
|
|
import re
|
|
|
|
import sickbeard
|
|
import generic
|
|
|
|
from sickbeard import show_name_helpers
|
|
from sickbeard import logger
|
|
from sickbeard.common import Quality
|
|
from sickbeard import tvcache
|
|
from sickbeard import show_name_helpers
|
|
|
|
|
|
class NyaaProvider(generic.TorrentProvider):
|
|
def __init__(self):
|
|
|
|
generic.TorrentProvider.__init__(self, "NyaaTorrents")
|
|
|
|
self.supportsBacklog = True
|
|
self.supportsAbsoluteNumbering = True
|
|
self.anime_only = True
|
|
self.enabled = False
|
|
self.ratio = None
|
|
|
|
self.cache = NyaaCache(self)
|
|
|
|
self.url = 'http://www.nyaa.se/'
|
|
|
|
def isEnabled(self):
|
|
return self.enabled
|
|
|
|
def imageName(self):
|
|
return 'nyaatorrents.png'
|
|
|
|
def getQuality(self, item, anime=False):
|
|
title = item.title
|
|
quality = Quality.sceneQuality(title)
|
|
return quality
|
|
|
|
def findSearchResults(self, show, season, episodes, search_mode, manualSearch=False):
|
|
return generic.TorrentProvider.findSearchResults(self, show, season, episodes, search_mode, manualSearch)
|
|
|
|
def _get_season_search_strings(self, ep_obj):
|
|
return show_name_helpers.makeSceneShowSearchStrings(self.show)
|
|
|
|
def _get_episode_search_strings(self, ep_obj, add_string=''):
|
|
return self._get_season_search_strings(ep_obj)
|
|
|
|
def _doSearch(self, search_string, search_mode='eponly', epcount=0, age=0):
|
|
if self.show and not self.show.is_anime:
|
|
logger.log(u"" + str(self.show.name) + " is not an anime skiping " + str(self.name))
|
|
return []
|
|
|
|
params = {
|
|
"term": search_string.encode('utf-8'),
|
|
"cats": '1_37', # Limit to English-translated Anime (for now)
|
|
"sort": '2', # Sort Descending By Seeders
|
|
}
|
|
|
|
searchURL = self.url + '?page=rss&' + urllib.urlencode(params)
|
|
|
|
logger.log(u"Search string: " + searchURL, logger.DEBUG)
|
|
|
|
data = self.cache.getRSSFeed(searchURL)
|
|
if not data:
|
|
return []
|
|
|
|
if 'entries' in data:
|
|
items = data.entries
|
|
|
|
results = []
|
|
|
|
for curItem in items:
|
|
|
|
(title, url) = self._get_title_and_url(curItem)
|
|
|
|
if title and url:
|
|
results.append(curItem)
|
|
else:
|
|
logger.log(
|
|
u"The data returned from the " + self.name + " is incomplete, this result is unusable",
|
|
logger.DEBUG)
|
|
|
|
return results
|
|
|
|
return []
|
|
|
|
def _get_title_and_url(self, item):
|
|
|
|
return generic.TorrentProvider._get_title_and_url(self, item)
|
|
|
|
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 NyaaCache(tvcache.TVCache):
|
|
def __init__(self, provider):
|
|
tvcache.TVCache.__init__(self, provider)
|
|
|
|
# only poll NyaaTorrents every 15 minutes max
|
|
self.minTime = 15
|
|
|
|
def _getRSSData(self):
|
|
params = {
|
|
"page": 'rss', # Use RSS page
|
|
"order": '1', # Sort Descending By Date
|
|
"cats": '1_37', # Limit to English-translated Anime (for now)
|
|
}
|
|
|
|
url = self.provider.url + '?' + urllib.urlencode(params)
|
|
|
|
logger.log(u"NyaaTorrents cache update URL: " + url, logger.DEBUG)
|
|
|
|
data = self.getRSSFeed(url)
|
|
|
|
if data and 'entries' in data:
|
|
return data.entries
|
|
else:
|
|
return []
|
|
|
|
|
|
provider = NyaaProvider()
|