Add stub functions and work out execution flow to implement AS event stream polling.
1 files changed, 19 insertions, 0 deletions
diff --git a/synapse/storage/appservice.py b/synapse/storage/appservice.py
index dc3666efd4..435ccfd6fc 100644
--- a/synapse/storage/appservice.py
+++ b/synapse/storage/appservice.py
@@ -17,6 +17,7 @@ from twisted.internet import defer
from synapse.api.errors import StoreError
from synapse.appservice import ApplicationService
+from synapse.storage.roommember import RoomsForUser
from ._base import SQLBaseStore
@@ -151,6 +152,16 @@ class ApplicationServiceStore(SQLBaseStore):
defer.returnValue(self.services_cache)
@defer.inlineCallbacks
+ def get_app_service_by_user_id(self, user_id):
+ yield self.cache_defer # make sure the cache is ready
+
+ for service in self.services_cache:
+ if service.sender == user_id:
+ defer.returnValue(service)
+ return
+ defer.returnValue(None)
+
+ @defer.inlineCallbacks
def get_app_service_by_token(self, token, from_cache=True):
"""Get the application service with the given token.
@@ -174,6 +185,14 @@ class ApplicationServiceStore(SQLBaseStore):
# TODO: This should be JOINed with the application_services_regex table.
@defer.inlineCallbacks
+ def get_app_service_rooms(self, service):
+ logger.info("get_app_service_rooms -> %s", service)
+
+ # TODO stub
+ yield self.cache_defer
+ defer.returnValue([RoomsForUser("!foo:bar", service.sender, "join")])
+
+ @defer.inlineCallbacks
def _populate_cache(self):
"""Populates the ApplicationServiceCache from the database."""
sql = ("SELECT * FROM application_services LEFT JOIN "
|