mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
ae4173e8c0
Change use specific logger functions for debug, warning, error.
64 lines
2.3 KiB
Python
64 lines
2.3 KiB
Python
#
|
|
# 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 .generic import Notifier
|
|
import sickgear
|
|
|
|
from _23 import urlencode
|
|
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, sickgear.PROWL_API)
|
|
prowl_priority = self._choose(prowl_priority, sickgear.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 = f'Authentication, {response.reason} (bad API key?)'
|
|
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
|