mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 18:03:37 +00:00
43778d8edd
Add BitMeTV torrent provider. Add TVChaosUK torrent provider. Add HD-Space torrent provider. Add Shazbat torrent provider. Remove Animenzb provider. Change use tvdbid for searching usenet providers. Change consolidate global and per show ignore and require words functions. Change "Require word" title and notes on Config Search page to properly describe its functional logic. Add "Reject Blu-ray M2TS releases" to BTN provider. Add regular expression capability to ignore and require words by starting wordlist with "regex:". Add list shows with custom ignore and require words under the global counterparts on the Search Settings page. Fix failure to search for more than one selected wanted episode.
98 lines
3.1 KiB
Python
98 lines
3.1 KiB
Python
# Author: Mr_Orange
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of SickGear.
|
|
#
|
|
# SickGear 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.
|
|
#
|
|
# SickGear 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 SickGear. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import urllib
|
|
|
|
from . import generic
|
|
from sickbeard import logger, show_name_helpers, tvcache
|
|
|
|
|
|
class NyaaProvider(generic.TorrentProvider):
|
|
|
|
def __init__(self):
|
|
generic.TorrentProvider.__init__(self, 'NyaaTorrents', anime_only=True)
|
|
|
|
self.url = 'http://www.nyaa.se/'
|
|
|
|
self.cache = NyaaCache(self)
|
|
|
|
def _search_provider(self, search_string, **kwargs):
|
|
|
|
results = []
|
|
if self.show and not self.show.is_anime:
|
|
return results
|
|
|
|
params = {'term': search_string.encode('utf-8'),
|
|
'cats': '1_37', # Limit to English-translated Anime (for now)
|
|
# 'sort': '2', # Sort Descending By Seeders
|
|
}
|
|
|
|
search_url = self.url + '?page=rss&' + urllib.urlencode(params)
|
|
|
|
logger.log(u'Search string: ' + search_url, logger.DEBUG)
|
|
|
|
data = self.cache.getRSSFeed(search_url)
|
|
if data and 'entries' in data:
|
|
items = data.entries
|
|
for curItem in items:
|
|
|
|
title, url = self._title_and_url(curItem)
|
|
|
|
if title and url:
|
|
results.append(curItem)
|
|
else:
|
|
logger.log(u'The data returned from ' + self.name + ' is incomplete, this result is unusable',
|
|
logger.DEBUG)
|
|
|
|
return results
|
|
|
|
def find_search_results(self, show, episodes, search_mode, manual_search=False):
|
|
|
|
return generic.TorrentProvider.find_search_results(self, show, episodes, search_mode, manual_search)
|
|
|
|
def _season_strings(self, ep_obj, **kwargs):
|
|
|
|
return show_name_helpers.makeSceneShowSearchStrings(self.show)
|
|
|
|
def _episode_strings(self, ep_obj, **kwargs):
|
|
|
|
return self._season_strings(ep_obj)
|
|
|
|
|
|
class NyaaCache(tvcache.TVCache):
|
|
|
|
def __init__(self, this_provider):
|
|
tvcache.TVCache.__init__(self, this_provider)
|
|
|
|
self.update_freq = 15 # cache update frequency
|
|
|
|
def _cache_data(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
|
|
return []
|
|
|
|
|
|
provider = NyaaProvider()
|