diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-17 13:15:06 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-17 16:17:28 +0100 |
commit | fa87c981e1efabe85a88144479b0dd7131b7da12 (patch) | |
tree | c7f91057f645e8c8f0d4a0e37b99ed1a75b7c613 /synapse/handlers/appservice.py | |
parent | Initial empty implementation that just registers an API endpoint handler (diff) | |
download | synapse-fa87c981e1efabe85a88144479b0dd7131b7da12.tar.xz |
Thread 3PU lookup through as far as the AS API object; which currently noöps it
Diffstat (limited to 'synapse/handlers/appservice.py')
-rw-r--r-- | synapse/handlers/appservice.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/synapse/handlers/appservice.py b/synapse/handlers/appservice.py index 051ccdb380..69fd766613 100644 --- a/synapse/handlers/appservice.py +++ b/synapse/handlers/appservice.py @@ -121,6 +121,21 @@ class ApplicationServicesHandler(object): defer.returnValue(result) @defer.inlineCallbacks + def query_3pu(self, protocol, fields): + services = yield self._get_services_for_3pn(protocol) + + # TODO(paul): scattergather + results = [] + for service in services: + result = yield self.appservice_api.query_3pu( + service, protocol, fields + ) + if result: + results.append(result) + + defer.returnValue(results) + + @defer.inlineCallbacks def _get_services_for_event(self, event, restrict_to="", alias_list=None): """Retrieve a list of application services interested in this event. @@ -164,6 +179,12 @@ class ApplicationServicesHandler(object): defer.returnValue(interested_list) @defer.inlineCallbacks + def _get_services_for_3pn(self, protocol): + # TODO(paul): Filter by protocol + services = yield self.store.get_app_services() + defer.returnValue(services) + + @defer.inlineCallbacks def _is_unknown_user(self, user_id): if not self.is_mine_id(user_id): # we don't know if they are unknown or not since it isn't one of our |