2016-08-18 04:38:42 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 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.
|
2017-08-15 10:57:46 -04:00
|
|
|
import logging
|
|
|
|
import sys
|
2016-08-18 04:38:42 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from twisted.internet import reactor
|
|
|
|
from twisted.web.resource import NoResource
|
|
|
|
|
2016-08-18 04:38:42 -04:00
|
|
|
import synapse
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse import events
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.urls import CONTENT_REPO_PREFIX, LEGACY_MEDIA_PREFIX, MEDIA_PREFIX
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.app import _base
|
2016-08-18 04:38:42 -04:00
|
|
|
from synapse.config._base import ConfigError
|
|
|
|
from synapse.config.homeserver import HomeServerConfig
|
|
|
|
from synapse.config.logger import setup_logging
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.crypto import context_factory
|
2016-08-18 04:38:42 -04:00
|
|
|
from synapse.http.site import SynapseSite
|
2018-05-31 05:04:50 -04:00
|
|
|
from synapse.metrics import RegistryProxy
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.metrics.resource import METRICS_PREFIX, MetricsResource
|
2016-08-18 04:38:42 -04:00
|
|
|
from synapse.replication.slave.storage._base import BaseSlavedStore
|
|
|
|
from synapse.replication.slave.storage.appservice import SlavedApplicationServiceStore
|
2017-06-27 09:58:10 -04:00
|
|
|
from synapse.replication.slave.storage.client_ips import SlavedClientIpStore
|
2016-08-18 04:38:42 -04:00
|
|
|
from synapse.replication.slave.storage.registration import SlavedRegistrationStore
|
2017-03-24 08:57:46 -04:00
|
|
|
from synapse.replication.slave.storage.transactions import TransactionStore
|
2017-03-27 11:33:44 -04:00
|
|
|
from synapse.replication.tcp.client import ReplicationClientHandler
|
2016-08-18 04:38:42 -04:00
|
|
|
from synapse.rest.media.v0.content_repository import ContentRepoResource
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
from synapse.storage.engines import create_engine
|
|
|
|
from synapse.storage.media_repository import MediaRepositoryStore
|
|
|
|
from synapse.util.httpresourcetree import create_resource_tree
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.util.logcontext import LoggingContext
|
2016-08-18 04:38:42 -04:00
|
|
|
from synapse.util.manhole import manhole
|
|
|
|
from synapse.util.versionstring import get_version_string
|
|
|
|
|
|
|
|
logger = logging.getLogger("synapse.app.media_repository")
|
|
|
|
|
|
|
|
|
|
|
|
class MediaRepositorySlavedStore(
|
|
|
|
SlavedApplicationServiceStore,
|
|
|
|
SlavedRegistrationStore,
|
2017-06-27 09:58:10 -04:00
|
|
|
SlavedClientIpStore,
|
2017-03-24 08:57:46 -04:00
|
|
|
TransactionStore,
|
2016-08-18 04:38:42 -04:00
|
|
|
BaseSlavedStore,
|
|
|
|
MediaRepositoryStore,
|
|
|
|
):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class MediaRepositoryServer(HomeServer):
|
|
|
|
def setup(self):
|
|
|
|
logger.info("Setting up.")
|
|
|
|
self.datastore = MediaRepositorySlavedStore(self.get_db_conn(), self)
|
|
|
|
logger.info("Finished setting up.")
|
|
|
|
|
|
|
|
def _listen_http(self, listener_config):
|
|
|
|
port = listener_config["port"]
|
2017-01-10 12:21:41 -05:00
|
|
|
bind_addresses = listener_config["bind_addresses"]
|
2016-08-18 04:38:42 -04:00
|
|
|
site_tag = listener_config.get("tag", port)
|
|
|
|
resources = {}
|
|
|
|
for res in listener_config["resources"]:
|
|
|
|
for name in res["names"]:
|
|
|
|
if name == "metrics":
|
2018-05-31 05:04:50 -04:00
|
|
|
resources[METRICS_PREFIX] = MetricsResource(RegistryProxy)
|
2016-08-18 04:38:42 -04:00
|
|
|
elif name == "media":
|
2017-11-21 06:08:08 -05:00
|
|
|
media_repo = self.get_media_repository_resource()
|
2016-08-18 04:38:42 -04:00
|
|
|
resources.update({
|
|
|
|
MEDIA_PREFIX: media_repo,
|
|
|
|
LEGACY_MEDIA_PREFIX: media_repo,
|
|
|
|
CONTENT_REPO_PREFIX: ContentRepoResource(
|
|
|
|
self, self.config.uploads_path
|
|
|
|
),
|
|
|
|
})
|
|
|
|
|
2018-03-23 06:32:50 -04:00
|
|
|
root_resource = create_resource_tree(resources, NoResource())
|
2016-12-18 14:42:43 -05:00
|
|
|
|
2017-12-17 08:15:30 -05:00
|
|
|
_base.listen_tcp(
|
|
|
|
bind_addresses,
|
|
|
|
port,
|
|
|
|
SynapseSite(
|
|
|
|
"synapse.access.http.%s" % (site_tag,),
|
|
|
|
site_tag,
|
|
|
|
listener_config,
|
|
|
|
root_resource,
|
2018-05-10 13:46:59 -04:00
|
|
|
self.version_string,
|
2016-12-18 14:42:43 -05:00
|
|
|
)
|
2017-12-17 08:15:30 -05:00
|
|
|
)
|
2016-12-18 14:42:43 -05:00
|
|
|
|
2016-08-18 05:26:15 -04:00
|
|
|
logger.info("Synapse media repository now listening on port %d", port)
|
2016-08-18 04:38:42 -04:00
|
|
|
|
|
|
|
def start_listening(self, listeners):
|
|
|
|
for listener in listeners:
|
|
|
|
if listener["type"] == "http":
|
|
|
|
self._listen_http(listener)
|
|
|
|
elif listener["type"] == "manhole":
|
2017-12-17 08:15:30 -05:00
|
|
|
_base.listen_tcp(
|
|
|
|
listener["bind_addresses"],
|
|
|
|
listener["port"],
|
|
|
|
manhole(
|
|
|
|
username="matrix",
|
|
|
|
password="rabbithole",
|
|
|
|
globals={"hs": self},
|
2016-12-18 14:42:43 -05:00
|
|
|
)
|
2017-12-17 08:15:30 -05:00
|
|
|
)
|
2018-05-31 05:04:50 -04:00
|
|
|
elif listener["type"] == "metrics":
|
|
|
|
if not self.get_config().enable_metrics:
|
|
|
|
logger.warn(("Metrics listener configured, but "
|
2018-06-12 14:51:31 -04:00
|
|
|
"enable_metrics is not True!"))
|
2018-05-31 05:04:50 -04:00
|
|
|
else:
|
|
|
|
_base.listen_metrics(listener["bind_addresses"],
|
|
|
|
listener["port"])
|
2016-08-18 04:38:42 -04:00
|
|
|
else:
|
|
|
|
logger.warn("Unrecognized listener type: %s", listener["type"])
|
|
|
|
|
2017-03-27 11:33:44 -04:00
|
|
|
self.get_tcp_replication().start_replication(self)
|
2016-08-18 04:38:42 -04:00
|
|
|
|
2017-03-27 11:33:44 -04:00
|
|
|
def build_tcp_replication(self):
|
|
|
|
return ReplicationClientHandler(self.get_datastore())
|
2016-08-18 04:38:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
def start(config_options):
|
|
|
|
try:
|
|
|
|
config = HomeServerConfig.load_config(
|
|
|
|
"Synapse media repository", config_options
|
|
|
|
)
|
|
|
|
except ConfigError as e:
|
|
|
|
sys.stderr.write("\n" + e.message + "\n")
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
assert config.worker_app == "synapse.app.media_repository"
|
|
|
|
|
2017-11-21 08:29:39 -05:00
|
|
|
if config.enable_media_repo:
|
|
|
|
_base.quit_with_error(
|
|
|
|
"enable_media_repo must be disabled in the main synapse process\n"
|
|
|
|
"before the media repo can be run in a separate worker.\n"
|
|
|
|
"Please add ``enable_media_repo: false`` to the main config\n"
|
|
|
|
)
|
|
|
|
|
2017-03-10 10:16:50 -05:00
|
|
|
setup_logging(config, use_worker_options=True)
|
2016-08-18 04:38:42 -04:00
|
|
|
|
2016-11-08 06:07:18 -05:00
|
|
|
events.USE_FROZEN_DICTS = config.use_frozen_dicts
|
|
|
|
|
2016-08-18 04:38:42 -04:00
|
|
|
database_engine = create_engine(config.database_config)
|
|
|
|
|
|
|
|
tls_server_context_factory = context_factory.ServerContextFactory(config)
|
|
|
|
|
|
|
|
ss = MediaRepositoryServer(
|
|
|
|
config.server_name,
|
|
|
|
db_config=config.database_config,
|
|
|
|
tls_server_context_factory=tls_server_context_factory,
|
|
|
|
config=config,
|
|
|
|
version_string="Synapse/" + get_version_string(synapse),
|
|
|
|
database_engine=database_engine,
|
|
|
|
)
|
|
|
|
|
|
|
|
ss.setup()
|
|
|
|
ss.start_listening(config.worker_listeners)
|
|
|
|
|
|
|
|
def start():
|
2016-09-15 09:31:22 -04:00
|
|
|
ss.get_state_handler().start_caching()
|
2016-08-18 04:38:42 -04:00
|
|
|
ss.get_datastore().start_profiling()
|
|
|
|
|
|
|
|
reactor.callWhenRunning(start)
|
|
|
|
|
2017-08-15 10:57:46 -04:00
|
|
|
_base.start_worker_reactor("synapse-media-repository", config)
|
2016-08-18 04:38:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
with LoggingContext("main"):
|
|
|
|
start(sys.argv[1:])
|