mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
3fa750651c
Notifiers are now loaded into memory on demand. Add bubble links to Notifications config tabs. Add Discordapp notifier to Notifications config/Social. Add Gitter notifier to Notifications config/Social. Change order of notifiers in Notifications config tabs. Remove Pushalot notifier. Remove XBMC notifier. Refactor update_library, notify, test notify and test results functions. Change most IDs and vars consistent for HTML, CSS, JS, and Python - related to notifications, camelCase for JS, underscore separated lower_case for python, hyphen separated-lowercase for CSS. A couple of exceptions have been left untouched in this clean up. Change commented out some unused vars in preparation for later removal.
65 lines
2.4 KiB
Python
65 lines
2.4 KiB
Python
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of SickGear.
|
|
#
|
|
# SickGear 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.
|
|
#
|
|
# SickGear 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 SickGear. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import socket
|
|
from ssl import SSLError
|
|
from urllib import urlencode
|
|
|
|
import sickbeard
|
|
from sickbeard.notifiers.generic import Notifier
|
|
|
|
from lib.six import moves
|
|
|
|
|
|
class ProwlNotifier(Notifier):
|
|
|
|
def _notify(self, title, body, prowl_api=None, prowl_priority=None, **kwargs):
|
|
|
|
prowl_api = self._choose(prowl_api, sickbeard.PROWL_API)
|
|
prowl_priority = self._choose(prowl_priority, sickbeard.PROWL_PRIORITY)
|
|
|
|
self._log_debug('Sending notice with details: title="%s", message="%s", priority=%s, api=%s' % (
|
|
title, body, prowl_priority, prowl_api))
|
|
|
|
http_handler = moves.http_client.HTTPSConnection('api.prowlapp.com')
|
|
|
|
data = dict(apikey=prowl_api, application='SickGear', event=title,
|
|
description=body.encode('utf-8'), priority=prowl_priority)
|
|
|
|
try:
|
|
http_handler.request('POST', '/publicapi/add',
|
|
headers={'Content-type': 'application/x-www-form-urlencoded'}, body=urlencode(data))
|
|
except (SSLError, moves.http_client.HTTPException, socket.error):
|
|
result = 'Connection failed'
|
|
self._log_error(result)
|
|
else:
|
|
response = http_handler.getresponse()
|
|
result = None
|
|
|
|
if 200 != response.status:
|
|
if 401 == response.status:
|
|
result = u'Authentication, %s (bad API key?)' % response.reason
|
|
else:
|
|
result = 'Http response code "%s"' % response.status
|
|
|
|
self._log_error(result)
|
|
|
|
return self._choose((True, 'Failed to send notification: %s' % result)[bool(result)], not bool(result))
|
|
|
|
|
|
notifier = ProwlNotifier
|