mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 03:45:01 -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!
84 lines
3.0 KiB
Python
84 lines
3.0 KiB
Python
# Author: Sebastien Erard <sebastien_erard@hotmail.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
|
|
# along with Sick Beard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import os
|
|
import subprocess
|
|
|
|
import sickbeard
|
|
|
|
from sickbeard import logger
|
|
from sickbeard import encodingKludge as ek
|
|
from sickbeard.exceptions import ex
|
|
|
|
class synoIndexNotifier:
|
|
|
|
def notify_snatch(self, ep_name):
|
|
pass
|
|
|
|
def notify_download(self, ep_name):
|
|
pass
|
|
|
|
def notify_subtitle_download(self, ep_name, lang):
|
|
pass
|
|
|
|
def moveFolder(self, old_path, new_path):
|
|
self.moveObject(old_path, new_path)
|
|
|
|
def moveFile(self, old_file, new_file):
|
|
self.moveObject(old_file, new_file)
|
|
|
|
def moveObject(self, old_path, new_path):
|
|
if sickbeard.USE_SYNOINDEX:
|
|
synoindex_cmd = ['/usr/syno/bin/synoindex', '-N', ek.ek(os.path.abspath, new_path), ek.ek(os.path.abspath, old_path)]
|
|
logger.log(u"Executing command "+str(synoindex_cmd))
|
|
logger.log(u"Absolute path to command: "+ek.ek(os.path.abspath, synoindex_cmd[0]), logger.DEBUG)
|
|
try:
|
|
p = subprocess.Popen(synoindex_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, cwd=sickbeard.PROG_DIR)
|
|
out, err = p.communicate() #@UnusedVariable
|
|
logger.log(u"Script result: "+str(out), logger.DEBUG)
|
|
except OSError, e:
|
|
logger.log(u"Unable to run synoindex: "+ex(e))
|
|
|
|
def deleteFolder(self, cur_path):
|
|
self.makeObject('-D', cur_path)
|
|
|
|
def addFolder(self, cur_path):
|
|
self.makeObject('-A', cur_path)
|
|
|
|
def deleteFile(self, cur_file):
|
|
self.makeObject('-d', cur_file)
|
|
|
|
def addFile(self, cur_file):
|
|
self.makeObject('-a', cur_file)
|
|
|
|
def makeObject(self, cmd_arg, cur_path):
|
|
if sickbeard.USE_SYNOINDEX:
|
|
synoindex_cmd = ['/usr/syno/bin/synoindex', cmd_arg, ek.ek(os.path.abspath, cur_path)]
|
|
logger.log(u"Executing command "+str(synoindex_cmd))
|
|
logger.log(u"Absolute path to command: "+ek.ek(os.path.abspath, synoindex_cmd[0]), logger.DEBUG)
|
|
try:
|
|
p = subprocess.Popen(synoindex_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, cwd=sickbeard.PROG_DIR)
|
|
out, err = p.communicate() #@UnusedVariable
|
|
logger.log(u"Script result: "+str(out), logger.DEBUG)
|
|
except OSError, e:
|
|
logger.log(u"Unable to run synoindex: "+ex(e))
|
|
|
|
notifier = synoIndexNotifier
|