mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-05 17:05:03 -05:00
a4c8c53c91
Searched for other occurrences for the search_queue.FailedQueueItem() call. Changed segment to [segment] The failedDownloadQueueItem always expects a single epObj in the segment. But when checking multiple episodes as "Failed" in displayShow, an array is provided. I've changed the queueItem to always iterate over it as an array. And i've made sure that when retry a single episode, it's also send to the queueItem as an array (with a single element). I've had to adapt the queuing functionality in webserve for this.
78 lines
3.1 KiB
Python
78 lines
3.1 KiB
Python
# Author: Tyler Fenby <tylerfenby@gmail.com>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of SickRage.
|
|
#
|
|
# SickRage 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.
|
|
#
|
|
# SickRage 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 search_queue
|
|
from sickbeard.name_parser.parser import NameParser, InvalidNameException, InvalidShowException
|
|
|
|
|
|
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.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()
|
|
|
|
try:
|
|
parser = NameParser(False, convert=True)
|
|
parsed = parser.parse(releaseName)
|
|
except InvalidNameException:
|
|
self._log(u"Error: release name is invalid: " + releaseName, logger.DEBUG)
|
|
raise exceptions.FailedProcessingFailed()
|
|
except InvalidShowException:
|
|
self._log(u"Error: unable to parse release name " + releaseName + " into a valid show", logger.DEBUG)
|
|
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)
|
|
|
|
for episode in parsed.episode_numbers:
|
|
segment = parsed.show.getEpisode(parsed.season_number, episode)
|
|
|
|
cur_failed_queue_item = search_queue.FailedQueueItem(parsed.show, [segment])
|
|
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" |