You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
3.2 KiB
99 lines
3.2 KiB
from httplib import HTTPSConnection
|
|
|
|
from couchpotato.core.helpers.encoding import toUnicode, tryUrlencode
|
|
from couchpotato.core.helpers.variable import getTitle, getIdentifier
|
|
from couchpotato.core.logger import CPLog
|
|
from couchpotato.core.notifications.base import Notification
|
|
|
|
|
|
log = CPLog(__name__)
|
|
|
|
autoload = 'Pushover'
|
|
|
|
|
|
class Pushover(Notification):
|
|
|
|
|
|
def notify(self, message = '', data = None, listener = None):
|
|
if not data: data = {}
|
|
|
|
http_handler = HTTPSConnection("api.pushover.net:443")
|
|
|
|
api_data = {
|
|
'user': self.conf('user_key'),
|
|
'token': self.conf('api_token'),
|
|
'message': toUnicode(message),
|
|
'priority': self.conf('priority'),
|
|
'sound': self.conf('sound'),
|
|
}
|
|
|
|
if data and getIdentifier(data):
|
|
api_data.update({
|
|
'url': toUnicode('http://www.imdb.com/title/%s/' % getIdentifier(data)),
|
|
'url_title': toUnicode('%s on IMDb' % getTitle(data)),
|
|
})
|
|
|
|
http_handler.request('POST', '/1/messages.json',
|
|
headers = {'Content-type': 'application/x-www-form-urlencoded'},
|
|
body = tryUrlencode(api_data)
|
|
)
|
|
|
|
response = http_handler.getresponse()
|
|
request_status = response.status
|
|
|
|
if request_status == 200:
|
|
log.info('Pushover notifications sent.')
|
|
return True
|
|
elif request_status == 401:
|
|
log.error('Pushover auth failed: %s', response.reason)
|
|
return False
|
|
else:
|
|
log.error('Pushover notification failed: %s', request_status)
|
|
return False
|
|
|
|
|
|
config = [{
|
|
'name': 'pushover',
|
|
'groups': [
|
|
{
|
|
'tab': 'notifications',
|
|
'list': 'notification_providers',
|
|
'name': 'pushover',
|
|
'options': [
|
|
{
|
|
'name': 'enabled',
|
|
'default': 0,
|
|
'type': 'enabler',
|
|
},
|
|
{
|
|
'name': 'user_key',
|
|
'description': 'Register on pushover.net to get one.'
|
|
},
|
|
{
|
|
'name': 'api_token',
|
|
'description': '<a href="https://pushover.net/apps/clone/couchpotato" target="_blank">Register on pushover.net</a> to get one.',
|
|
'advanced': True,
|
|
'default': 'YkxHMYDZp285L265L3IwH3LmzkTaCy',
|
|
},
|
|
{
|
|
'name': 'priority',
|
|
'default': 0,
|
|
'type': 'dropdown',
|
|
'values': [('Normal', 0), ('High', 1)],
|
|
},
|
|
{
|
|
'name': 'on_snatch',
|
|
'default': 0,
|
|
'type': 'bool',
|
|
'advanced': True,
|
|
'description': 'Also send message when movie is snatched.',
|
|
},
|
|
{
|
|
'name': 'sound',
|
|
'advanced': True,
|
|
'description': 'Define <a href="https://pushover.net/api%23sounds" target="_blank">custom sound</a> for Pushover alert.'
|
|
},
|
|
],
|
|
}
|
|
],
|
|
}]
|
|
|