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.
24 lines
769 B
24 lines
769 B
from couchpotato.core.logger import CPLog
|
|
from couchpotato.core.notifications.base import Notification
|
|
from pynmwp import PyNMWP
|
|
|
|
log = CPLog(__name__)
|
|
|
|
|
|
class NotifyMyWP(Notification):
|
|
|
|
def notify(self, message = '', data = {}):
|
|
|
|
if self.isDisabled():
|
|
return
|
|
|
|
keys = self.conf('api_key').split(',')
|
|
p = PyNMWP(keys, self.conf('dev_key'))
|
|
|
|
response = p.push(application = self.default_title, event = message, description = message, priority = self.conf('priority'), batch_mode = len(keys) > 1)
|
|
|
|
for key in keys:
|
|
if not response[key]['Code'] == u'200':
|
|
log.error('Could not send notification to NotifyMyWindowsPhone (%s). %s' % (key, response[key]['message']))
|
|
|
|
return response
|
|
|