2014-03-10 05:18:05 +00:00
|
|
|
# Author: Nyaran <nyayukko@gmail.com>
|
|
|
|
#
|
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 Notifier
|
|
|
|
|
|
|
|
|
|
|
|
class SynologyNotifier(Notifier):
|
|
|
|
|
|
|
|
def _notify(self, title, body, **kwargs):
|
|
|
|
|
|
|
|
synodsmnotify_cmd = ['/usr/syno/bin/synodsmnotify', '@administrators', title, body]
|
|
|
|
self._log(u'Executing command ' + str(synodsmnotify_cmd))
|
|
|
|
self._log_debug(u'Absolute path to command: ' + ek.ek(os.path.abspath, synodsmnotify_cmd[0]))
|
2014-03-10 05:18:05 +00:00
|
|
|
try:
|
2014-03-25 05:57:24 +00:00
|
|
|
p = subprocess.Popen(synodsmnotify_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(u'Unable to run synodsmnotify: ' + ex(e))
|
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 = SynologyNotifier
|