mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-05 08:55:01 -05:00
f1d46a54ce
In use in nyaatorrents.py: E.g.: Kuroko's Basketball
133 lines
4.2 KiB
Python
133 lines
4.2 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.urls = {'base_url': 'http://www.nyaa.se/'}
|
|
|
|
self.url = self.urls['base_url']
|
|
|
|
def isEnabled(self):
|
|
return self.enabled
|
|
|
|
def imageName(self):
|
|
return 'nyaatorrents.png'
|
|
|
|
def getQuality(self, item, anime=False):
|
|
title = item.get('title')
|
|
quality = Quality.sceneQuality(title, anime)
|
|
return quality
|
|
|
|
def findSearchResults(self, show, episodes, search_mode, manualSearch=False):
|
|
return generic.TorrentProvider.findSearchResults(self, show, episodes, search_mode, manualSearch)
|
|
|
|
def _get_season_search_strings(self, ep_obj):
|
|
return show_name_helpers.makeSceneShowSearchStrings(self.show, anime=True)
|
|
|
|
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)
|
|
|
|
results = []
|
|
for curItem in self.cache.getRSSFeed(searchURL, items=['entries'])['entries'] or []:
|
|
(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
|
|
|
|
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)
|
|
|
|
return self.getRSSFeed(url)
|
|
|
|
provider = NyaaProvider()
|