2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
# This file provides some classes for setting up (partially-populated)
|
|
|
|
# homeservers; either as a full homeserver as a real application, or a small
|
|
|
|
# partial one for unit test mocking.
|
|
|
|
|
|
|
|
# Imports required for the default HomeServer() implementation
|
2015-09-09 07:02:07 -04:00
|
|
|
from twisted.web.client import BrowserLikePolicyForHTTPS
|
2016-01-26 08:52:29 -05:00
|
|
|
from twisted.enterprise import adbapi
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
from synapse.federation import initialize_http_replication
|
2016-02-02 12:18:50 -05:00
|
|
|
from synapse.http.client import SimpleHttpClient, InsecureInterceptableContextFactory
|
2014-08-26 13:57:46 -04:00
|
|
|
from synapse.notifier import Notifier
|
2014-08-12 10:10:52 -04:00
|
|
|
from synapse.api.auth import Auth
|
|
|
|
from synapse.handlers import Handlers
|
|
|
|
from synapse.state import StateHandler
|
2016-01-28 09:32:05 -05:00
|
|
|
from synapse.storage import DataStore
|
2014-08-12 10:10:52 -04:00
|
|
|
from synapse.util import Clock
|
|
|
|
from synapse.util.distributor import Distributor
|
2014-08-26 13:57:46 -04:00
|
|
|
from synapse.streams.events import EventSources
|
2014-09-02 12:57:04 -04:00
|
|
|
from synapse.api.ratelimiting import Ratelimiter
|
2014-09-30 10:15:10 -04:00
|
|
|
from synapse.crypto.keyring import Keyring
|
2014-11-19 13:20:59 -05:00
|
|
|
from synapse.push.pusherpool import PusherPool
|
2014-12-04 10:50:01 -05:00
|
|
|
from synapse.events.builder import EventBuilderFactory
|
2015-01-27 09:28:56 -05:00
|
|
|
from synapse.api.filtering import Filtering
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-01-26 08:52:29 -05:00
|
|
|
from synapse.http.matrixfederationclient import MatrixFederationHttpClient
|
|
|
|
|
2016-01-26 10:51:06 -05:00
|
|
|
import logging
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-01-26 08:52:29 -05:00
|
|
|
class HomeServer(object):
|
2014-08-12 10:10:52 -04:00
|
|
|
"""A basic homeserver object without lazy component builders.
|
|
|
|
|
|
|
|
This will need all of the components it requires to either be passed as
|
|
|
|
constructor arguments, or the relevant methods overriding to create them.
|
|
|
|
Typically this would only be used for unit tests.
|
|
|
|
|
|
|
|
For every dependency in the DEPENDENCIES list below, this class creates one
|
|
|
|
method,
|
|
|
|
def get_DEPENDENCY(self)
|
|
|
|
which returns the value of that dependency. If no value has yet been set
|
|
|
|
nor was provided to the constructor, it will attempt to call a lazy builder
|
|
|
|
method called
|
|
|
|
def build_DEPENDENCY(self)
|
|
|
|
which must be implemented by the subclass. This code may call any of the
|
|
|
|
required "get" methods on the instance to obtain the sub-dependencies that
|
|
|
|
one requires.
|
|
|
|
"""
|
|
|
|
|
|
|
|
DEPENDENCIES = [
|
2015-02-24 09:23:26 -05:00
|
|
|
'config',
|
2014-08-12 10:10:52 -04:00
|
|
|
'clock',
|
|
|
|
'http_client',
|
|
|
|
'db_pool',
|
|
|
|
'persistence_service',
|
|
|
|
'replication_layer',
|
|
|
|
'datastore',
|
|
|
|
'handlers',
|
2015-03-24 13:24:15 -04:00
|
|
|
'v1auth',
|
2014-08-12 10:10:52 -04:00
|
|
|
'auth',
|
|
|
|
'rest_servlet_factory',
|
|
|
|
'state_handler',
|
|
|
|
'notifier',
|
|
|
|
'distributor',
|
2015-12-08 10:26:52 -05:00
|
|
|
'client_resource',
|
2014-08-14 04:52:20 -04:00
|
|
|
'resource_for_federation',
|
2015-02-23 10:35:09 -05:00
|
|
|
'resource_for_static_content',
|
2014-08-14 04:52:20 -04:00
|
|
|
'resource_for_web_client',
|
2014-08-18 10:01:08 -04:00
|
|
|
'resource_for_content_repo',
|
2014-09-23 13:40:59 -04:00
|
|
|
'resource_for_server_key',
|
2015-04-14 11:04:52 -04:00
|
|
|
'resource_for_server_key_v2',
|
2014-12-02 14:51:47 -05:00
|
|
|
'resource_for_media_repository',
|
2015-03-12 11:33:53 -04:00
|
|
|
'resource_for_metrics',
|
2014-08-26 13:57:46 -04:00
|
|
|
'event_sources',
|
2014-09-02 12:57:04 -04:00
|
|
|
'ratelimiter',
|
2014-09-30 10:15:10 -04:00
|
|
|
'keyring',
|
2014-12-18 10:15:22 -05:00
|
|
|
'pusherpool',
|
2014-12-04 10:50:01 -05:00
|
|
|
'event_builder_factory',
|
2015-01-27 09:28:56 -05:00
|
|
|
'filtering',
|
2015-09-09 07:02:07 -04:00
|
|
|
'http_client_context_factory',
|
|
|
|
'simple_http_client',
|
2014-08-12 10:10:52 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
def __init__(self, hostname, **kwargs):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
hostname : The hostname for the server.
|
|
|
|
"""
|
|
|
|
self.hostname = hostname
|
|
|
|
self._building = {}
|
|
|
|
|
2016-01-26 10:51:06 -05:00
|
|
|
self.clock = Clock()
|
|
|
|
self.distributor = Distributor()
|
|
|
|
self.ratelimiter = Ratelimiter()
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
# Other kwargs are explicit dependencies
|
|
|
|
for depname in kwargs:
|
|
|
|
setattr(self, depname, kwargs[depname])
|
|
|
|
|
2016-01-26 10:51:06 -05:00
|
|
|
def setup(self):
|
|
|
|
logger.info("Setting up.")
|
2016-01-28 09:32:05 -05:00
|
|
|
self.datastore = DataStore(self.get_db_conn(), self)
|
2016-01-26 10:51:06 -05:00
|
|
|
logger.info("Finished setting up.")
|
|
|
|
|
2014-09-26 11:36:24 -04:00
|
|
|
def get_ip_from_request(self, request):
|
2015-06-12 12:13:23 -04:00
|
|
|
# X-Forwarded-For is handled by our custom request type.
|
|
|
|
return request.getClientIP()
|
2014-09-26 11:36:24 -04:00
|
|
|
|
2014-12-02 05:42:28 -05:00
|
|
|
def is_mine(self, domain_specific_string):
|
|
|
|
return domain_specific_string.domain == self.hostname
|
|
|
|
|
2016-01-19 11:01:05 -05:00
|
|
|
def is_mine_id(self, string):
|
2016-01-19 11:11:39 -05:00
|
|
|
return string.split(":", 1)[1] == self.hostname
|
2016-01-19 11:01:05 -05:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def build_replication_layer(self):
|
|
|
|
return initialize_http_replication(self)
|
|
|
|
|
|
|
|
def build_handlers(self):
|
|
|
|
return Handlers(self)
|
|
|
|
|
|
|
|
def build_notifier(self):
|
|
|
|
return Notifier(self)
|
|
|
|
|
|
|
|
def build_auth(self):
|
|
|
|
return Auth(self)
|
|
|
|
|
2015-09-09 07:02:07 -04:00
|
|
|
def build_http_client_context_factory(self):
|
|
|
|
return (
|
2015-09-15 10:50:13 -04:00
|
|
|
InsecureInterceptableContextFactory()
|
2016-01-26 10:51:06 -05:00
|
|
|
if self.config.use_insecure_ssl_client_just_for_testing_do_not_use
|
2015-09-09 07:02:07 -04:00
|
|
|
else BrowserLikePolicyForHTTPS()
|
|
|
|
)
|
|
|
|
|
|
|
|
def build_simple_http_client(self):
|
|
|
|
return SimpleHttpClient(self)
|
|
|
|
|
2015-03-24 13:24:15 -04:00
|
|
|
def build_v1auth(self):
|
|
|
|
orf = Auth(self)
|
|
|
|
# Matrix spec makes no reference to what HTTP status code is returned,
|
|
|
|
# but the V1 API uses 403 where it means 401, and the webclient
|
|
|
|
# relies on this behaviour, so V1 gets its own copy of the auth
|
|
|
|
# with backwards compat behaviour.
|
|
|
|
orf.TOKEN_NOT_FOUND_HTTP_STATUS = 403
|
|
|
|
return orf
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def build_state_handler(self):
|
|
|
|
return StateHandler(self)
|
|
|
|
|
2014-08-26 13:57:46 -04:00
|
|
|
def build_event_sources(self):
|
|
|
|
return EventSources(self)
|
|
|
|
|
2014-09-30 10:15:10 -04:00
|
|
|
def build_keyring(self):
|
|
|
|
return Keyring(self)
|
|
|
|
|
2014-12-04 10:50:01 -05:00
|
|
|
def build_event_builder_factory(self):
|
|
|
|
return EventBuilderFactory(
|
|
|
|
clock=self.get_clock(),
|
|
|
|
hostname=self.hostname,
|
|
|
|
)
|
2015-01-27 09:28:56 -05:00
|
|
|
|
|
|
|
def build_filtering(self):
|
|
|
|
return Filtering(self)
|
2015-01-29 09:55:27 -05:00
|
|
|
|
2014-11-19 13:20:59 -05:00
|
|
|
def build_pusherpool(self):
|
|
|
|
return PusherPool(self)
|
2016-01-26 08:52:29 -05:00
|
|
|
|
|
|
|
def build_http_client(self):
|
|
|
|
return MatrixFederationHttpClient(self)
|
|
|
|
|
|
|
|
def build_db_pool(self):
|
|
|
|
name = self.db_config["name"]
|
|
|
|
|
|
|
|
return adbapi.ConnectionPool(
|
|
|
|
name,
|
|
|
|
**self.db_config.get("args", {})
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def _make_dependency_method(depname):
|
|
|
|
def _get(hs):
|
|
|
|
try:
|
|
|
|
return getattr(hs, depname)
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
builder = getattr(hs, "build_%s" % (depname))
|
|
|
|
except AttributeError:
|
|
|
|
builder = None
|
|
|
|
|
|
|
|
if builder:
|
|
|
|
# Prevent cyclic dependencies from deadlocking
|
|
|
|
if depname in hs._building:
|
|
|
|
raise ValueError("Cyclic dependency while building %s" % (
|
|
|
|
depname,
|
|
|
|
))
|
|
|
|
hs._building[depname] = 1
|
|
|
|
|
|
|
|
dep = builder()
|
|
|
|
setattr(hs, depname, dep)
|
|
|
|
|
|
|
|
del hs._building[depname]
|
|
|
|
|
|
|
|
return dep
|
|
|
|
|
|
|
|
raise NotImplementedError(
|
|
|
|
"%s has no %s nor a builder for it" % (
|
|
|
|
type(hs).__name__, depname,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
setattr(HomeServer, "get_%s" % (depname), _get)
|
|
|
|
|
|
|
|
|
|
|
|
# Build magic accessors for every dependency
|
|
|
|
for depname in HomeServer.DEPENDENCIES:
|
|
|
|
_make_dependency_method(depname)
|