2014-08-12 10:10:52 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2023-11-21 15:29:58 -05:00
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
#
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2023-02-27 15:08:18 -05:00
|
|
|
""" This is an implementation of a Matrix homeserver.
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
2014-08-22 07:06:50 -04:00
|
|
|
|
2019-09-27 10:11:14 -04:00
|
|
|
import os
|
2019-06-12 07:31:59 -04:00
|
|
|
import sys
|
2023-03-22 13:15:34 -04:00
|
|
|
from typing import Any, Dict
|
2019-06-12 07:31:59 -04:00
|
|
|
|
2023-08-30 10:18:34 -04:00
|
|
|
from PIL import ImageFile
|
|
|
|
|
2022-09-12 06:03:42 -04:00
|
|
|
from synapse.util.rust import check_rust_lib_up_to_date
|
2022-10-07 10:19:59 -04:00
|
|
|
from synapse.util.stringutils import strtobool
|
2022-09-12 06:03:42 -04:00
|
|
|
|
2023-08-30 10:18:34 -04:00
|
|
|
# Allow truncated JPEG images to be thumbnailed.
|
|
|
|
ImageFile.LOAD_TRUNCATED_IMAGES = True
|
|
|
|
|
2019-06-12 07:31:59 -04:00
|
|
|
# Check that we're not running on an unsupported Python version.
|
2023-08-15 08:11:20 -04:00
|
|
|
#
|
|
|
|
# Note that we use an (unneeded) variable here so that pyupgrade doesn't nuke the
|
|
|
|
# if-statement completely.
|
|
|
|
py_version = sys.version_info
|
|
|
|
if py_version < (3, 8):
|
2023-07-05 19:45:42 -04:00
|
|
|
print("Synapse requires Python 3.8 or above.")
|
2019-06-12 07:31:59 -04:00
|
|
|
sys.exit(1)
|
|
|
|
|
2022-03-08 08:23:18 -05:00
|
|
|
# Allow using the asyncio reactor via env var.
|
2022-10-07 10:19:59 -04:00
|
|
|
if strtobool(os.environ.get("SYNAPSE_ASYNC_IO_REACTOR", "0")):
|
|
|
|
from incremental import Version
|
2022-03-08 08:23:18 -05:00
|
|
|
|
2022-10-07 10:19:59 -04:00
|
|
|
import twisted
|
2022-03-08 08:23:18 -05:00
|
|
|
|
2022-10-07 10:19:59 -04:00
|
|
|
# We need a bugfix that is included in Twisted 21.2.0:
|
|
|
|
# https://twistedmatrix.com/trac/ticket/9787
|
|
|
|
if twisted.version < Version("Twisted", 21, 2, 0):
|
|
|
|
print("Using asyncio reactor requires Twisted>=21.2.0")
|
|
|
|
sys.exit(1)
|
2022-03-08 08:23:18 -05:00
|
|
|
|
2022-10-07 10:19:59 -04:00
|
|
|
import asyncio
|
2022-03-08 08:23:18 -05:00
|
|
|
|
2022-10-07 10:19:59 -04:00
|
|
|
from twisted.internet import asyncioreactor
|
2022-03-08 08:23:18 -05:00
|
|
|
|
2022-10-07 10:19:59 -04:00
|
|
|
asyncioreactor.install(asyncio.get_event_loop())
|
2022-03-08 08:23:18 -05:00
|
|
|
|
2020-07-28 10:28:59 -04:00
|
|
|
# Twisted and canonicaljson will fail to import when this file is executed to
|
|
|
|
# get the __version__ during a fresh install. That's OK and subsequent calls to
|
|
|
|
# actually start Synapse will import these libraries fine.
|
2018-09-13 05:59:32 -04:00
|
|
|
try:
|
|
|
|
from twisted.internet import protocol
|
|
|
|
from twisted.internet.protocol import Factory
|
|
|
|
from twisted.names.dns import DNSDatagramProtocol
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2018-09-13 05:59:32 -04:00
|
|
|
protocol.Factory.noisy = False
|
|
|
|
Factory.noisy = False
|
|
|
|
DNSDatagramProtocol.noisy = False
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
2023-03-22 13:15:34 -04:00
|
|
|
# Teach canonicaljson how to serialise immutabledicts.
|
2020-07-28 10:28:59 -04:00
|
|
|
try:
|
2023-03-22 13:15:34 -04:00
|
|
|
from canonicaljson import register_preserialisation_callback
|
|
|
|
from immutabledict import immutabledict
|
|
|
|
|
|
|
|
def _immutabledict_cb(d: immutabledict) -> Dict[str, Any]:
|
|
|
|
try:
|
|
|
|
return d._dict
|
|
|
|
except Exception:
|
|
|
|
# Paranoia: fall back to a `dict()` call, in case a future version of
|
|
|
|
# immutabledict removes `_dict` from the implementation.
|
|
|
|
return dict(d)
|
|
|
|
|
|
|
|
register_preserialisation_callback(immutabledict, _immutabledict_cb)
|
2020-07-28 10:28:59 -04:00
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
2023-08-15 08:11:20 -04:00
|
|
|
import synapse.util # noqa: E402
|
2022-06-07 10:24:11 -04:00
|
|
|
|
|
|
|
__version__ = synapse.util.SYNAPSE_VERSION
|
2019-09-27 10:11:14 -04:00
|
|
|
|
|
|
|
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
|
2019-10-10 06:16:26 -04:00
|
|
|
# We import here so that we don't have to install a bunch of deps when
|
|
|
|
# running the packaging tox test.
|
|
|
|
from synapse.util.patch_inline_callbacks import do_patch
|
|
|
|
|
2019-09-27 10:11:14 -04:00
|
|
|
do_patch()
|
2022-09-12 06:03:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
check_rust_lib_up_to_date()
|