2014-03-10 01:18:05 -04:00
|
|
|
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# This file is part of SickRage.
|
2014-03-10 01:18:05 -04:00
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# SickRage is free software: you can redistribute it and/or modify
|
2014-03-10 01:18:05 -04: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-05-23 08:37:22 -04:00
|
|
|
# SickRage is distributed in the hope that it will be useful,
|
2014-03-10 01:18:05 -04:00
|
|
|
# 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
|
2014-05-23 08:37:22 -04:00
|
|
|
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
import os.path
|
|
|
|
|
|
|
|
import sickbeard
|
|
|
|
|
|
|
|
from sickbeard import logger
|
|
|
|
from sickbeard import encodingKludge as ek
|
|
|
|
from sickbeard import processTV
|
|
|
|
|
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
class PostProcesser():
|
2014-05-19 13:40:25 -04:00
|
|
|
def run(self, force=False):
|
2014-03-10 01:18:05 -04:00
|
|
|
if not ek.ek(os.path.isdir, sickbeard.TV_DOWNLOAD_DIR):
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(u"Automatic post-processing attempted but dir " + sickbeard.TV_DOWNLOAD_DIR + " doesn't exist",
|
|
|
|
logger.ERROR)
|
2014-03-10 01:18:05 -04:00
|
|
|
return
|
|
|
|
|
|
|
|
if not ek.ek(os.path.isabs, sickbeard.TV_DOWNLOAD_DIR):
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(
|
|
|
|
u"Automatic post-processing attempted but dir " + sickbeard.TV_DOWNLOAD_DIR + " is relative (and probably not what you really want to process)",
|
|
|
|
logger.ERROR)
|
2014-03-10 01:18:05 -04:00
|
|
|
return
|
|
|
|
|
|
|
|
processTV.processDir(sickbeard.TV_DOWNLOAD_DIR)
|
2014-06-30 13:48:18 -04:00
|
|
|
|
|
|
|
def __del__(self):
|
|
|
|
pass
|