mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-10 19:35:08 -05:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
117 lines
4.4 KiB
Python
117 lines
4.4 KiB
Python
# Author: Tyler Fenby <tylerfenby@gmail.com>
|
|
# 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
|
|
|
|
from __future__ import with_statement
|
|
|
|
import sickbeard
|
|
from sickbeard import logger
|
|
from sickbeard import exceptions
|
|
from sickbeard import show_name_helpers
|
|
from sickbeard import helpers
|
|
from sickbeard import search_queue
|
|
from sickbeard import failed_history
|
|
from sickbeard import scene_exceptions
|
|
|
|
from sickbeard.name_parser.parser import NameParser, InvalidNameException
|
|
|
|
|
|
class FailedProcessor(object):
|
|
"""Take appropriate action when a download fails to complete"""
|
|
|
|
def __init__(self, dirName, nzbName):
|
|
"""
|
|
dirName: Full path to the folder of the failed download
|
|
nzbName: Full name of the nzb file that failed
|
|
"""
|
|
self.dir_name = dirName
|
|
self.nzb_name = nzbName
|
|
|
|
self._show_obj = None
|
|
|
|
self.log = ""
|
|
|
|
def process(self):
|
|
self._log(u"Failed download detected: (" + str(self.nzb_name) + ", " + str(self.dir_name) + ")")
|
|
|
|
releaseName = show_name_helpers.determineReleaseName(self.dir_name, self.nzb_name)
|
|
if releaseName is None:
|
|
self._log(u"Warning: unable to find a valid release name.", logger.WARNING)
|
|
raise exceptions.FailedProcessingFailed()
|
|
|
|
parser = NameParser(False)
|
|
try:
|
|
parsed = parser.parse(releaseName, True)
|
|
except InvalidNameException:
|
|
self._log(u"Error: release name is invalid: " + releaseName, logger.WARNING)
|
|
raise exceptions.FailedProcessingFailed()
|
|
|
|
logger.log(u"name_parser info: ", logger.DEBUG)
|
|
logger.log(u" - " + str(parsed.series_name), logger.DEBUG)
|
|
logger.log(u" - " + str(parsed.season_number), logger.DEBUG)
|
|
logger.log(u" - " + str(parsed.episode_numbers), logger.DEBUG)
|
|
logger.log(u" - " + str(parsed.extra_info), logger.DEBUG)
|
|
logger.log(u" - " + str(parsed.release_group), logger.DEBUG)
|
|
logger.log(u" - " + str(parsed.air_date), logger.DEBUG)
|
|
|
|
show_id = self._get_show_id(parsed.series_name)
|
|
if show_id is None:
|
|
self._log(u"Warning: couldn't find show ID", logger.WARNING)
|
|
raise exceptions.FailedProcessingFailed()
|
|
|
|
self._log(u"Found show_id: " + str(show_id), logger.DEBUG)
|
|
|
|
self._show_obj = helpers.findCertainShow(sickbeard.showList, show_id)
|
|
if self._show_obj is None:
|
|
self._log(u"Could not create show object. Either the show hasn't been added to SickBeard, or it's still loading (if SB was restarted recently)", logger.WARNING)
|
|
raise exceptions.FailedProcessingFailed()
|
|
|
|
# figure out what segment the episode is in and remember it so we can backlog it
|
|
if self._show_obj.air_by_date:
|
|
segment = str(parsed.air_date)[:7]
|
|
else:
|
|
segment = parsed.season_number
|
|
|
|
cur_failed_queue_item = search_queue.FailedQueueItem(self._show_obj, segment, parsed.episode_numbers)
|
|
sickbeard.searchQueueScheduler.action.add_item(cur_failed_queue_item)
|
|
|
|
return True
|
|
|
|
def _log(self, message, level=logger.MESSAGE):
|
|
"""Log to regular logfile and save for return for PP script log"""
|
|
logger.log(message, level)
|
|
self.log += message + "\n"
|
|
|
|
def _get_show_id(self, series_name):
|
|
"""Find and return show ID by searching exceptions, then DB"""
|
|
|
|
show_names = show_name_helpers.sceneToNormalShowNames(series_name)
|
|
|
|
logger.log(u"show_names: " + str(show_names), logger.DEBUG)
|
|
|
|
for show_name in show_names:
|
|
exception = scene_exceptions.get_scene_exception_by_name(show_name)
|
|
if exception is not None:
|
|
return exception
|
|
|
|
for show_name in show_names:
|
|
found_info = helpers.searchDBForShow(show_name)
|
|
if found_info is not None:
|
|
return(found_info[0])
|
|
|
|
return None
|
|
|