2014-03-10 01:18:05 -04:00
# Author: Nic Wolfe <nic@wolfeden.ca>
# 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 time
import datetime
import sqlite3
import sickbeard
from sickbeard import db
from sickbeard import logger
from sickbeard . common import Quality
from sickbeard import helpers , show_name_helpers
2014-04-28 19:03:49 -04:00
from sickbeard import name_cache , scene_exceptions
2014-03-10 01:18:05 -04:00
from sickbeard . exceptions import MultipleShowObjectsException , ex
from sickbeard . exceptions import ex , AuthException
from name_parser . parser import NameParser , InvalidNameException
class CacheDBConnection ( db . DBConnection ) :
def __init__ ( self , providerName ) :
db . DBConnection . __init__ ( self , " cache.db " )
# Create the table if it's not already there
try :
sql = " CREATE TABLE [ " + providerName + " ] (name TEXT, season NUMERIC, episodes TEXT, indexerid NUMERIC, url TEXT, time NUMERIC, quality TEXT); "
self . connection . execute ( sql )
self . connection . commit ( )
except sqlite3 . OperationalError , e :
if str ( e ) != " table [ " + providerName + " ] already exists " :
raise
# Create the table if it's not already there
try :
sql = " CREATE TABLE lastUpdate (provider TEXT, time NUMERIC); "
self . connection . execute ( sql )
self . connection . commit ( )
except sqlite3 . OperationalError , e :
if str ( e ) != " table lastUpdate already exists " :
raise
2014-03-25 01:57:24 -04:00
class TVCache ( ) :
2014-03-10 01:18:05 -04:00
def __init__ ( self , provider ) :
self . provider = provider
self . providerID = self . provider . getID ( )
self . minTime = 10
def _getDB ( self ) :
return CacheDBConnection ( self . providerID )
def _clearCache ( self ) :
myDB = self . _getDB ( )
myDB . action ( " DELETE FROM [ " + self . providerID + " ] WHERE 1 " )
def _getRSSData ( self ) :
data = None
return data
2014-04-25 21:49:38 -04:00
def _checkAuth ( self , data ) :
2014-03-10 01:18:05 -04:00
return True
def _checkItemAuth ( self , title , url ) :
return True
def updateCache ( self ) :
if not self . shouldUpdate ( ) :
return
if self . _checkAuth ( None ) :
data = self . _getRSSData ( )
# as long as the http request worked we count this as an update
if data :
self . setLastUpdate ( )
else :
return [ ]
2014-03-25 01:57:24 -04:00
2014-03-10 01:18:05 -04:00
# now that we've loaded the current RSS feed lets delete the old cache
logger . log ( u " Clearing " + self . provider . name + " cache and updating with new information " )
self . _clearCache ( )
2014-03-25 01:57:24 -04:00
2014-04-25 19:41:40 -04:00
if self . _checkAuth ( data ) :
2014-04-25 21:39:43 -04:00
items = data . entries
2014-03-10 01:18:05 -04:00
cl = [ ]
2014-04-25 21:39:43 -04:00
for item in items :
2014-03-10 01:18:05 -04:00
ci = self . _parseItem ( item )
if ci is not None :
cl . append ( ci )
if len ( cl ) > 0 :
myDB = self . _getDB ( )
myDB . mass_action ( cl )
2014-03-25 01:57:24 -04:00
2014-03-10 01:18:05 -04:00
else :
2014-03-25 01:57:24 -04:00
raise AuthException (
u " Your authentication credentials for " + self . provider . name + " are incorrect, check your config " )
2014-03-10 01:18:05 -04:00
return [ ]
def _translateTitle ( self , title ) :
2014-03-25 01:57:24 -04:00
return title . replace ( ' ' , ' . ' )
2014-03-10 01:18:05 -04:00
def _translateLinkURL ( self , url ) :
return url . replace ( ' & ' , ' & ' )
def _parseItem ( self , item ) :
2014-04-25 19:41:40 -04:00
title = item . title
url = item . link
2014-03-25 01:57:24 -04:00
2014-03-10 01:18:05 -04:00
self . _checkItemAuth ( title , url )
if title and url :
title = self . _translateTitle ( title )
url = self . _translateLinkURL ( url )
2014-03-25 01:57:24 -04:00
2014-03-10 01:18:05 -04:00
logger . log ( u " Adding item from RSS to cache: " + title , logger . DEBUG )
return self . _addCacheEntry ( title , url )
2014-03-25 01:57:24 -04:00
2014-03-10 01:18:05 -04:00
else :
2014-03-25 01:57:24 -04:00
logger . log (
2014-04-26 00:08:27 -04:00
u " The data returned from the " + self . provider . name + " feed is incomplete, this result is unusable " ,
2014-03-25 01:57:24 -04:00
logger . DEBUG )
return None
2014-03-10 01:18:05 -04:00
def _getLastUpdate ( self ) :
myDB = self . _getDB ( )
sqlResults = myDB . select ( " SELECT time FROM lastUpdate WHERE provider = ? " , [ self . providerID ] )
if sqlResults :
lastTime = int ( sqlResults [ 0 ] [ " time " ] )
2014-03-11 16:22:00 -04:00
if lastTime > int ( time . mktime ( datetime . datetime . today ( ) . timetuple ( ) ) ) :
lastTime = 0
2014-03-10 01:18:05 -04:00
else :
lastTime = 0
return datetime . datetime . fromtimestamp ( lastTime )
def setLastUpdate ( self , toDate = None ) :
if not toDate :
toDate = datetime . datetime . today ( )
myDB = self . _getDB ( )
myDB . upsert ( " lastUpdate " ,
{ ' time ' : int ( time . mktime ( toDate . timetuple ( ) ) ) } ,
{ ' provider ' : self . providerID } )
lastUpdate = property ( _getLastUpdate )
def shouldUpdate ( self ) :
# if we've updated recently then skip the update
if datetime . datetime . today ( ) - self . lastUpdate < datetime . timedelta ( minutes = self . minTime ) :
2014-03-25 01:57:24 -04:00
logger . log ( u " Last update was too soon, using old cache: today()- " + str ( self . lastUpdate ) + " < " + str (
datetime . timedelta ( minutes = self . minTime ) ) , logger . DEBUG )
2014-03-10 01:18:05 -04:00
return False
return True
2014-03-20 14:03:22 -04:00
def _addCacheEntry ( self , name , url , season = None , episodes = None , indexer_id = 0 , quality = None , extraNames = [ ] ) :
2014-03-10 01:18:05 -04:00
myDB = self . _getDB ( )
parse_result = None
# if we don't have complete info then parse the filename to get it
for curName in [ name ] + extraNames :
try :
2014-04-28 18:24:37 -04:00
myParser = NameParser ( regexMode = - 1 )
parse_result = myParser . parse ( curName )
2014-03-10 01:18:05 -04:00
except InvalidNameException :
logger . log ( u " Unable to parse the filename " + curName + " into a valid episode " , logger . DEBUG )
continue
if not parse_result :
2014-03-25 01:57:24 -04:00
logger . log ( u " Giving up because I ' m unable to parse this name: " + name , logger . DEBUG )
2014-03-10 01:18:05 -04:00
return None
if not parse_result . series_name :
logger . log ( u " No series name retrieved from " + name + " , unable to cache it " , logger . DEBUG )
return None
indexer_lang = None
2014-04-26 01:42:40 -04:00
if indexer_id :
# if we have only the indexer_id, use the database
showObj = helpers . findCertainShow ( sickbeard . showList , indexer_id )
if showObj :
self . indexer = int ( showObj . indexer )
indexer_lang = showObj . lang
else :
logger . log ( u " We were given a Indexer ID " + str ( indexer_id ) + " but it doesn ' t match a show we have in our list, so leaving indexer_id empty " , logger . DEBUG )
indexer_id = 0
# if no indexerID then fill out as much info as possible by searching the show name
2014-03-10 16:31:41 -04:00
if not indexer_id :
2014-04-28 19:03:49 -04:00
from_cache = False
2014-04-26 01:42:40 -04:00
# check the name cache and see if we already know what show this is
logger . log (
2014-04-28 19:03:49 -04:00
u " Checking the cache for Indexer ID of " + parse_result . series_name ,
2014-04-26 01:42:40 -04:00
logger . DEBUG )
2014-03-10 01:18:05 -04:00
2014-04-26 01:42:40 -04:00
# remember if the cache lookup worked or not so we know whether we should bother updating it later
2014-04-28 19:03:49 -04:00
indexer_id = name_cache . retrieveNameFromCache ( parse_result . series_name )
if indexer_id :
2014-04-26 01:42:40 -04:00
logger . log ( u " Cache lookup found " + repr ( indexer_id ) + " , using that " , logger . DEBUG )
from_cache = True
# if the cache failed, try looking up the show name in the database
2014-04-28 19:03:49 -04:00
if not indexer_id :
logger . log (
2014-04-28 19:08:29 -04:00
u " Checking the database for Indexer ID of " + str ( parse_result . series_name ) ,
2014-04-28 19:03:49 -04:00
logger . DEBUG )
2014-04-26 01:42:40 -04:00
showResult = helpers . searchDBForShow ( parse_result . series_name )
if showResult :
logger . log (
u " " + parse_result . series_name + " was found to be show " + showResult [ 2 ] + " ( " + str (
showResult [ 1 ] ) + " ) in our DB. " , logger . DEBUG )
indexer_id = showResult [ 1 ]
2014-04-28 19:03:49 -04:00
# if the database failed, try looking up the show name from scene exceptions list
if not indexer_id :
logger . log (
u " Checking the scene exceptions list for Indexer ID of " + parse_result . series_name ,
logger . DEBUG )
sceneResult = sickbeard . scene_exceptions . get_scene_exception_by_name ( parse_result . series_name )
if sceneResult :
logger . log (
2014-04-28 19:08:29 -04:00
u " " + str ( parse_result . series_name ) + " was found in scene exceptions list with Indexer ID: " + str ( sceneResult ) , logger . DEBUG )
2014-04-28 19:03:49 -04:00
indexer_id = sceneResult
2014-04-26 01:42:40 -04:00
# if the DB lookup fails then do a comprehensive regex search
2014-04-28 19:03:49 -04:00
if not indexer_id :
logger . log (
2014-04-28 19:08:29 -04:00
u " Checking the shows list for Indexer ID of " + str ( parse_result . series_name ) ,
2014-04-28 19:03:49 -04:00
logger . DEBUG )
2014-04-26 01:42:40 -04:00
for curShow in sickbeard . showList :
if show_name_helpers . isGoodResult ( name , curShow , False ) :
2014-04-28 19:03:49 -04:00
logger . log ( u " Successfully matched " + name + " to " + curShow . name + " from shows list " ,
2014-04-26 01:42:40 -04:00
logger . DEBUG )
indexer_id = curShow . indexerid
indexer_lang = curShow . lang
break
# if indexer_id was anything but None (0 or a number) then
if not from_cache :
name_cache . addNameToCache ( parse_result . series_name , indexer_id )
# if we came out with indexer_id = None it means we couldn't figure it out at all, just use 0 for that
if indexer_id == None :
indexer_id = 0
# if we found the show then retrieve the show object
2014-03-10 01:18:05 -04:00
if indexer_id :
try :
showObj = helpers . findCertainShow ( sickbeard . showList , indexer_id )
except ( MultipleShowObjectsException ) :
showObj = None
if showObj :
2014-04-26 01:42:40 -04:00
self . indexer = int ( showObj . indexer )
2014-03-10 01:18:05 -04:00
indexer_lang = showObj . lang
# if we weren't provided with season/episode information then get it from the name that we parsed
if not season :
2014-03-20 14:03:22 -04:00
season = parse_result . season_number if parse_result . season_number != None else 1
2014-03-10 01:18:05 -04:00
if not episodes :
episodes = parse_result . episode_numbers
# if we have an air-by-date show then get the real season/episode numbers
2014-04-28 05:15:29 -04:00
if ( parse_result . air_by_date or parse_result . sports ) and indexer_id :
2014-03-10 01:18:05 -04:00
try :
2014-03-26 15:28:46 -04:00
lINDEXER_API_PARMS = sickbeard . indexerApi ( self . indexer ) . api_params . copy ( )
2014-03-20 14:03:22 -04:00
if not ( indexer_lang == " " or indexer_lang == " en " or indexer_lang == None ) :
2014-03-10 01:18:05 -04:00
lINDEXER_API_PARMS [ ' language ' ] = indexer_lang
2014-03-26 15:28:46 -04:00
t = sickbeard . indexerApi ( self . indexer ) . indexer ( * * lINDEXER_API_PARMS )
2014-03-12 01:28:30 -04:00
2014-04-28 05:15:29 -04:00
epObj = None
if parse_result . air_by_date :
epObj = t [ indexer_id ] . airedOn ( parse_result . air_date ) [ 0 ]
elif parse_result . sports :
epObj = t [ indexer_id ] . airedOn ( parse_result . sports_date ) [ 0 ]
if epObj is None :
return None
2014-03-10 01:18:05 -04:00
season = int ( epObj [ " seasonnumber " ] )
episodes = [ int ( epObj [ " episodenumber " ] ) ]
2014-03-25 01:57:24 -04:00
except sickbeard . indexer_episodenotfound :
logger . log ( u " Unable to find episode with date " + str (
parse_result . air_date ) + " for show " + parse_result . series_name + " , skipping " , logger . WARNING )
2014-03-10 01:18:05 -04:00
return None
2014-03-25 01:57:24 -04:00
except sickbeard . indexer_error , e :
logger . log ( u " Unable to contact " + sickbeard . indexerApi ( self . indexer ) . name + " : " + ex ( e ) ,
logger . WARNING )
2014-03-10 01:18:05 -04:00
return None
2014-03-25 01:57:24 -04:00
episodeText = " | " + " | " . join ( map ( str , episodes ) ) + " | "
2014-03-10 01:18:05 -04:00
# get the current timestamp
curTimestamp = int ( time . mktime ( datetime . datetime . today ( ) . timetuple ( ) ) )
if not quality :
quality = Quality . sceneQuality ( name )
if not isinstance ( name , unicode ) :
name = unicode ( name , ' utf-8 ' )
2014-03-25 01:57:24 -04:00
myDB . action (
" INSERT INTO [ " + self . providerID + " ] (name, season, episodes, indexerid, url, time, quality) VALUES (?,?,?,?,?,?,?) " ,
[ name , season , episodeText , indexer_id , url , curTimestamp , quality ] )
2014-03-10 01:18:05 -04:00
def searchCache ( self , episode , manualSearch = False ) :
neededEps = self . findNeededEpisodes ( episode , manualSearch )
return neededEps [ episode ]
def listPropers ( self , date = None , delimiter = " . " ) :
myDB = self . _getDB ( )
sql = " SELECT * FROM [ " + self . providerID + " ] WHERE name LIKE ' % .PROPER. % ' OR name LIKE ' % .REPACK. % ' "
2014-03-20 14:03:22 -04:00
if date != None :
2014-03-10 01:18:05 -04:00
sql + = " AND time >= " + str ( int ( time . mktime ( date . timetuple ( ) ) ) )
#return filter(lambda x: x['indexerid'] != 0, myDB.select(sql))
return myDB . select ( sql )
def findNeededEpisodes ( self , episode = None , manualSearch = False ) :
neededEps = { }
if episode :
neededEps [ episode ] = [ ]
myDB = self . _getDB ( )
if not episode :
sqlResults = myDB . select ( " SELECT * FROM [ " + self . providerID + " ] " )
else :
2014-03-25 01:57:24 -04:00
sqlResults = myDB . select (
" SELECT * FROM [ " + self . providerID + " ] WHERE indexerid = ? AND season = ? AND episodes LIKE ? " ,
[ episode . show . indexerid , episode . season , " % | " + str ( episode . episode ) + " | % " ] )
2014-03-10 01:18:05 -04:00
# for each cache entry
for curResult in sqlResults :
2014-04-28 18:24:37 -04:00
# skip if we don't have a indexerid
indexerid = int ( curResult [ " indexerid " ] )
if not indexerid :
continue
2014-03-10 01:18:05 -04:00
# skip non-tv crap (but allow them for Newzbin cause we assume it's filtered well)
if self . providerID != ' newzbin ' and not show_name_helpers . filterBadReleases ( curResult [ " name " ] ) :
continue
# get the show object, or if it's not one of our shows then ignore it
try :
showObj = helpers . findCertainShow ( sickbeard . showList , int ( curResult [ " indexerid " ] ) )
except ( MultipleShowObjectsException ) :
showObj = None
2014-04-28 18:24:37 -04:00
2014-03-10 01:18:05 -04:00
if not showObj :
continue
# get season and ep data (ignoring multi-eps for now)
curSeason = int ( curResult [ " season " ] )
if curSeason == - 1 :
continue
curEp = curResult [ " episodes " ] . split ( " | " ) [ 1 ]
if not curEp :
continue
curEp = int ( curEp )
curQuality = int ( curResult [ " quality " ] )
2014-04-28 18:24:37 -04:00
# items stored in cache are scene numbered, convert before lookups
epObj = showObj . getEpisode ( curSeason , curEp , sceneConvert = True )
2014-03-10 01:18:05 -04:00
# if the show says we want that episode then add it to the list
2014-04-28 18:24:37 -04:00
if not showObj . wantEpisode ( epObj . season , epObj . episode , curQuality , manualSearch ) :
2014-03-25 01:57:24 -04:00
logger . log ( u " Skipping " + curResult [ " name " ] + " because we don ' t want an episode that ' s " +
Quality . qualityStrings [ curQuality ] , logger . DEBUG )
2014-03-10 01:18:05 -04:00
else :
if episode :
epObj = episode
else :
epObj = showObj . getEpisode ( curSeason , curEp )
# build a result object
title = curResult [ " name " ]
url = curResult [ " url " ]
logger . log ( u " Found result " + title + " at " + url )
result = self . provider . getResult ( [ epObj ] )
result . url = url
result . name = title
result . quality = curQuality
result . content = self . provider . getURL ( url ) \
2014-03-25 01:57:24 -04:00
if self . provider . providerType == sickbeard . providers . generic . GenericProvider . TORRENT \
and not url . startswith ( ' magnet ' ) else None
2014-03-10 01:18:05 -04:00
# add it to the list
if epObj not in neededEps :
neededEps [ epObj ] = [ result ]
else :
neededEps [ epObj ] . append ( result )
return neededEps