mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 03:45:01 -05:00
e96035ff4f
Search mode allows you to choose season packs only or episodes only which controls how backlogs search for data. Search fallback if selected will attempt a 2nd search this time using the alternative search mode to see if it can get results if the previous attempt failed. Provider settings are now read and stored dynamically instead of always having to retrieve them by there static names, this will allow for dropping in new provider modules easier to intergrate with existing options already present. Fixed search code to not perform dupe searches by mistake. Cache stores a list of shows we have rejected so that next time around we don't have to process them to know we don't like em.
326 lines
11 KiB
Python
326 lines
11 KiB
Python
# Author: Idan Gutman
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of Sick Beard.
|
|
#
|
|
# Sick Beard 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.
|
|
#
|
|
# Sick Beard 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 Sick Beard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import re
|
|
import traceback
|
|
import datetime
|
|
import urlparse
|
|
import time
|
|
import sickbeard
|
|
import generic
|
|
from sickbeard.common import Quality
|
|
from sickbeard import logger
|
|
from sickbeard import tvcache
|
|
from sickbeard import db
|
|
from sickbeard import classes
|
|
from sickbeard import helpers
|
|
from sickbeard import show_name_helpers
|
|
from sickbeard.common import Overview
|
|
from sickbeard.exceptions import ex
|
|
from sickbeard import clients
|
|
from lib import requests
|
|
from lib.requests import exceptions
|
|
from bs4 import BeautifulSoup
|
|
from lib.unidecode import unidecode
|
|
from sickbeard.helpers import sanitizeSceneName
|
|
|
|
|
|
class TorrentLeechProvider(generic.TorrentProvider):
|
|
urls = {'base_url': 'http://torrentleech.org/',
|
|
'login': 'http://torrentleech.org/user/account/login/',
|
|
'detail': 'http://torrentleech.org/torrent/%s',
|
|
'search': 'http://torrentleech.org/torrents/browse/index/query/%s/categories/%s',
|
|
'download': 'http://torrentleech.org%s',
|
|
}
|
|
|
|
def __init__(self):
|
|
|
|
generic.TorrentProvider.__init__(self, "TorrentLeech")
|
|
|
|
self.supportsBacklog = True
|
|
|
|
self.enabled = False
|
|
self.username = None
|
|
self.password = None
|
|
self.ratio = None
|
|
|
|
self.cache = TorrentLeechCache(self)
|
|
|
|
self.url = self.urls['base_url']
|
|
|
|
self.categories = "2,26,27,32"
|
|
|
|
def isEnabled(self):
|
|
return self.enabled
|
|
|
|
def imageName(self):
|
|
return 'torrentleech.png'
|
|
|
|
def getQuality(self, item):
|
|
|
|
quality = Quality.sceneQuality(item[0])
|
|
return quality
|
|
|
|
def _doLogin(self):
|
|
|
|
login_params = {'username': self.username,
|
|
'password': self.password,
|
|
'remember_me': 'on',
|
|
'login': 'submit',
|
|
}
|
|
|
|
self.session = requests.Session()
|
|
|
|
try:
|
|
response = self.session.post(self.urls['login'], data=login_params, timeout=30)
|
|
except (requests.exceptions.ConnectionError, requests.exceptions.HTTPError), e:
|
|
logger.log(u'Unable to connect to ' + self.name + ' provider: ' + ex(e), logger.ERROR)
|
|
return False
|
|
|
|
if re.search('Invalid Username/password', response.text) \
|
|
or re.search('<title>Login :: TorrentLeech.org</title>', response.text) \
|
|
or response.status_code == 401:
|
|
logger.log(u'Invalid username or password for ' + self.name + ' Check your settings', logger.ERROR)
|
|
return False
|
|
|
|
return True
|
|
|
|
def _get_season_search_strings(self, ep_obj):
|
|
|
|
search_string = {'Season': []}
|
|
for show_name in set(show_name_helpers.allPossibleShowNames(self.show)):
|
|
if ep_obj.show.air_by_date or ep_obj.show.sports:
|
|
ep_string = show_name + str(ep_obj.airdate)[:7]
|
|
else:
|
|
ep_string = show_name + ' S%02d' % int(ep_obj.scene_season) #1) showName SXX
|
|
|
|
search_string['Season'].append(ep_string)
|
|
|
|
return [search_string]
|
|
|
|
def _get_episode_search_strings(self, ep_obj, add_string=''):
|
|
|
|
search_string = {'Episode': []}
|
|
|
|
if not ep_obj:
|
|
return []
|
|
|
|
if self.show.air_by_date:
|
|
for show_name in set(show_name_helpers.allPossibleShowNames(self.show)):
|
|
ep_string = sanitizeSceneName(show_name) + ' ' + \
|
|
str(ep_obj.airdate).replace('-', '|')
|
|
search_string['Episode'].append(ep_string)
|
|
elif self.show.sports:
|
|
for show_name in set(show_name_helpers.allPossibleShowNames(self.show)):
|
|
ep_string = sanitizeSceneName(show_name) + ' ' + \
|
|
str(ep_obj.airdate).replace('-', '|') + '|' + \
|
|
ep_obj.airdate.strftime('%b')
|
|
search_string['Episode'].append(ep_string)
|
|
else:
|
|
for show_name in set(show_name_helpers.allPossibleShowNames(self.show)):
|
|
ep_string = show_name_helpers.sanitizeSceneName(show_name) + ' ' + \
|
|
sickbeard.config.naming_ep_type[2] % {'seasonnumber': ep_obj.scene_season,
|
|
'episodenumber': ep_obj.scene_episode}
|
|
|
|
search_string['Episode'].append(re.sub('\s+', ' ', ep_string))
|
|
|
|
return [search_string]
|
|
|
|
def _doSearch(self, search_params, epcount=0, age=0):
|
|
|
|
results = []
|
|
items = {'Season': [], 'Episode': [], 'RSS': []}
|
|
|
|
if not self._doLogin():
|
|
return []
|
|
|
|
for mode in search_params.keys():
|
|
for search_string in search_params[mode]:
|
|
|
|
if isinstance(search_string, unicode):
|
|
search_string = unidecode(search_string)
|
|
|
|
searchURL = self.urls['search'] % (search_string, self.categories)
|
|
|
|
logger.log(u"Search string: " + searchURL, logger.DEBUG)
|
|
|
|
data = self.getURL(searchURL)
|
|
if not data:
|
|
continue
|
|
|
|
try:
|
|
html = BeautifulSoup(data, features=["html5lib", "permissive"])
|
|
|
|
torrent_table = html.find('table', attrs={'id': 'torrenttable'})
|
|
torrent_rows = torrent_table.find_all('tr') if torrent_table else []
|
|
|
|
#Continue only if one Release is found
|
|
if len(torrent_rows) < 2:
|
|
logger.log(u"The Data returned from " + self.name + " do not contains any torrent",
|
|
logger.DEBUG)
|
|
continue
|
|
|
|
for result in torrent_table.find_all('tr')[1:]:
|
|
|
|
try:
|
|
link = result.find('td', attrs={'class': 'name'}).find('a')
|
|
url = result.find('td', attrs={'class': 'quickdownload'}).find('a')
|
|
title = link.string
|
|
download_url = self.urls['download'] % url['href']
|
|
id = int(link['href'].replace('/torrent/', ''))
|
|
seeders = int(result.find('td', attrs={'class': 'seeders'}).string)
|
|
leechers = int(result.find('td', attrs={'class': 'leechers'}).string)
|
|
except (AttributeError, TypeError):
|
|
continue
|
|
|
|
#Filter unseeded torrent
|
|
if mode != 'RSS' and seeders == 0:
|
|
continue
|
|
|
|
if not title or not download_url:
|
|
continue
|
|
|
|
item = title, download_url, id, seeders, leechers
|
|
logger.log(u"Found result: " + title + "(" + searchURL + ")", logger.DEBUG)
|
|
|
|
items[mode].append(item)
|
|
|
|
except Exception, e:
|
|
logger.log(u"Failed parsing " + self.name + " Traceback: " + traceback.format_exc(), logger.ERROR)
|
|
|
|
#For each search mode sort all the items by seeders
|
|
items[mode].sort(key=lambda tup: tup[3], reverse=True)
|
|
|
|
results += items[mode]
|
|
|
|
return results
|
|
|
|
def _get_title_and_url(self, item):
|
|
|
|
title, url, id, seeders, leechers = item
|
|
|
|
if url:
|
|
url = str(url).replace('&', '&')
|
|
|
|
return (title, url)
|
|
|
|
def getURL(self, url, post_data=None, headers=None, json=False):
|
|
|
|
if not self.session:
|
|
self._doLogin()
|
|
|
|
if not headers:
|
|
headers = []
|
|
|
|
try:
|
|
# Remove double-slashes from url
|
|
parsed = list(urlparse.urlparse(url))
|
|
parsed[2] = re.sub("/{2,}", "/", parsed[2]) # replace two or more / with one
|
|
url = urlparse.urlunparse(parsed)
|
|
|
|
response = self.session.get(url, verify=False)
|
|
except (requests.exceptions.ConnectionError, requests.exceptions.HTTPError), e:
|
|
logger.log(u"Error loading " + self.name + " URL: " + ex(e), logger.ERROR)
|
|
return None
|
|
|
|
if response.status_code != 200:
|
|
logger.log(self.name + u" page requested with url " + url + " returned status code is " + str(
|
|
response.status_code) + ': ' + clients.http_error_code[response.status_code], logger.WARNING)
|
|
return None
|
|
|
|
return response.content
|
|
|
|
def findPropers(self, search_date=datetime.datetime.today()):
|
|
|
|
results = []
|
|
|
|
sqlResults = db.DBConnection().select(
|
|
'SELECT s.show_name, e.showid, e.season, e.episode, e.status, e.airdate FROM tv_episodes AS e' +
|
|
' INNER JOIN tv_shows AS s ON (e.showid = s.indexer_id)' +
|
|
' WHERE e.airdate >= ' + str(search_date.toordinal()) +
|
|
' AND (e.status IN (' + ','.join([str(x) for x in Quality.DOWNLOADED]) + ')' +
|
|
' OR (e.status IN (' + ','.join([str(x) for x in Quality.SNATCHED]) + ')))'
|
|
)
|
|
if not sqlResults:
|
|
return []
|
|
|
|
for sqlshow in sqlResults:
|
|
self.show = curshow = helpers.findCertainShow(sickbeard.showList, int(sqlshow["showid"]))
|
|
curEp = curshow.getEpisode(int(sqlshow["season"]), int(sqlshow["episode"]))
|
|
|
|
searchString = self._get_episode_search_strings(curEp, add_string='PROPER|REPACK')
|
|
|
|
for item in self._doSearch(searchString[0]):
|
|
title, url = self._get_title_and_url(item)
|
|
results.append(classes.Proper(title, url, datetime.datetime.today()))
|
|
|
|
return results
|
|
|
|
def seedRatio(self):
|
|
return self.ratio
|
|
|
|
|
|
class TorrentLeechCache(tvcache.TVCache):
|
|
def __init__(self, provider):
|
|
|
|
tvcache.TVCache.__init__(self, provider)
|
|
|
|
# only poll TorrentLeech every 20 minutes max
|
|
self.minTime = 20
|
|
|
|
def updateCache(self):
|
|
|
|
if not self.shouldUpdate():
|
|
return
|
|
|
|
search_params = {'RSS': ['']}
|
|
rss_results = self.provider._doSearch(search_params)
|
|
|
|
if rss_results:
|
|
self.setLastUpdate()
|
|
else:
|
|
return []
|
|
|
|
logger.log(u"Clearing " + self.provider.name + " cache and updating with new information")
|
|
self._clearCache()
|
|
|
|
cl = []
|
|
for result in rss_results:
|
|
|
|
item = (result[0], result[1])
|
|
ci = self._parseItem(item)
|
|
if ci is not None:
|
|
cl.append(ci)
|
|
|
|
myDB = self._getDB()
|
|
myDB.mass_action(cl)
|
|
|
|
def _parseItem(self, item):
|
|
|
|
(title, url) = item
|
|
|
|
if not title or not url:
|
|
return None
|
|
|
|
logger.log(u"Attempting to cache item:[" + title +"]", logger.DEBUG)
|
|
|
|
return self._addCacheEntry(title, url)
|
|
|
|
|
|
provider = TorrentLeechProvider()
|