mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 18:03:37 +00:00
Merge pull request #461 from JackDandy/feature/AddProviderBeyondHD
Add BeyondHD torrent provider.
This commit is contained in:
commit
38c98e6a3a
6 changed files with 124 additions and 1 deletions
|
@ -59,6 +59,7 @@
|
|||
* Add PiSexy torrent provider
|
||||
* Add Strike torrent provider
|
||||
* Add TorrentShack torrent provider
|
||||
* Add BeyondHD torrent provider
|
||||
* Fix getManualSearchStatus: object has no attribute 'segment'
|
||||
* Change handling of general HTTP error response codes to prevent issues
|
||||
* Add handling for CloudFlare custom HTTP response codes
|
||||
|
|
BIN
gui/slick/images/providers/beyondhd.png
Normal file
BIN
gui/slick/images/providers/beyondhd.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 562 B |
|
@ -36,7 +36,7 @@ sys.path.insert(1, os.path.abspath('../lib'))
|
|||
from sickbeard import providers, metadata, config, webserveInit
|
||||
from sickbeard.providers.generic import GenericProvider
|
||||
from providers import btn, newznab, womble, thepiratebay, torrentleech, kat, iptorrents, \
|
||||
omgwtfnzbs, scc, torrentday, hdbits, speedcd, nyaatorrents, torrentbytes, \
|
||||
omgwtfnzbs, scc, torrentday, hdbits, speedcd, nyaatorrents, torrentbytes, beyondhd, \
|
||||
freshontv, bitsoup, tokyotoshokan, animenzb, totv, rarbg, morethan, alpharatio, pisexy, strike, torrentshack
|
||||
from sickbeard.config import CheckSection, check_setting_int, check_setting_str, check_setting_float, ConfigMigrator, \
|
||||
naming_ep_type, minimax
|
||||
|
|
|
@ -40,6 +40,7 @@ __all__ = ['womble',
|
|||
'pisexy',
|
||||
'strike',
|
||||
'torrentshack',
|
||||
'beyondhd'
|
||||
]
|
||||
|
||||
from os import sys
|
||||
|
|
117
sickbeard/providers/beyondhd.py
Normal file
117
sickbeard/providers/beyondhd.py
Normal file
|
@ -0,0 +1,117 @@
|
|||
# coding=utf-8
|
||||
#
|
||||
# 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 datetime
|
||||
import time
|
||||
|
||||
from . import generic
|
||||
from sickbeard import logger, tvcache
|
||||
from sickbeard.exceptions import AuthException
|
||||
from lib.unidecode import unidecode
|
||||
|
||||
|
||||
class BeyondHDProvider(generic.TorrentProvider):
|
||||
|
||||
def __init__(self):
|
||||
generic.TorrentProvider.__init__(self, 'BeyondHD')
|
||||
|
||||
self.url_base = 'https://beyondhd.me/'
|
||||
self.urls = {'config_provider_home_uri': self.url_base,
|
||||
'cache': self.url_base + 'api_tv.php?passkey=%s&cats=%s',
|
||||
'search': '&search=%s',
|
||||
}
|
||||
|
||||
self.categories = {'Season': '89',
|
||||
'Episode': '40,44,48,46,43,45',
|
||||
'Cache': '40,44,48,89,46,43,45'}
|
||||
|
||||
self.url = self.urls['config_provider_home_uri']
|
||||
|
||||
self.passkey, self.minseed, self.minleech = 3 * [None]
|
||||
self.cache = BeyondHDCache(self)
|
||||
|
||||
def _check_auth_from_data(self, data_json):
|
||||
|
||||
if 'error' not in data_json:
|
||||
return True
|
||||
|
||||
logger.log(u'Incorrect authentication credentials for %s : %s' % (self.name, data_json['error']), logger.DEBUG)
|
||||
raise AuthException('Authentication credentials for %s are incorrect, check your config' % self.name)
|
||||
|
||||
def _doSearch(self, search_params, search_mode='eponly', epcount=0, age=0):
|
||||
|
||||
results = []
|
||||
if not self._checkAuth():
|
||||
return results
|
||||
|
||||
for mode in search_params.keys():
|
||||
if 'Cache' != mode:
|
||||
show_type = self.show.air_by_date and 'Air By Date' \
|
||||
or self.show.sports and 'Sports' or self.show.anime and 'Anime' or None
|
||||
if show_type:
|
||||
logger.log(u'Provider does not carry shows of type: [%s], skipping' % show_type, logger.DEBUG)
|
||||
return results
|
||||
|
||||
for search_string in search_params[mode]:
|
||||
if isinstance(search_string, unicode):
|
||||
search_string = unidecode(search_string)
|
||||
|
||||
search_url = self.urls['cache'] % (self.passkey, self.categories[mode])
|
||||
if 'Cache' != mode:
|
||||
search_url += self.urls['search'] % search_string
|
||||
|
||||
data_json = self.getURL(search_url, json=True)
|
||||
|
||||
cnt = len(results)
|
||||
if data_json and 'results' in data_json and self._check_auth_from_data(data_json):
|
||||
for item in data_json['results']:
|
||||
|
||||
seeders, leechers = item['seeders'], item['leechers']
|
||||
if 'Cache' != mode and (seeders < self.minseed or leechers < self.minleech):
|
||||
continue
|
||||
title, download_url = item['file'], item['get']
|
||||
if title and download_url:
|
||||
results.append((title, download_url, seeders))
|
||||
|
||||
self._log_result(mode, len(results) - cnt, search_url)
|
||||
time.sleep(1.1)
|
||||
# Sort items by seeders
|
||||
results.sort(key=lambda tup: tup[2], reverse=True)
|
||||
return results
|
||||
|
||||
def _get_episode_search_strings(self, ep_obj, add_string='', **kwargs):
|
||||
|
||||
return generic.TorrentProvider._get_episode_search_strings(self, ep_obj, add_string, scene=False, use_or=False)
|
||||
|
||||
def findPropers(self, search_date=datetime.datetime.today()):
|
||||
|
||||
return self._find_propers(search_date, ['proper', 'repack'])
|
||||
|
||||
|
||||
class BeyondHDCache(tvcache.TVCache):
|
||||
|
||||
def __init__(self, this_provider):
|
||||
tvcache.TVCache.__init__(self, this_provider)
|
||||
|
||||
self.minTime = 10 # cache update frequency
|
||||
|
||||
def _getRSSData(self):
|
||||
|
||||
return self.provider.get_cache_data()
|
||||
|
||||
|
||||
provider = BeyondHDProvider()
|
|
@ -669,6 +669,10 @@ class TorrentProvider(GenericProvider):
|
|||
if self.api_key:
|
||||
return True
|
||||
setting = 'Apikey'
|
||||
elif hasattr(self, 'passkey'):
|
||||
if self.passkey:
|
||||
return True
|
||||
setting = 'Passkey'
|
||||
else:
|
||||
return GenericProvider._checkAuth(self)
|
||||
|
||||
|
|
Loading…
Reference in a new issue