2018-08-16 09:23:38 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
2018-08-16 09:23:38 -04:00
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2020-2021 The Matrix.org Foundation C.I.C.
|
|
|
|
# Copyright 2018 Will Hunt <will@half-shot.uk>
|
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]
|
2018-08-16 09:23:38 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2023-10-06 07:22:55 -04:00
|
|
|
import re
|
2021-01-15 10:57:37 -05:00
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
2023-10-06 07:22:55 -04:00
|
|
|
from synapse.http.server import respond_with_json
|
|
|
|
from synapse.http.servlet import RestServlet
|
2021-03-12 11:37:57 -05:00
|
|
|
from synapse.http.site import SynapseRequest
|
2018-08-16 09:23:38 -04:00
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 07:12:48 -04:00
|
|
|
from synapse.server import HomeServer
|
2021-01-15 10:57:37 -05:00
|
|
|
|
2018-08-16 09:23:38 -04:00
|
|
|
|
2023-10-06 07:22:55 -04:00
|
|
|
class MediaConfigResource(RestServlet):
|
|
|
|
PATTERNS = [re.compile("/_matrix/media/(r0|v3|v1)/config$")]
|
2018-08-16 09:23:38 -04:00
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2019-06-29 03:06:55 -04:00
|
|
|
super().__init__()
|
2021-04-14 14:09:08 -04:00
|
|
|
config = hs.config
|
2018-08-16 09:23:38 -04:00
|
|
|
self.clock = hs.get_clock()
|
|
|
|
self.auth = hs.get_auth()
|
2021-09-24 07:25:21 -04:00
|
|
|
self.limits_dict = {"m.upload.size": config.media.max_upload_size}
|
2018-08-16 09:23:38 -04:00
|
|
|
|
2023-10-06 07:22:55 -04:00
|
|
|
async def on_GET(self, request: SynapseRequest) -> None:
|
2019-06-29 03:06:55 -04:00
|
|
|
await self.auth.get_user_by_req(request)
|
2018-12-10 08:11:37 -05:00
|
|
|
respond_with_json(request, 200, self.limits_dict, send_cors=True)
|