2014-03-10 01:18:05 -04:00
|
|
|
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
|
|
# 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/>.
|
|
|
|
|
|
|
|
from httplib import HTTPSConnection, HTTPException
|
|
|
|
from urllib import urlencode
|
|
|
|
|
|
|
|
try:
|
|
|
|
# this only exists in 2.6
|
|
|
|
from ssl import SSLError
|
|
|
|
except ImportError:
|
|
|
|
# make a fake one since I don't know what it is supposed to be in 2.5
|
|
|
|
class SSLError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
import sickbeard
|
|
|
|
|
|
|
|
from sickbeard import logger, common
|
|
|
|
|
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
class ProwlNotifier:
|
2014-03-10 01:18:05 -04:00
|
|
|
def test_notify(self, prowl_api, prowl_priority):
|
2014-03-25 01:57:24 -04:00
|
|
|
return self._sendProwl(prowl_api, prowl_priority, event="Test",
|
|
|
|
message="Testing Prowl settings from Sick Beard", force=True)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def notify_snatch(self, ep_name):
|
|
|
|
if sickbeard.PROWL_NOTIFY_ONSNATCH:
|
2014-03-25 01:57:24 -04:00
|
|
|
self._sendProwl(prowl_api=None, prowl_priority=None, event=common.notifyStrings[common.NOTIFY_SNATCH],
|
|
|
|
message=ep_name)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def notify_download(self, ep_name):
|
|
|
|
if sickbeard.PROWL_NOTIFY_ONDOWNLOAD:
|
2014-03-25 01:57:24 -04:00
|
|
|
self._sendProwl(prowl_api=None, prowl_priority=None, event=common.notifyStrings[common.NOTIFY_DOWNLOAD],
|
|
|
|
message=ep_name)
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
def notify_subtitle_download(self, ep_name, lang):
|
|
|
|
if sickbeard.PROWL_NOTIFY_ONSUBTITLEDOWNLOAD:
|
2014-03-25 01:57:24 -04:00
|
|
|
self._sendProwl(prowl_api=None, prowl_priority=None,
|
|
|
|
event=common.notifyStrings[common.NOTIFY_SUBTITLE_DOWNLOAD], message=ep_name + ": " + lang)
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
def _sendProwl(self, prowl_api=None, prowl_priority=None, event=None, message=None, force=False):
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
if not sickbeard.USE_PROWL and not force:
|
2014-03-25 01:57:24 -04:00
|
|
|
return False
|
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
if prowl_api == None:
|
2014-03-10 01:18:05 -04:00
|
|
|
prowl_api = sickbeard.PROWL_API
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-20 14:03:22 -04:00
|
|
|
if prowl_priority == None:
|
2014-03-10 01:18:05 -04:00
|
|
|
prowl_priority = sickbeard.PROWL_PRIORITY
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
title = "Sick Beard"
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
logger.log(u"Prowl title: " + title, logger.DEBUG)
|
|
|
|
logger.log(u"Prowl event: " + event, logger.DEBUG)
|
|
|
|
logger.log(u"Prowl message: " + message, logger.DEBUG)
|
|
|
|
logger.log(u"Prowl api: " + prowl_api, logger.DEBUG)
|
|
|
|
logger.log(u"Prowl priority: " + prowl_priority, logger.DEBUG)
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
http_handler = HTTPSConnection("api.prowlapp.com")
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
data = {'apikey': prowl_api,
|
|
|
|
'application': title,
|
|
|
|
'event': event,
|
|
|
|
'description': message.encode('utf-8'),
|
2014-03-25 01:57:24 -04:00
|
|
|
'priority': prowl_priority}
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
http_handler.request("POST",
|
2014-03-25 01:57:24 -04:00
|
|
|
"/publicapi/add",
|
|
|
|
headers={'Content-type': "application/x-www-form-urlencoded"},
|
|
|
|
body=urlencode(data))
|
2014-03-10 01:18:05 -04:00
|
|
|
except (SSLError, HTTPException):
|
|
|
|
logger.log(u"Prowl notification failed.", logger.ERROR)
|
|
|
|
return False
|
|
|
|
response = http_handler.getresponse()
|
|
|
|
request_status = response.status
|
|
|
|
|
|
|
|
if request_status == 200:
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(u"Prowl notifications sent.", logger.DEBUG)
|
|
|
|
return True
|
|
|
|
elif request_status == 401:
|
|
|
|
logger.log(u"Prowl auth failed: %s" % response.reason, logger.ERROR)
|
|
|
|
return False
|
2014-03-10 01:18:05 -04:00
|
|
|
else:
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(u"Prowl notification failed.", logger.ERROR)
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
notifier = ProwlNotifier
|