Support membership events and more camelcase/underscores

This commit is contained in:
David Baker 2015-01-26 17:27:28 +00:00
parent 69a75b7ebe
commit b481889117
2 changed files with 8 additions and 4 deletions

View File

@ -65,6 +65,10 @@ class Pusher(object):
# let's assume you probably know about messages you sent yourself
defer.returnValue(['dont_notify'])
if ev['type'] == 'm.room.member':
if ev['state_key'] != self.user_name:
defer.returnValue(['dont_notify'])
rules = yield self.store.get_push_rules_for_user_name(self.user_name)
for r in rules:

View File

@ -65,8 +65,6 @@ class HttpPusher(Pusher):
d = {
'notification': {
'transition': 'new',
# everything is new for now: we don't have read receipts
'id': event['event_id'],
'type': event['type'],
'from': event['user_id'],
@ -89,11 +87,13 @@ class HttpPusher(Pusher):
]
}
}
if event['type'] == 'm.room.member':
d['notification']['membership'] = event['content']['membership']
if len(ctx['aliases']):
d['notification']['roomAlias'] = ctx['aliases'][0]
d['notification']['room_alias'] = ctx['aliases'][0]
if 'name' in ctx:
d['notification']['roomName'] = ctx['name']
d['notification']['room_name'] = ctx['name']
defer.returnValue(d)