This repository has been archived by the owner on Feb 25, 2018. It is now read-only.
forked from Zren/PyQuassel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pushnotification.py
57 lines (45 loc) · 1.71 KB
/
pushnotification.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from pushbullet import PushBullet
class PushBulletNotification(PushBullet):
def __init__(self, apiKey):
super().__init__(apiKey)
self.activePush = None
self.device = None
@property
def device_iden(self):
return self.device['iden'] if self.device is not None else None
def pushMessage(self, channel, senderNick, messageContent, **kwargs):
messageFormat = '[{}] {}: {}'
title = ''
body = ''
if self.activePush is not None:
push = self.get_push(self.activePush['iden'])
print(push)
if not push['dismissed']:
title = push.get('title', '')
body = push.get('body', '')
if push['active']:
self.delete_push(self.activePush['iden'])
messageLine = messageFormat.format(channel, senderNick, messageContent)
if len(title) > 0:
if len(body) > 0:
body += '\n' + messageLine
else:
body = messageLine
else:
title = messageLine
push = self.push_note(title=title, body=body, device_iden=self.device_iden, **kwargs)
self.activePush = push
if __name__ == '__main__':
import logging
logging.basicConfig(level=logging.DEBUG)
import config
# p = PushBullet(config.pushbulletApiKey)
p = PushBulletNotification(config.pushbulletAccessToken)
p.device = p.get_device(nickname=config.pushbulletDeviceName)
# p.device = 'ujAjoxHjkmisjAcc26Tgia'
p.pushMessage('#zren', 'Zren', 'Testing 1')
import time
time.sleep(3)
p.pushMessage('#zren', 'Zren', 'Testing 2')
time.sleep(10)
p.pushMessage('#zren', 'Zren', 'Testing 3')