2014-03-10 05:18:05 +00:00
|
|
|
# Author: Sebastien Erard <sebastien_erard@hotmail.com>
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# This file is part of SickGear.
|
2014-03-10 05:18:05 +00:00
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# SickGear is free software: you can redistribute it and/or modify
|
2014-03-10 05:18:05 +00: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-11-12 16:43:14 +00:00
|
|
|
# SickGear is distributed in the hope that it will be useful,
|
2014-03-10 05:18:05 +00: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-11-12 16:43:14 +00:00
|
|
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
import sickbeard
|
2017-10-17 15:43:28 +00:00
|
|
|
# noinspection PyPep8Naming
|
2014-03-10 05:18:05 +00:00
|
|
|
from sickbeard import encodingKludge as ek
|
|
|
|
from sickbeard.exceptions import ex
|
2017-10-17 15:43:28 +00:00
|
|
|
from sickbeard.notifiers.generic import BaseNotifier
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
|
2017-10-17 15:43:28 +00:00
|
|
|
# noinspection PyPep8Naming
|
|
|
|
class SynoIndexNotifier(BaseNotifier):
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
def moveFolder(self, old_path, new_path):
|
2017-10-17 15:43:28 +00:00
|
|
|
self._move_object(old_path, new_path)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
def moveFile(self, old_file, new_file):
|
2017-10-17 15:43:28 +00:00
|
|
|
self._move_object(old_file, new_file)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2017-10-17 15:43:28 +00:00
|
|
|
def _move_object(self, old_path, new_path):
|
|
|
|
if self.is_enabled():
|
2014-03-25 05:57:24 +00:00
|
|
|
synoindex_cmd = ['/usr/syno/bin/synoindex', '-N', ek.ek(os.path.abspath, new_path),
|
|
|
|
ek.ek(os.path.abspath, old_path)]
|
2017-10-17 15:43:28 +00:00
|
|
|
self._log_debug(u'Executing command ' + str(synoindex_cmd))
|
|
|
|
self._log_debug(u'Absolute path to command: ' + ek.ek(os.path.abspath, synoindex_cmd[0]))
|
2014-03-10 05:18:05 +00:00
|
|
|
try:
|
2014-03-25 05:57:24 +00:00
|
|
|
p = subprocess.Popen(synoindex_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
|
|
|
|
cwd=sickbeard.PROG_DIR)
|
2017-10-17 15:43:28 +00:00
|
|
|
out, err = p.communicate()
|
|
|
|
self._log_debug(u'Script result: ' + str(out))
|
2015-06-08 12:47:01 +00:00
|
|
|
except OSError as e:
|
2017-10-17 15:43:28 +00:00
|
|
|
self._log_error(u'Unable to run synoindex: ' + ex(e))
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
def deleteFolder(self, cur_path):
|
2017-10-17 15:43:28 +00:00
|
|
|
self._make_object('-D', cur_path)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
def addFolder(self, cur_path):
|
2017-10-17 15:43:28 +00:00
|
|
|
self._make_object('-A', cur_path)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
def deleteFile(self, cur_file):
|
2017-10-17 15:43:28 +00:00
|
|
|
self._make_object('-d', cur_file)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
def addFile(self, cur_file):
|
2017-10-17 15:43:28 +00:00
|
|
|
self._make_object('-a', cur_file)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2017-10-17 15:43:28 +00:00
|
|
|
def _make_object(self, cmd_arg, cur_path):
|
|
|
|
if self.is_enabled():
|
2014-03-10 05:18:05 +00:00
|
|
|
synoindex_cmd = ['/usr/syno/bin/synoindex', cmd_arg, ek.ek(os.path.abspath, cur_path)]
|
2017-10-17 15:43:28 +00:00
|
|
|
self._log_debug(u'Executing command ' + str(synoindex_cmd))
|
|
|
|
self._log_debug(u'Absolute path to command: ' + ek.ek(os.path.abspath, synoindex_cmd[0]))
|
2014-03-10 05:18:05 +00:00
|
|
|
try:
|
2014-03-25 05:57:24 +00:00
|
|
|
p = subprocess.Popen(synoindex_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
|
|
|
|
cwd=sickbeard.PROG_DIR)
|
2017-10-17 15:43:28 +00:00
|
|
|
out, err = p.communicate()
|
|
|
|
self._log_debug(u'Script result: ' + str(out))
|
2015-06-08 12:47:01 +00:00
|
|
|
except OSError as e:
|
2017-10-17 15:43:28 +00:00
|
|
|
self._log_error(u'Unable to run synoindex: ' + ex(e))
|
|
|
|
|
|
|
|
def update_library(self, ep_obj=None, **kwargs):
|
|
|
|
self.addFile(ep_obj.location)
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2017-10-17 15:43:28 +00:00
|
|
|
notifier = SynoIndexNotifier
|