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
|
2020-01-03 12:10:52 -05:00
|
|
|
from synapse.api.urls import 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
|
2019-08-13 07:49:28 -04:00
|
|
|
from synapse.http.server import JsonResource
|
2016-08-18 04:38:42 -04:00
|
|
|
from synapse.http.site import SynapseSite
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.logging.context import LoggingContext
|
2019-07-18 09:57:15 -04:00
|
|
|
from synapse.metrics import METRICS_PREFIX, MetricsResource, RegistryProxy
|
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
|
2020-01-08 08:25:31 -05:00
|
|
|
from synapse.replication.slave.storage.room import RoomStore
|
2018-08-15 09:10:32 -04:00
|
|
|
from synapse.replication.slave.storage.transactions import SlavedTransactionStore
|
2017-03-27 11:33:44 -04:00
|
|
|
from synapse.replication.tcp.client import ReplicationClientHandler
|
2019-08-13 07:49:28 -04:00
|
|
|
from synapse.rest.admin import register_servlets_for_media_repo
|
2016-08-18 04:38:42 -04:00
|
|
|
from synapse.server import HomeServer
|
2019-10-21 07:56:42 -04:00
|
|
|
from synapse.storage.data_stores.main.media_repository import MediaRepositoryStore
|
2016-08-18 04:38:42 -04:00
|
|
|
from synapse.util.httpresourcetree import create_resource_tree
|
|
|
|
from synapse.util.manhole import manhole
|
|
|
|
from synapse.util.versionstring import get_version_string
|
|
|
|
|
|
|
|
logger = logging.getLogger("synapse.app.media_repository")
|
|
|
|
|
|
|
|
|
|
|
|
class MediaRepositorySlavedStore(
|
2020-01-08 08:25:31 -05:00
|
|
|
RoomStore,
|
2016-08-18 04:38:42 -04:00
|
|
|
SlavedApplicationServiceStore,
|
|
|
|
SlavedRegistrationStore,
|
2017-06-27 09:58:10 -04:00
|
|
|
SlavedClientIpStore,
|
2018-08-15 09:10:32 -04:00
|
|
|
SlavedTransactionStore,
|
2016-08-18 04:38:42 -04:00
|
|
|
BaseSlavedStore,
|
|
|
|
MediaRepositoryStore,
|
|
|
|
):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class MediaRepositoryServer(HomeServer):
|
2018-08-28 08:39:49 -04:00
|
|
|
DATASTORE_CLASS = MediaRepositorySlavedStore
|
2016-08-18 04:38:42 -04:00
|
|
|
|
|
|
|
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()
|
2019-08-13 07:49:28 -04:00
|
|
|
|
|
|
|
# We need to serve the admin servlets for media on the
|
|
|
|
# worker.
|
|
|
|
admin_resource = JsonResource(self, canonical_json=False)
|
|
|
|
register_servlets_for_media_repo(self, admin_resource)
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
resources.update(
|
|
|
|
{
|
|
|
|
MEDIA_PREFIX: media_repo,
|
|
|
|
LEGACY_MEDIA_PREFIX: media_repo,
|
2019-08-13 07:49:28 -04:00
|
|
|
"/_synapse/admin": admin_resource,
|
2019-06-20 05:32:02 -04:00
|
|
|
}
|
|
|
|
)
|
2016-08-18 04:38:42 -04:00
|
|
|
|
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,
|
2019-06-20 05:32:02 -04: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(
|
2019-06-20 05:32:02 -04:00
|
|
|
username="matrix", password="rabbithole", globals={"hs": self}
|
|
|
|
),
|
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:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning(
|
2019-06-20 05:32:02 -04:00
|
|
|
(
|
|
|
|
"Metrics listener configured, but "
|
|
|
|
"enable_metrics is not True!"
|
|
|
|
)
|
|
|
|
)
|
2018-05-31 05:04:50 -04:00
|
|
|
else:
|
2019-06-20 05:32:02 -04:00
|
|
|
_base.listen_metrics(listener["bind_addresses"], listener["port"])
|
2016-08-18 04:38:42 -04:00
|
|
|
else:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning("Unrecognized listener type: %s", listener["type"])
|
2016-08-18 04:38:42 -04:00
|
|
|
|
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:
|
2018-09-27 07:38:50 -04:00
|
|
|
sys.stderr.write("\n" + str(e) + "\n")
|
2016-08-18 04:38:42 -04:00
|
|
|
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"
|
|
|
|
)
|
|
|
|
|
2016-11-08 06:07:18 -05:00
|
|
|
events.USE_FROZEN_DICTS = config.use_frozen_dicts
|
|
|
|
|
2016-08-18 04:38:42 -04:00
|
|
|
ss = MediaRepositoryServer(
|
|
|
|
config.server_name,
|
|
|
|
config=config,
|
|
|
|
version_string="Synapse/" + get_version_string(synapse),
|
|
|
|
)
|
|
|
|
|
2019-08-28 07:18:53 -04:00
|
|
|
setup_logging(ss, config, use_worker_options=True)
|
|
|
|
|
2016-08-18 04:38:42 -04:00
|
|
|
ss.setup()
|
2019-07-22 10:22:14 -04:00
|
|
|
reactor.addSystemEventTrigger(
|
|
|
|
"before", "startup", _base.start, ss, config.worker_listeners
|
|
|
|
)
|
2016-08-18 04:38:42 -04:00
|
|
|
|
2017-08-15 10:57:46 -04:00
|
|
|
_base.start_worker_reactor("synapse-media-repository", config)
|
2016-08-18 04:38:42 -04:00
|
|
|
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if __name__ == "__main__":
|
2016-08-18 04:38:42 -04:00
|
|
|
with LoggingContext("main"):
|
|
|
|
start(sys.argv[1:])
|