2014-03-10 01:18:05 -04:00
|
|
|
# Author: Mr_Orange
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# This file is part of SickRage.
|
2014-03-10 01:18:05 -04:00
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# SickRage is free software: you can redistribute it and/or modify
|
2014-03-10 01:18:05 -04:00
|
|
|
# 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.
|
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# SickRage is distributed in the hope that it will be useful,
|
2014-03-10 01:18:05 -04:00
|
|
|
# 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
|
2014-05-23 08:37:22 -04:00
|
|
|
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
import urllib
|
|
|
|
import re
|
2014-05-07 03:50:49 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
import sickbeard
|
|
|
|
import generic
|
|
|
|
|
2014-04-25 21:49:38 -04:00
|
|
|
from sickbeard import show_name_helpers
|
2014-03-10 01:18:05 -04:00
|
|
|
from sickbeard import logger
|
|
|
|
from sickbeard.common import Quality
|
|
|
|
from sickbeard import tvcache
|
2014-05-07 03:50:49 -04:00
|
|
|
from sickbeard import show_name_helpers
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
REMOTE_DBG = False
|
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
class NyaaProvider(generic.TorrentProvider):
|
2014-03-10 01:18:05 -04:00
|
|
|
def __init__(self):
|
|
|
|
|
|
|
|
generic.TorrentProvider.__init__(self, "NyaaTorrents")
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
self.supportsBacklog = True
|
|
|
|
self.supportsAbsoluteNumbering = True
|
2014-05-27 03:44:23 -04:00
|
|
|
self.anime_only = True
|
2014-05-17 01:23:11 -04:00
|
|
|
self.enabled = False
|
2014-05-26 02:29:22 -04:00
|
|
|
self.ratio = None
|
2014-05-17 01:23:11 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
self.cache = NyaaCache(self)
|
|
|
|
|
2014-05-26 02:29:22 -04:00
|
|
|
self.url = 'http://www.nyaa.se/'
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def isEnabled(self):
|
2014-05-17 01:23:11 -04:00
|
|
|
return self.enabled
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
def imageName(self):
|
|
|
|
return 'nyaatorrents.png'
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
def getQuality(self, item, anime=False):
|
2014-04-25 21:49:38 -04:00
|
|
|
title = item.title
|
2014-04-22 04:02:43 -04:00
|
|
|
quality = Quality.sceneQuality(title)
|
2014-03-25 01:57:24 -04:00
|
|
|
return quality
|
|
|
|
|
2014-05-17 01:23:11 -04:00
|
|
|
def findSearchResults(self, show, season, episodes, search_mode, manualSearch=False):
|
|
|
|
return generic.TorrentProvider.findSearchResults(self, show, season, episodes, search_mode, manualSearch)
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-04-30 09:49:50 -04:00
|
|
|
def _get_season_search_strings(self, ep_obj):
|
2014-05-27 03:44:23 -04:00
|
|
|
return show_name_helpers.makeSceneShowSearchStrings(self.show)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-04-30 09:49:50 -04:00
|
|
|
def _get_episode_search_strings(self, ep_obj, add_string=''):
|
|
|
|
return self._get_season_search_strings(ep_obj)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-04-05 07:34:49 -04:00
|
|
|
def _doSearch(self, search_string, show=None, age=None):
|
2014-05-26 02:29:22 -04:00
|
|
|
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 []
|
2014-03-25 01:57:24 -04:00
|
|
|
|
|
|
|
params = {"term": search_string.encode('utf-8'),
|
2014-06-01 18:05:07 -04:00
|
|
|
"cats": '1_37', #Limit to English-translated Anime (for now)
|
2014-03-25 01:57:24 -04:00
|
|
|
"sort": '2', #Sort Descending By Seeders
|
|
|
|
}
|
|
|
|
|
|
|
|
searchURL = self.url + '?page=rss&' + urllib.urlencode(params)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
logger.log(u"Search string: " + searchURL, logger.DEBUG)
|
|
|
|
|
2014-04-25 21:49:38 -04:00
|
|
|
|
2014-05-26 02:29:22 -04:00
|
|
|
data = self.cache.getRSSFeed(searchURL)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
if not data:
|
2014-04-25 21:49:38 -04:00
|
|
|
logger.log(u"Error trying to load NyaaTorrents RSS feed: " + searchURL, logger.ERROR)
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(u"RSS data: " + data, logger.DEBUG)
|
2014-03-10 01:18:05 -04:00
|
|
|
return []
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-04-25 21:49:38 -04:00
|
|
|
items = data.entries
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
results = []
|
|
|
|
|
|
|
|
for curItem in items:
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
(title, url) = self._get_title_and_url(curItem)
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
if not title or not url:
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(
|
|
|
|
u"The XML returned from the NyaaTorrents RSS feed is incomplete, this result is unusable: " + data,
|
|
|
|
logger.ERROR)
|
2014-03-10 01:18:05 -04:00
|
|
|
continue
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
results.append(curItem)
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
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$'
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(u"Comparing " + name_regex + " against " + filename, logger.DEBUG)
|
2014-03-10 01:18:05 -04:00
|
|
|
match = re.match(name_regex, filename, re.I)
|
|
|
|
if match:
|
|
|
|
return match.group(1)
|
|
|
|
return None
|
|
|
|
|
2014-05-26 02:29:22 -04:00
|
|
|
def seedRatio(self):
|
|
|
|
return self.ratio
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
class NyaaCache(tvcache.TVCache):
|
2014-03-10 01:18:05 -04:00
|
|
|
def __init__(self, provider):
|
|
|
|
tvcache.TVCache.__init__(self, provider)
|
|
|
|
|
|
|
|
# only poll NyaaTorrents every 15 minutes max
|
|
|
|
self.minTime = 15
|
|
|
|
|
|
|
|
|
|
|
|
def _getRSSData(self):
|
|
|
|
params = {
|
2014-03-25 01:57:24 -04:00
|
|
|
"page": 'rss', # Use RSS page
|
|
|
|
"order": '1' #Sort Descending By Date
|
|
|
|
}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
url = self.provider.url + '?' + urllib.urlencode(params)
|
|
|
|
|
|
|
|
logger.log(u"NyaaTorrents cache update URL: " + url, logger.DEBUG)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-05-04 08:05:27 -04:00
|
|
|
return self.getRSSFeed(url)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def _parseItem(self, item):
|
|
|
|
(title, url) = self.provider._get_title_and_url(item)
|
|
|
|
|
|
|
|
if not title or not url:
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(u"The XML returned from the NyaaTorrents RSS feed is incomplete, this result is unusable",
|
|
|
|
logger.ERROR)
|
2014-03-10 01:18:05 -04:00
|
|
|
return None
|
|
|
|
|
2014-05-07 03:50:49 -04:00
|
|
|
logger.log(u"RSS Feed provider: [" + self.provider.name + "] Attempting to add item to cache: " + title, logger.DEBUG)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
return self._addCacheEntry(title, url)
|
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-06-01 18:05:07 -04:00
|
|
|
provider = NyaaProvider()
|