2016-01-24 18:47:27 -05:00
|
|
|
# Copyright 2016 OpenMarket Ltd
|
2021-01-15 10:57:37 -05:00
|
|
|
# Copyright 2020-2021 The Matrix.org Foundation C.I.C.
|
2016-01-24 18:47:27 -05: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.
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2023-03-20 14:32:26 -04:00
|
|
|
from typing import TYPE_CHECKING
|
2021-09-07 09:10:34 -04:00
|
|
|
|
2016-04-03 07:56:29 -04:00
|
|
|
from synapse.http.server import (
|
2020-07-03 14:02:19 -04:00
|
|
|
DirectServeJsonResource,
|
2017-11-23 12:52:31 -05:00
|
|
|
respond_with_json,
|
2018-07-09 02:09:20 -04:00
|
|
|
respond_with_json_bytes,
|
2016-04-03 07:56:29 -04:00
|
|
|
)
|
2018-07-13 15:40:14 -04:00
|
|
|
from synapse.http.servlet import parse_integer, parse_string
|
2021-03-12 11:37:57 -05:00
|
|
|
from synapse.http.site import SynapseRequest
|
2023-02-27 08:26:05 -05:00
|
|
|
from synapse.media.media_storage import MediaStorage
|
2023-03-20 14:32:26 -04:00
|
|
|
from synapse.media.url_previewer import UrlPreviewer
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
if TYPE_CHECKING:
|
2023-02-27 08:26:05 -05:00
|
|
|
from synapse.media.media_repository import MediaRepository
|
2021-03-23 07:12:48 -04:00
|
|
|
from synapse.server import HomeServer
|
2021-01-15 10:57:37 -05:00
|
|
|
|
2021-09-07 09:10:34 -04:00
|
|
|
|
2020-07-03 14:02:19 -04:00
|
|
|
class PreviewUrlResource(DirectServeJsonResource):
|
2021-09-07 09:10:34 -04:00
|
|
|
"""
|
2022-07-12 15:01:58 -04:00
|
|
|
The `GET /_matrix/media/r0/preview_url` endpoint provides a generic preview API
|
|
|
|
for URLs which outputs Open Graph (https://ogp.me/) responses (with some Matrix
|
|
|
|
specific additions).
|
|
|
|
|
|
|
|
This does have trade-offs compared to other designs:
|
|
|
|
|
|
|
|
* Pros:
|
|
|
|
* Simple and flexible; can be used by any clients at any point
|
|
|
|
* Cons:
|
|
|
|
* If each homeserver provides one of these independently, all the homeservers in a
|
|
|
|
room may needlessly DoS the target URI
|
|
|
|
* The URL metadata must be stored somewhere, rather than just using Matrix
|
|
|
|
itself to store the media.
|
|
|
|
* Matrix cannot be used to distribute the metadata between homeservers.
|
2021-09-07 09:10:34 -04:00
|
|
|
"""
|
|
|
|
|
2016-01-24 18:47:27 -05:00
|
|
|
isLeaf = True
|
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
hs: "HomeServer",
|
|
|
|
media_repo: "MediaRepository",
|
|
|
|
media_storage: MediaStorage,
|
|
|
|
):
|
2019-06-29 03:06:55 -04:00
|
|
|
super().__init__()
|
2016-04-19 09:45:05 -04:00
|
|
|
|
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.clock = hs.get_clock()
|
2016-04-19 09:51:34 -04:00
|
|
|
self.media_repo = media_repo
|
2018-01-09 09:36:07 -05:00
|
|
|
self.media_storage = media_storage
|
2016-04-19 09:45:05 -04:00
|
|
|
|
2023-03-20 14:32:26 -04:00
|
|
|
self._url_previewer = UrlPreviewer(hs, media_repo, media_storage)
|
2017-09-28 07:18:06 -04:00
|
|
|
|
2021-09-24 06:01:25 -04:00
|
|
|
async def _async_render_OPTIONS(self, request: SynapseRequest) -> None:
|
2019-07-02 14:01:28 -04:00
|
|
|
request.setHeader(b"Allow", b"OPTIONS, GET")
|
2020-07-03 14:02:19 -04:00
|
|
|
respond_with_json(request, 200, {}, send_cors=True)
|
2017-11-23 12:52:31 -05:00
|
|
|
|
2021-03-12 11:37:57 -05:00
|
|
|
async def _async_render_GET(self, request: SynapseRequest) -> None:
|
2016-04-11 05:39:16 -04:00
|
|
|
# XXX: if get_user_by_req fails, what should we do in an async render?
|
2019-06-29 03:06:55 -04:00
|
|
|
requester = await self.auth.get_user_by_req(request)
|
2021-07-21 09:47:56 -04:00
|
|
|
url = parse_string(request, "url", required=True)
|
|
|
|
ts = parse_integer(request, "ts")
|
|
|
|
if ts is None:
|
2016-04-11 05:39:16 -04:00
|
|
|
ts = self.clock.time_msec()
|
|
|
|
|
2023-03-20 14:32:26 -04:00
|
|
|
og = await self._url_previewer.preview(url, requester.user, ts)
|
2017-11-10 11:34:33 -05:00
|
|
|
respond_with_json_bytes(request, 200, og, send_cors=True)
|