2014-03-10 05:18:05 +00:00
|
|
|
# Author: Mr_Orange
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# This file is part of SickGear.
|
2014-03-10 05:18:05 +00:00
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# SickGear is free software: you can redistribute it and/or modify
|
2014-03-10 05:18:05 +00: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-11-12 16:43:14 +00:00
|
|
|
# SickGear is distributed in the hope that it will be useful,
|
2014-03-10 05:18:05 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2014-07-31 09:45:51 +00:00
|
|
|
# GNU General Public License for more details.
|
2014-03-10 05:18:05 +00:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2014-11-12 16:43:14 +00:00
|
|
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
import urllib
|
2014-05-07 07:50:49 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
from . import generic
|
2015-09-18 00:06:34 +00:00
|
|
|
from sickbeard import logger, show_name_helpers, tvcache
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
|
2014-03-25 05:57:24 +00:00
|
|
|
class NyaaProvider(generic.TorrentProvider):
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
def __init__(self):
|
|
|
|
generic.TorrentProvider.__init__(self, 'NyaaTorrents', anime_only=True)
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
self.url = 'http://www.nyaa.se/'
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
self.cache = NyaaCache(self)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
def _search_provider(self, search_string, **kwargs):
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
results = []
|
2014-05-26 06:29:22 +00:00
|
|
|
if self.show and not self.show.is_anime:
|
2015-07-13 09:39:20 +00:00
|
|
|
return results
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
params = {'term': search_string.encode('utf-8'),
|
|
|
|
'cats': '1_37', # Limit to English-translated Anime (for now)
|
|
|
|
# 'sort': '2', # Sort Descending By Seeders
|
|
|
|
}
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
search_url = self.url + '?page=rss&' + urllib.urlencode(params)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
logger.log(u'Search string: ' + search_url, logger.DEBUG)
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
data = self.cache.getRSSFeed(search_url)
|
|
|
|
if data and 'entries' in data:
|
2014-07-24 08:33:38 +00:00
|
|
|
items = data.entries
|
|
|
|
for curItem in items:
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
title, url = self._title_and_url(curItem)
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2014-07-24 08:33:38 +00:00
|
|
|
if title and url:
|
|
|
|
results.append(curItem)
|
|
|
|
else:
|
2015-07-13 09:39:20 +00:00
|
|
|
logger.log(u'The data returned from ' + self.name + ' is incomplete, this result is unusable',
|
|
|
|
logger.DEBUG)
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
return results
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
def find_search_results(self, show, episodes, search_mode, manual_search=False):
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
return generic.TorrentProvider.find_search_results(self, show, episodes, search_mode, manual_search)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
def _season_strings(self, ep_obj, **kwargs):
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
return show_name_helpers.makeSceneShowSearchStrings(self.show)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
def _episode_strings(self, ep_obj, **kwargs):
|
2015-07-13 09:39:20 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
return self._season_strings(ep_obj)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-07-31 09:45:51 +00:00
|
|
|
|
2014-03-25 05:57:24 +00:00
|
|
|
class NyaaCache(tvcache.TVCache):
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
def __init__(self, this_provider):
|
|
|
|
tvcache.TVCache.__init__(self, this_provider)
|
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
self.update_freq = 15 # cache update frequency
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
def _cache_data(self):
|
2015-07-13 09:39:20 +00:00
|
|
|
params = {'page': 'rss', # Use RSS page
|
|
|
|
'order': '1', # Sort Descending By Date
|
|
|
|
'cats': '1_37'} # Limit to English-translated Anime (for now)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-03-25 05:57:24 +00:00
|
|
|
url = self.provider.url + '?' + urllib.urlencode(params)
|
2015-07-13 09:39:20 +00:00
|
|
|
logger.log(u'NyaaTorrents cache update URL: ' + url, logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-08-12 10:09:11 +00:00
|
|
|
data = self.getRSSFeed(url)
|
|
|
|
if data and 'entries' in data:
|
|
|
|
return data.entries
|
2015-07-13 09:39:20 +00:00
|
|
|
return []
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2014-06-01 22:05:07 +00:00
|
|
|
provider = NyaaProvider()
|