2014-04-22 08:02:43 +00:00
|
|
|
# coding=utf-8
|
2014-03-10 05:18:05 +00:00
|
|
|
#
|
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-06-06 22:27:20 +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
|
|
|
|
|
|
|
from __future__ import with_statement
|
|
|
|
|
|
|
|
import os
|
2015-09-18 00:06:34 +00:00
|
|
|
import re
|
2014-03-10 05:18:05 +00:00
|
|
|
import traceback
|
2014-03-20 10:24:58 +00:00
|
|
|
import urllib
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-23 15:23:30 +00:00
|
|
|
from . import generic
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
from sickbeard import config, logger, show_name_helpers
|
2015-06-23 15:23:30 +00:00
|
|
|
from sickbeard.bs4_parser import BS4Parser
|
2015-09-18 00:06:34 +00:00
|
|
|
from sickbeard.helpers import (has_anime, tryInt)
|
2015-06-08 23:35:09 +00:00
|
|
|
from sickbeard.common import Quality, mediaExtensions
|
2014-07-06 13:11:04 +00:00
|
|
|
from sickbeard.name_parser.parser import NameParser, InvalidNameException, InvalidShowException
|
2014-03-10 05:18:05 +00:00
|
|
|
from lib.unidecode import unidecode
|
|
|
|
|
|
|
|
|
2014-03-25 05:57:24 +00:00
|
|
|
class KATProvider(generic.TorrentProvider):
|
2015-06-08 23:35:09 +00:00
|
|
|
|
2015-06-23 15:23:30 +00:00
|
|
|
def __init__(self):
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
generic.TorrentProvider.__init__(self, 'KickAssTorrents', cache_update_freq=20)
|
2015-06-08 23:35:09 +00:00
|
|
|
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
self.url_home = ['https://%s/' % u for u in 'kat.ph', 'kat.cr', 'kickass.unblocked.red', 'katproxy.com']
|
|
|
|
|
|
|
|
self.url_vars = {'search': 'usearch/%s/?field=time_add&sorder=desc', 'get': '%s'}
|
|
|
|
self.url_tmpl = {'config_provider_home_uri': '%(home)s',
|
|
|
|
'search': '%(home)s%(vars)s', 'get': '%(home)s%(vars)s'}
|
2015-06-08 23:35:09 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
self.proper_search_terms = None
|
2015-06-08 23:35:09 +00:00
|
|
|
|
2015-06-23 15:23:30 +00:00
|
|
|
self.minseed, self.minleech = 2 * [None]
|
|
|
|
self.confirmed = False
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _has_signature(data=None):
|
2016-06-21 01:06:56 +00:00
|
|
|
return data and (re.search(r'(?sim)(<title>KAT)', data[15:1024:]) or 'kastat' in data)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-03-25 05:57:24 +00:00
|
|
|
def _find_season_quality(self, title, torrent_link, ep_number):
|
2014-03-10 05:18:05 +00:00
|
|
|
""" Return the modified title of a Season Torrent with the quality found inspecting torrent file list """
|
|
|
|
|
|
|
|
quality = Quality.UNKNOWN
|
|
|
|
|
2015-06-08 23:35:09 +00:00
|
|
|
file_name = None
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-07-13 09:39:20 +00:00
|
|
|
data = self.get_url(torrent_link)
|
2014-03-10 05:18:05 +00:00
|
|
|
if not data:
|
|
|
|
return None
|
|
|
|
|
|
|
|
try:
|
2015-06-08 23:35:09 +00:00
|
|
|
with BS4Parser(data, features=['html5lib', 'permissive']) as soup:
|
2014-07-22 04:26:58 +00:00
|
|
|
file_table = soup.find('table', attrs={'class': 'torrentFileList'})
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-07-22 04:26:58 +00:00
|
|
|
if not file_table:
|
|
|
|
return None
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-07-22 04:26:58 +00:00
|
|
|
files = [x.text for x in file_table.find_all('td', attrs={'class': 'torFileName'})]
|
2015-06-08 23:35:09 +00:00
|
|
|
video_files = filter(lambda i: i.rpartition('.')[2].lower() in mediaExtensions, files)
|
|
|
|
|
|
|
|
# Filtering SingleEpisode/MultiSeason Torrent
|
|
|
|
if len(video_files) < ep_number or len(video_files) > float(ep_number * 1.1):
|
|
|
|
logger.log(u'Result %s lists %s episodes with %s episodes retrieved in torrent'
|
|
|
|
% (title, ep_number, len(video_files)), logger.DEBUG)
|
|
|
|
logger.log(u'Result %s seem to be a single episode or multi-season torrent, skipping result...'
|
|
|
|
% title, logger.DEBUG)
|
2014-07-22 04:26:58 +00:00
|
|
|
return None
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-08 23:35:09 +00:00
|
|
|
if Quality.UNKNOWN != Quality.sceneQuality(title):
|
2014-07-22 04:26:58 +00:00
|
|
|
return title
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-08 23:35:09 +00:00
|
|
|
for file_name in video_files:
|
|
|
|
quality = Quality.sceneQuality(os.path.basename(file_name))
|
|
|
|
if Quality.UNKNOWN != quality:
|
|
|
|
break
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-08 23:35:09 +00:00
|
|
|
if None is not file_name and Quality.UNKNOWN == quality:
|
|
|
|
quality = Quality.assumeQuality(os.path.basename(file_name))
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-08 23:35:09 +00:00
|
|
|
if Quality.UNKNOWN == quality:
|
|
|
|
logger.log(u'Unable to obtain a Season Quality for ' + title, logger.DEBUG)
|
2014-07-22 04:26:58 +00:00
|
|
|
return None
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-07-22 04:26:58 +00:00
|
|
|
try:
|
2015-06-08 23:35:09 +00:00
|
|
|
my_parser = NameParser(showObj=self.show)
|
|
|
|
parse_result = my_parser.parse(file_name)
|
2014-07-22 04:26:58 +00:00
|
|
|
except (InvalidNameException, InvalidShowException):
|
|
|
|
return None
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-08 23:35:09 +00:00
|
|
|
logger.log(u'Season quality for %s is %s' % (title, Quality.qualityStrings[quality]), logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-07-22 04:26:58 +00:00
|
|
|
if parse_result.series_name and parse_result.season_number:
|
2015-06-08 23:35:09 +00:00
|
|
|
title = parse_result.series_name + ' S%02d %s' % (int(parse_result.season_number),
|
|
|
|
self._reverse_quality(quality))
|
2014-07-22 04:26:58 +00:00
|
|
|
return title
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-08 23:35:09 +00:00
|
|
|
except Exception:
|
|
|
|
logger.log(u'Failed to quality parse ' + self.name + ' Traceback: ' + traceback.format_exc(), logger.ERROR)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
def _season_strings(self, ep_obj, **kwargs):
|
2015-06-23 15:23:30 +00:00
|
|
|
|
2015-08-14 23:02:05 +00:00
|
|
|
if ep_obj.show.air_by_date or ep_obj.show.is_sports:
|
2015-06-23 15:23:30 +00:00
|
|
|
airdate = str(ep_obj.airdate).split('-')[0]
|
|
|
|
ep_detail = [airdate, 'Season ' + airdate]
|
2015-08-14 23:02:05 +00:00
|
|
|
elif ep_obj.show.is_anime:
|
2015-06-23 15:23:30 +00:00
|
|
|
ep_detail = '%02i' % ep_obj.scene_absolute_number
|
|
|
|
else:
|
2015-08-14 23:02:05 +00:00
|
|
|
season = (ep_obj.season, ep_obj.scene_season)[bool(ep_obj.show.is_scene)]
|
|
|
|
ep_detail = ['S%(s)02i -S%(s)02iE' % {'s': season}, 'Season %s -Ep*' % season]
|
2015-06-23 15:23:30 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
return [{'Season': self._build_search_strings(ep_detail)}]
|
2015-06-23 15:23:30 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
def _episode_strings(self, ep_obj, **kwargs):
|
2015-06-23 15:23:30 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
return generic.TorrentProvider._episode_strings(self, ep_obj, date_or=True,
|
|
|
|
ep_detail=lambda x: '%s|%s' % (config.naming_ep_type[2] % x,
|
|
|
|
config.naming_ep_type[0] % x),
|
|
|
|
ep_detail_anime=lambda x: '%02i' % x, **kwargs)
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
def _search_provider(self, search_params, search_mode='eponly', epcount=0, **kwargs):
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
results = []
|
2016-07-07 02:17:01 +00:00
|
|
|
if None is self.url:
|
|
|
|
return results
|
2015-09-18 00:06:34 +00:00
|
|
|
items = {'Cache': [], 'Season': [], 'Episode': [], 'Propers': []}
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
rc = dict((k, re.compile('(?i)' + v)) for (k, v) in {'link': 'normal', 'get': '^magnet', 'verif': 'verif'}.items())
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
for mode in search_params.keys():
|
2015-09-18 00:06:34 +00:00
|
|
|
search_show = mode in ['Season', 'Episode']
|
|
|
|
if not search_show and has_anime():
|
|
|
|
search_params[mode] *= (1, 2)['Cache' == mode]
|
|
|
|
'Propers' == mode and search_params[mode].append('v1|v2|v3|v4|v5')
|
|
|
|
|
|
|
|
for enum, search_string in enumerate(search_params[mode]):
|
|
|
|
search_string = isinstance(search_string, unicode) and unidecode(search_string) or search_string
|
2014-03-25 05:57:24 +00:00
|
|
|
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
search_url = self.urls['search'] % urllib.quote('%scategory:%s' % (
|
2015-09-18 00:06:34 +00:00
|
|
|
('', '%s ' % search_string)['Cache' != mode],
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
('tv', 'anime')[(search_show and bool(self.show and self.show.is_anime)) or bool(enum)]))
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
self.session.headers.update({'Referer': search_url})
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
html = self.get_url(search_url)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-23 15:23:30 +00:00
|
|
|
cnt = len(items[mode])
|
2014-03-10 05:18:05 +00:00
|
|
|
try:
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
if not html or self._has_no_results(html) or \
|
|
|
|
re.search(r'(?is)<(?:h\d)[^>]*>.*?(?:did\snot\smatch)', html):
|
2015-06-23 15:23:30 +00:00
|
|
|
raise generic.HaltParseException
|
|
|
|
|
2015-06-08 23:35:09 +00:00
|
|
|
with BS4Parser(html, features=['html5lib', 'permissive']) as soup:
|
2014-07-22 04:26:58 +00:00
|
|
|
torrent_table = soup.find('table', attrs={'class': 'data'})
|
2015-06-23 15:23:30 +00:00
|
|
|
torrent_rows = [] if not torrent_table else torrent_table.find_all('tr')
|
2014-07-22 04:26:58 +00:00
|
|
|
|
2015-06-23 15:23:30 +00:00
|
|
|
if 2 > len(torrent_rows):
|
|
|
|
raise generic.HaltParseException
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2014-07-22 04:26:58 +00:00
|
|
|
for tr in torrent_rows[1:]:
|
|
|
|
try:
|
2015-09-18 00:06:34 +00:00
|
|
|
seeders, leechers, size = [tryInt(n, n) for n in [
|
|
|
|
tr.find_all('td')[x].get_text().strip() for x in (-2, -1, -5)]]
|
|
|
|
if self._peers_fail(mode, seeders, leechers):
|
2015-06-23 15:23:30 +00:00
|
|
|
continue
|
2014-07-22 04:26:58 +00:00
|
|
|
|
2015-06-23 15:23:30 +00:00
|
|
|
info = tr.find('div', {'class': 'torrentname'})
|
|
|
|
title = (info.find_all('a')[1].get_text() or info.find('a', 'cellMainLink').get_text())\
|
|
|
|
.strip()
|
|
|
|
link = self.url + info.find('a', {'class': rc['link']})['href'].lstrip('/')
|
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
download_magnet = tr.find('a', href=rc['get'])['href']
|
|
|
|
except (AttributeError, TypeError, ValueError):
|
2014-07-22 04:26:58 +00:00
|
|
|
continue
|
|
|
|
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
if self.confirmed and not (tr.find('a', title=rc['verif']) or
|
|
|
|
tr.find('i', title=rc['verif'])):
|
2015-06-23 15:23:30 +00:00
|
|
|
logger.log(u'Skipping untrusted non-verified result: %s' % title, logger.DEBUG)
|
2014-07-22 04:26:58 +00:00
|
|
|
continue
|
|
|
|
|
Change validate and improve specific Torrent provider connections, IPT, KAT, SCC, TPB, TB, TD, TT.
Change refactor cache for torrent providers to reduce code.
Change improve search category selection BMTV, FSH, FF, TB.
Change identify more SD release qualities.
Change update SpeedCD, MoreThan, TVChaosuk.
Add torrent provider HD4Free.
Remove torrent provider BitSoup.
Change only create threads for providers needing a recent search instead of for all enabled.
Add 4489 as experimental value to "Recent search frequency" to use provider freqs instead of fixed width for all.
Fix searching nzb season packs.
Change remove some logging cruft.
2016-03-24 18:24:14 +00:00
|
|
|
# Check number video files = episode in season and find the real Quality for
|
|
|
|
# full season torrent analyzing files in torrent
|
2015-06-08 23:35:09 +00:00
|
|
|
if 'Season' == mode and 'sponly' == search_mode:
|
2015-06-23 15:23:30 +00:00
|
|
|
ep_number = int(epcount / len(set(show_name_helpers.allPossibleShowNames(self.show))))
|
2014-07-22 04:26:58 +00:00
|
|
|
title = self._find_season_quality(title, link, ep_number)
|
|
|
|
|
2015-06-23 15:23:30 +00:00
|
|
|
if title and download_magnet:
|
2015-09-18 00:06:34 +00:00
|
|
|
items[mode].append((title, download_magnet, seeders, self._bytesizer(size)))
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-23 15:23:30 +00:00
|
|
|
except generic.HaltParseException:
|
|
|
|
pass
|
2015-06-08 23:35:09 +00:00
|
|
|
except Exception:
|
2015-06-23 15:23:30 +00:00
|
|
|
logger.log(u'Failed to parse. Traceback: %s' % traceback.format_exc(), logger.ERROR)
|
2015-09-18 00:06:34 +00:00
|
|
|
self._log_search(mode, len(items[mode]) - cnt, search_url)
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
self._sort_seeders(mode, items)
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
results = list(set(results + items[mode]))
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
return results
|
|
|
|
|
|
|
|
|
|
|
|
provider = KATProvider()
|