mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
d3a7f0ff5e
Add newznab smart logic to avoid missing releases when there are a great many recent releases. Change improve performance by using newznab server advertised capabilities. Change config/providers newznab to display only non-default categories. Change use scene season for wanted segment in backlog if show is scene numbering. Change combine Manage Searches / Backlog Search / Limited and Full to Force. Change consolidate limited and full backlog. Change config / Search / Backlog search frequency to instead spread backlog searches over a number of days. Change migrate minimum used value for search frequency into new minimum 7 for search spread. Change restrict nzb providers to 1 backlog batch run per day. Add to Config/Search/Unaired episodes/Allow episodes that are released early. Add to Config/Search/Unaired episodes/Use specific api requests to search for early episode releases. Add use related ids for newznab searches to increase search efficiency. Add periodic update of related show ids. Change terminology Edit Show/"Post processing" tab name to "Other". Add advanced feature "Related show IDs" to Edit Show/Other used for finding episodes and TV info. Add search info source image links to those that have zero id under Edit Show/Other/"Related show IDs". Add "set master" button to Edit Show/Other/"Related show IDs" for info source that can be changed. Change terminology displayShow "Indexers" to "Links" to cover internal and web links. Change add related show info sources on displayShow page. Change don't display "temporarily" defunct TVRage image link on displayShow pages unless it is master info source. Change if a defunct info source is the master of a show then present a link on displayShow to edit related show IDs. Change simplify the next backlog search run time display in the page footer. Change try ssl when fetching data thetvdb, imdb, trakt, scene exception. Change improve reliability to Trakt notifier by using show related id support. Change improve config/providers newznab categories layout. Change show loaded log message at start up and include info source. Change if episode has no airdate then set status to unaired (was skipped). Technical Change move scene_exceptions table from cache.db to sickbeard.db. Add related ids to show obj. Add use of mapped indexer ids for newznab. Add indexer to sql in wanted_eps. Add aired in (scene) season for wanted episodes. Add need_anime, need_sports, need_sd, need_hd, need_uhd to wanted episodes and added as parameter to update_providers. Add fix for lib lockfile/mkdirlockfile. Add set master TV info source logic. Change harden ui input validation. Add per action dialog confirmation. Change to reload page under more events. Change implement "Mark all added episodes Wanted to search for releases" when setting new info source.
107 lines
3.8 KiB
Python
107 lines
3.8 KiB
Python
#
|
|
# 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 re
|
|
import urllib
|
|
|
|
from . import generic
|
|
from sickbeard import logger, show_name_helpers, tvcache
|
|
from sickbeard.helpers import tryInt
|
|
|
|
|
|
class NyaaProvider(generic.TorrentProvider):
|
|
|
|
def __init__(self):
|
|
generic.TorrentProvider.__init__(self, 'NyaaTorrents', anime_only=True)
|
|
|
|
self.url_base = self.url = 'https://www.nyaa.se/'
|
|
|
|
self.minseed, self.minleech = 2 * [None]
|
|
|
|
self.cache = NyaaCache(self)
|
|
|
|
def _search_provider(self, search_string, search_mode='eponly', **kwargs):
|
|
|
|
if self.show and not self.show.is_anime:
|
|
return []
|
|
|
|
params = urllib.urlencode({'term': search_string.encode('utf-8'),
|
|
'cats': '1_37', # Limit to English-translated Anime (for now)
|
|
# 'sort': '2', # Sort Descending By Seeders
|
|
})
|
|
|
|
return self.get_data(getrss_func=self.cache.getRSSFeed,
|
|
search_url='%s?page=rss&%s' % (self.url, params),
|
|
mode=('Episode', 'Season')['sponly' == search_mode])
|
|
|
|
def get_data(self, getrss_func, search_url, mode='cache'):
|
|
|
|
data = getrss_func(search_url)
|
|
|
|
results = []
|
|
if data and 'entries' in data:
|
|
|
|
rc = dict((k, re.compile('(?i)' + v)) for (k, v) in {
|
|
'stats': '(\d+)\W+seed[^\d]+(\d+)\W+leech[^\d]+\d+\W+down[^\d]+([\d.,]+\s\w+)'}.iteritems())
|
|
|
|
for cur_item in data.get('entries', []):
|
|
try:
|
|
seeders, leechers, size = 0, 0, 0
|
|
stats = rc['stats'].findall(cur_item.get('summary_detail', {'value': ''}).get('value', ''))
|
|
if len(stats):
|
|
seeders, leechers, size = (tryInt(n, n) for n in stats[0])
|
|
if self._peers_fail(mode, seeders, leechers):
|
|
continue
|
|
title, download_url = self._title_and_url(cur_item)
|
|
download_url = self._link(download_url)
|
|
except (AttributeError, TypeError, ValueError, IndexError):
|
|
continue
|
|
|
|
if title and download_url:
|
|
results.append((title, download_url, seeders, self._bytesizer(size)))
|
|
|
|
self._log_search(mode, len(results), search_url)
|
|
|
|
return self._sort_seeding(mode, results)
|
|
|
|
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
|
|
|
|
def _cache_data(self):
|
|
|
|
params = urllib.urlencode({'page': 'rss', # Use RSS page
|
|
'order': '1', # Sort Descending By Date
|
|
'cats': '1_37' # Limit to English-translated Anime (for now)
|
|
})
|
|
|
|
return self.provider.get_data(getrss_func=self.getRSSFeed,
|
|
search_url='%s?%s' % (self.provider.url, params))
|
|
|
|
|
|
provider = NyaaProvider()
|