diff options
author | Erik Johnston <erik@matrix.org> | 2014-10-15 16:06:59 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-10-15 16:06:59 +0100 |
commit | e7bc1291a079224315cea5c756061ad711241be1 (patch) | |
tree | b9f303a57a6700df30e1b985a991ca1b7d09f63c /synapse/handlers/_base.py | |
parent | Add missing package storate.state (diff) | |
download | synapse-e7bc1291a079224315cea5c756061ad711241be1.tar.xz |
Begin making auth use event.old_state_events
Diffstat (limited to 'synapse/handlers/_base.py')
-rw-r--r-- | synapse/handlers/_base.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/synapse/handlers/_base.py b/synapse/handlers/_base.py index de4d23bbb3..cd6c35f194 100644 --- a/synapse/handlers/_base.py +++ b/synapse/handlers/_base.py @@ -44,9 +44,17 @@ class BaseHandler(object): @defer.inlineCallbacks def _on_new_room_event(self, event, snapshot, extra_destinations=[], - extra_users=[]): + extra_users=[], suppress_auth=False): snapshot.fill_out_prev_events(event) + yield self.state_handler.annotate_state_groups(event) + + if not suppress_auth: + yield self.auth.check(event, snapshot, raises=True) + + if hasattr(event, "state_key"): + yield self.state_handler.handle_new_event(event, snapshot) + yield self.store.persist_event(event) destinations = set(extra_destinations) |