Stop polluting Pushbullet messages with StopEvent JSON whenever the backend stops.
This commit is contained in:
parent
b0a5f1e272
commit
3daf39e3e0
1 changed files with 12 additions and 12 deletions
|
@ -41,6 +41,7 @@ class PushbulletBackend(Backend):
|
|||
:type proxy_port: int
|
||||
"""
|
||||
|
||||
# noinspection PyPackageRequirements
|
||||
from pushbullet import Pushbullet
|
||||
super().__init__(**kwargs)
|
||||
|
||||
|
@ -51,6 +52,7 @@ class PushbulletBackend(Backend):
|
|||
self.pb = Pushbullet(token)
|
||||
self.listener = None
|
||||
|
||||
# noinspection PyBroadException
|
||||
try:
|
||||
self.device = self.pb.get_device(self.device_name)
|
||||
except:
|
||||
|
@ -79,7 +81,8 @@ class PushbulletBackend(Backend):
|
|||
push = self._get_latest_push()
|
||||
elif data['type'] == 'push':
|
||||
push = data['push']
|
||||
else: return # Not a push notification
|
||||
else:
|
||||
return # Not a push notification
|
||||
|
||||
if not push:
|
||||
return
|
||||
|
@ -89,7 +92,8 @@ class PushbulletBackend(Backend):
|
|||
event = PushbulletEvent(**push)
|
||||
self.on_message(event)
|
||||
|
||||
if 'body' not in push: return
|
||||
if 'body' not in push:
|
||||
return
|
||||
self.logger.debug('Received push: {}'.format(push))
|
||||
|
||||
body = push['body']
|
||||
|
@ -108,9 +112,10 @@ class PushbulletBackend(Backend):
|
|||
return callback
|
||||
|
||||
def get_device_id(self):
|
||||
# noinspection PyBroadException
|
||||
try:
|
||||
return self.pb.get_device(self.device_name).device_iden
|
||||
except Exception as e:
|
||||
except Exception:
|
||||
device = self.pb.new_device(self.device_name, model='Platypush virtual device',
|
||||
manufacturer='platypush', icon='system')
|
||||
|
||||
|
@ -119,11 +124,6 @@ class PushbulletBackend(Backend):
|
|||
|
||||
return device.device_iden
|
||||
|
||||
def send_message(self, msg):
|
||||
if isinstance(msg, dict):
|
||||
msg = json.dumps(msg)
|
||||
self.device.push_note(title=None, body=str(msg))
|
||||
|
||||
def close(self):
|
||||
if self.listener:
|
||||
self.listener.close()
|
||||
|
@ -132,6 +132,7 @@ class PushbulletBackend(Backend):
|
|||
return self.close()
|
||||
|
||||
def run(self):
|
||||
# noinspection PyPackageRequirements
|
||||
from pushbullet import Listener
|
||||
super().run()
|
||||
|
||||
|
@ -145,4 +146,3 @@ class PushbulletBackend(Backend):
|
|||
self.listener.run_forever()
|
||||
|
||||
# vim:sw=4:ts=4:et:
|
||||
|
||||
|
|
Loading…
Reference in a new issue