2015-01-27 16:50:28 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2015 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from synapse.api.errors import StoreError
|
|
|
|
|
|
|
|
from ._base import SQLBaseStore
|
|
|
|
|
|
|
|
|
2015-01-27 17:23:46 +01:00
|
|
|
# XXX: This feels like it should belong in a "models" module, not storage.
|
|
|
|
class ApplicationService(object):
|
|
|
|
"""Defines an application service.
|
|
|
|
|
|
|
|
Provides methods to check if this service is "interested" in events.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, token, url=None, namespaces=None):
|
|
|
|
self.token = token
|
|
|
|
if url:
|
|
|
|
self.url = url
|
|
|
|
if namespaces:
|
|
|
|
self.namespaces = namespaces
|
|
|
|
|
|
|
|
def is_interested(self, event):
|
|
|
|
"""Check if this service is interested in this event.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event(Event): The event to check.
|
|
|
|
Returns:
|
|
|
|
bool: True if this service would like to know about this event.
|
|
|
|
"""
|
|
|
|
# NB: This does not check room alias regex matches because that requires
|
|
|
|
# more context that an Event can provide. Room alias matches are checked
|
|
|
|
# in the ApplicationServiceHandler.
|
|
|
|
|
|
|
|
# TODO check if event.room_id regex matches
|
|
|
|
# TODO check if event.user_id regex matches (or m.room.member state_key)
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2015-01-27 18:34:40 +01:00
|
|
|
def __str__(self):
|
|
|
|
return "ApplicationService: %s" % (self.__dict__,)
|
|
|
|
|
2015-01-27 17:23:46 +01:00
|
|
|
|
|
|
|
class ApplicationServiceCache(object):
|
|
|
|
"""Caches ApplicationServices and provides utility functions on top.
|
|
|
|
|
|
|
|
This class is designed to be invoked on incoming events in order to avoid
|
|
|
|
hammering the database every time to extract a list of application service
|
|
|
|
regexes.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.services = []
|
|
|
|
|
|
|
|
def get_services_for_event(self, event):
|
|
|
|
"""Retrieve a list of application services interested in this event.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event(Event): The event to check.
|
|
|
|
Returns:
|
|
|
|
list<ApplicationService>: A list of services interested in this
|
|
|
|
event based on the service regex.
|
|
|
|
"""
|
|
|
|
interested_list = [
|
|
|
|
s for s in self.services if s.is_event_claimed(event)
|
|
|
|
]
|
|
|
|
return interested_list
|
|
|
|
|
|
|
|
|
2015-01-27 16:50:28 +01:00
|
|
|
class ApplicationServiceStore(SQLBaseStore):
|
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
super(ApplicationServiceStore, self).__init__(hs)
|
2015-01-27 17:23:46 +01:00
|
|
|
self.cache = ApplicationServiceCache()
|
2015-01-27 17:53:59 +01:00
|
|
|
self._populate_cache()
|
|
|
|
|
|
|
|
def unregister_app_service(self, token):
|
|
|
|
"""Unregisters this service.
|
|
|
|
|
|
|
|
This removes all AS specific regex and the base URL. The token is the
|
|
|
|
only thing preserved for future registration attempts.
|
|
|
|
"""
|
|
|
|
# TODO: DELETE FROM application_services_regex WHERE id=this service
|
|
|
|
# TODO: SET url=NULL WHERE token=token
|
|
|
|
# TODO: Update cache
|
|
|
|
pass
|
|
|
|
|
|
|
|
def update_app_service(self, service):
|
|
|
|
"""Update an application service, clobbering what was previously there.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
service(ApplicationService): The updated service.
|
|
|
|
"""
|
|
|
|
# NB: There is no "insert" since we provide no public-facing API to
|
|
|
|
# allocate new ASes. It relies on the server admin inserting the AS
|
|
|
|
# token into the database manually.
|
|
|
|
|
|
|
|
# TODO: UPDATE application_services, SET url WHERE token=service.token
|
|
|
|
# TODO: DELETE FROM application_services_regex WHERE id=this service
|
|
|
|
# TODO: INSERT INTO application_services_regex <new namespace regex>
|
|
|
|
# TODO: Update cache
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_services_for_event(self, event):
|
|
|
|
return self.cache.get_services_for_event(event)
|
2015-01-27 16:50:28 +01:00
|
|
|
|
2015-01-27 18:15:06 +01:00
|
|
|
def get_app_service(self, token, from_cache=True):
|
2015-01-27 16:50:28 +01:00
|
|
|
"""Get the application service with the given token.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
token (str): The application service token.
|
2015-01-27 17:53:59 +01:00
|
|
|
from_cache (bool): True to get this service from the cache, False to
|
|
|
|
check the database.
|
2015-01-27 16:50:28 +01:00
|
|
|
Raises:
|
2015-01-27 17:53:59 +01:00
|
|
|
StoreError if there was a problem retrieving this service.
|
2015-01-27 16:50:28 +01:00
|
|
|
"""
|
2015-01-27 17:53:59 +01:00
|
|
|
|
|
|
|
if from_cache:
|
|
|
|
for service in self.cache.services:
|
2015-01-27 18:15:06 +01:00
|
|
|
if service.token == token:
|
|
|
|
return service
|
|
|
|
return None
|
2015-01-27 17:53:59 +01:00
|
|
|
|
|
|
|
# TODO: This should be JOINed with the application_services_regex table.
|
2015-01-27 16:50:28 +01:00
|
|
|
row = self._simple_select_one(
|
2015-01-27 18:15:06 +01:00
|
|
|
"application_services", {"token": token},
|
2015-01-27 16:50:28 +01:00
|
|
|
["url", "token"]
|
|
|
|
)
|
|
|
|
if not row:
|
|
|
|
raise StoreError(400, "Bad application services token supplied.")
|
2015-01-27 18:15:06 +01:00
|
|
|
return row
|
2015-01-27 17:53:59 +01:00
|
|
|
|
|
|
|
def _populate_cache(self):
|
|
|
|
"""Populates the ApplicationServiceCache from the database."""
|
|
|
|
pass
|