mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43: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.
96 lines
3.5 KiB
Python
Executable file
96 lines
3.5 KiB
Python
Executable file
# Author: Rafael Silva <rpluto@gmail.com>
|
|
# Author: Marvin Pinto <me@marvinp.ca>
|
|
# Author: Dennis Lutter <lad1337@gmail.com>
|
|
# 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 time
|
|
import urllib
|
|
import urllib2
|
|
|
|
import sickbeard
|
|
from sickbeard.exceptions import ex
|
|
from sickbeard.notifiers.generic import Notifier
|
|
|
|
|
|
class Boxcar2Notifier(Notifier):
|
|
|
|
def __init__(self):
|
|
super(Boxcar2Notifier, self).__init__()
|
|
|
|
self.sg_logo_file = 'apple-touch-icon-60x60.png'
|
|
|
|
def _notify(self, title, body, access_token=None, sound=None, **kwargs):
|
|
"""
|
|
Sends a boxcar2 notification to the address provided
|
|
|
|
title: The title of the message
|
|
body: The message to send
|
|
access_token: To send to this device
|
|
sound: Sound profile to use
|
|
|
|
returns: True if the message succeeded, False otherwise
|
|
"""
|
|
access_token = self._choose(access_token, sickbeard.BOXCAR2_ACCESSTOKEN)
|
|
sound = self._choose(sound, sickbeard.BOXCAR2_SOUND)
|
|
|
|
# build up the URL and parameters
|
|
# more info goes here -
|
|
# https://boxcar.uservoice.com/knowledgebase/articles/306788-how-to-send-your-boxcar-account-a-notification
|
|
body = body.strip().encode('utf-8')
|
|
|
|
data = urllib.urlencode({
|
|
'user_credentials': access_token,
|
|
'notification[title]': '%s - %s' % (title, body),
|
|
'notification[long_message]': body,
|
|
'notification[sound]': sound,
|
|
'notification[source_name]': 'SickGear',
|
|
'notification[icon_url]': self._sg_logo_url
|
|
})
|
|
|
|
# send the request to boxcar2
|
|
result = None
|
|
try:
|
|
req = urllib2.Request('https://new.boxcar.io/api/notifications')
|
|
handle = urllib2.urlopen(req, data)
|
|
handle.close()
|
|
|
|
except urllib2.URLError as e:
|
|
if not hasattr(e, 'code'):
|
|
self._log_error(u'Notification failed: %s' % ex(e))
|
|
else:
|
|
result = 'Notification failed. Error code: %s' % e.code
|
|
self._log_error(result)
|
|
|
|
if 503 == e.code:
|
|
result = 'Server too busy to handle the request at this time'
|
|
self._log_warning(result)
|
|
else:
|
|
if 404 == e.code:
|
|
result = 'Access token is wrong/not associated to a device'
|
|
self._log_error(result)
|
|
elif 401 == e.code:
|
|
result = 'Access token not recognized'
|
|
self._log_error(result)
|
|
elif 400 == e.code:
|
|
result = 'Wrong data sent to Boxcar'
|
|
self._log_error(result)
|
|
|
|
return self._choose((True, 'Failed to send notification: %s' % result)[bool(result)], not bool(result))
|
|
|
|
|
|
notifier = Boxcar2Notifier
|