MatrixSynapse/synapse/rest/media/v1/media_repository.py

775 lines
27 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2016-01-07 05:26:29 +01:00
# Copyright 2014-2016 OpenMarket Ltd
2018-01-12 12:15:31 +01:00
# Copyright 2018 New Vector 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.
2018-07-09 08:09:20 +02:00
import errno
import logging
import os
import shutil
from six import iteritems
2018-07-09 08:09:20 +02:00
import twisted.internet.error
import twisted.web.http
from twisted.internet import defer
from twisted.web.resource import Resource
from synapse.api.errors import (
2018-07-09 08:09:20 +02:00
FederationDeniedError,
HttpResponseException,
NotFoundError,
RequestSendFailed,
2018-07-09 08:09:20 +02:00
SynapseError,
)
from synapse.config._base import ConfigError
from synapse.logging.context import defer_to_thread
from synapse.metrics.background_process_metrics import run_as_background_process
from synapse.util.async_helpers import Linearizer
from synapse.util.retryutils import NotRetryingDestination
from synapse.util.stringutils import random_string
from ._base import (
FileInfo,
get_filename_from_headers,
respond_404,
respond_with_responder,
)
2018-08-16 15:23:38 +02:00
from .config_resource import MediaConfigResource
2018-07-09 08:09:20 +02:00
from .download_resource import DownloadResource
from .filepath import MediaFilePaths
from .media_storage import MediaStorage
from .preview_url_resource import PreviewUrlResource
from .storage_provider import StorageProviderWrapper
from .thumbnail_resource import ThumbnailResource
from .thumbnailer import Thumbnailer
from .upload_resource import UploadResource
logger = logging.getLogger(__name__)
UPDATE_RECENTLY_ACCESSED_TS = 60 * 1000
class MediaRepository(object):
2016-06-29 15:57:59 +02:00
def __init__(self, hs):
self.hs = hs
self.auth = hs.get_auth()
self.client = hs.get_http_client()
self.clock = hs.get_clock()
self.server_name = hs.hostname
self.store = hs.get_datastore()
self.max_upload_size = hs.config.max_upload_size
self.max_image_pixels = hs.config.max_image_pixels
2017-10-12 18:31:24 +02:00
self.primary_base_path = hs.config.media_store_path
self.filepaths = MediaFilePaths(self.primary_base_path)
self.dynamic_thumbnails = hs.config.dynamic_thumbnails
self.thumbnail_requirements = hs.config.thumbnail_requirements
2017-01-09 18:17:10 +01:00
self.remote_media_linearizer = Linearizer(name="media_remote")
2016-06-29 15:57:59 +02:00
self.recently_accessed_remotes = set()
self.recently_accessed_locals = set()
self.federation_domain_whitelist = hs.config.federation_domain_whitelist
2018-01-12 12:15:31 +01:00
# List of StorageProviders where we should search for media and
2018-01-08 18:19:55 +01:00
# potentially upload to.
2018-01-12 12:23:54 +01:00
storage_providers = []
2018-01-08 18:19:55 +01:00
for clz, provider_config, wrapper_config in hs.config.media_storage_providers:
backend = clz(hs, provider_config)
2018-01-08 18:19:55 +01:00
provider = StorageProviderWrapper(
backend,
store_local=wrapper_config.store_local,
store_remote=wrapper_config.store_remote,
store_synchronous=wrapper_config.store_synchronous,
2018-01-08 18:19:55 +01:00
)
2018-01-12 12:23:54 +01:00
storage_providers.append(provider)
2018-01-08 18:19:55 +01:00
self.media_storage = MediaStorage(
2019-06-20 11:32:02 +02:00
self.hs, self.primary_base_path, self.filepaths, storage_providers
2018-01-08 18:19:55 +01:00
)
2018-01-08 18:45:11 +01:00
self.clock.looping_call(
2019-06-20 11:32:02 +02:00
self._start_update_recently_accessed, UPDATE_RECENTLY_ACCESSED_TS
)
def _start_update_recently_accessed(self):
return run_as_background_process(
2019-06-20 11:32:02 +02:00
"update_recently_accessed_media", self._update_recently_accessed
)
@defer.inlineCallbacks
def _update_recently_accessed(self):
remote_media = self.recently_accessed_remotes
self.recently_accessed_remotes = set()
local_media = self.recently_accessed_locals
self.recently_accessed_locals = set()
yield self.store.update_cached_last_access_time(
local_media, remote_media, self.clock.time_msec()
)
def mark_recently_accessed(self, server_name, media_id):
"""Mark the given media as recently accessed.
Args:
server_name (str|None): Origin server of media, or None if local
media_id (str): The media ID of the content
"""
if server_name:
self.recently_accessed_remotes.add((server_name, media_id))
else:
self.recently_accessed_locals.add(media_id)
@defer.inlineCallbacks
2019-06-20 11:32:02 +02:00
def create_content(
self, media_type, upload_name, content, content_length, auth_user
):
2017-10-13 11:39:32 +02:00
"""Store uploaded content for a local user and return the mxc URL
Args:
media_type(str): The content type of the file
upload_name(str): The name of the file
content: A file like object that is the content to store
content_length(int): The length of the content
auth_user(str): The user_id of the uploader
Returns:
Deferred[str]: The mxc url of the stored content
"""
media_id = random_string(24)
2019-06-20 11:32:02 +02:00
file_info = FileInfo(server_name=None, file_id=media_id)
2018-01-08 18:45:11 +01:00
fname = yield self.media_storage.store_file(content, file_info)
logger.info("Stored local media in file %r", fname)
yield self.store.store_local_media(
media_id=media_id,
media_type=media_type,
time_now_ms=self.clock.time_msec(),
upload_name=upload_name,
media_length=content_length,
user_id=auth_user,
)
2019-06-20 11:32:02 +02:00
yield self._generate_thumbnails(None, media_id, media_id, media_type)
return "mxc://%s/%s" % (self.server_name, media_id)
2018-01-08 18:45:11 +01:00
@defer.inlineCallbacks
def get_local_media(self, request, media_id, name):
"""Responds to reqests for local media, if exists, or returns 404.
2018-01-12 12:15:31 +01:00
Args:
request(twisted.web.http.Request)
2018-01-12 16:02:46 +01:00
media_id (str): The media ID of the content. (This is the same as
the file_id for local content.)
2018-01-12 12:15:31 +01:00
name (str|None): Optional name that, if specified, will be used as
the filename in the Content-Disposition header of the response.
2018-01-12 16:02:46 +01:00
Returns:
2018-01-12 12:15:31 +01:00
Deferred: Resolves once a response has successfully been written
to request
2018-01-08 18:45:11 +01:00
"""
media_info = yield self.store.get_local_media(media_id)
if not media_info or media_info["quarantined_by"]:
respond_404(request)
return
self.mark_recently_accessed(None, media_id)
2018-01-08 18:45:11 +01:00
media_type = media_info["media_type"]
media_length = media_info["media_length"]
upload_name = name if name else media_info["upload_name"]
url_cache = media_info["url_cache"]
2019-06-20 11:32:02 +02:00
file_info = FileInfo(None, media_id, url_cache=url_cache)
2018-01-08 18:45:11 +01:00
responder = yield self.media_storage.fetch_media(file_info)
yield respond_with_responder(
2019-06-20 11:32:02 +02:00
request, responder, media_type, media_length, upload_name
2018-01-08 18:45:11 +01:00
)
2016-06-29 15:57:59 +02:00
@defer.inlineCallbacks
2018-01-08 18:52:06 +01:00
def get_remote_media(self, request, server_name, media_id, name):
"""Respond to requests for remote media.
2018-01-12 12:15:31 +01:00
Args:
request(twisted.web.http.Request)
server_name (str): Remote server_name where the media originated.
2018-01-12 16:02:46 +01:00
media_id (str): The media ID of the content (as defined by the
remote server).
2018-01-12 12:15:31 +01:00
name (str|None): Optional name that, if specified, will be used as
the filename in the Content-Disposition header of the response.
2018-01-12 16:02:46 +01:00
Returns:
2018-01-12 12:15:31 +01:00
Deferred: Resolves once a response has successfully been written
to request
2018-01-08 18:52:06 +01:00
"""
if (
2019-06-20 11:32:02 +02:00
self.federation_domain_whitelist is not None
and server_name not in self.federation_domain_whitelist
):
raise FederationDeniedError(server_name)
self.mark_recently_accessed(server_name, media_id)
2018-01-08 18:52:06 +01:00
# We linearize here to ensure that we don't try and download remote
2018-01-12 12:15:31 +01:00
# media multiple times concurrently
key = (server_name, media_id)
2016-06-29 15:57:59 +02:00
with (yield self.remote_media_linearizer.queue(key)):
2018-01-08 18:52:06 +01:00
responder, media_info = yield self._get_remote_media_impl(
2019-06-20 11:32:02 +02:00
server_name, media_id
2018-01-08 18:52:06 +01:00
)
2018-01-12 12:15:31 +01:00
# We deliberately stream the file outside the lock
2018-01-08 18:52:06 +01:00
if responder:
media_type = media_info["media_type"]
media_length = media_info["media_length"]
upload_name = name if name else media_info["upload_name"]
yield respond_with_responder(
2019-06-20 11:32:02 +02:00
request, responder, media_type, media_length, upload_name
2018-01-08 18:52:06 +01:00
)
else:
respond_404(request)
2018-01-16 12:06:42 +01:00
@defer.inlineCallbacks
def get_remote_media_info(self, server_name, media_id):
"""Gets the media info associated with the remote file, downloading
if necessary.
Args:
server_name (str): Remote server_name where the media originated.
media_id (str): The media ID of the content (as defined by the
remote server).
Returns:
Deferred[dict]: The media_info of the file
"""
if (
2019-06-20 11:32:02 +02:00
self.federation_domain_whitelist is not None
and server_name not in self.federation_domain_whitelist
):
raise FederationDeniedError(server_name)
2018-01-16 12:06:42 +01:00
# We linearize here to ensure that we don't try and download remote
# media multiple times concurrently
key = (server_name, media_id)
with (yield self.remote_media_linearizer.queue(key)):
responder, media_info = yield self._get_remote_media_impl(
2019-06-20 11:32:02 +02:00
server_name, media_id
2018-01-16 12:06:42 +01:00
)
# Ensure we actually use the responder so that it releases resources
if responder:
with responder:
pass
return media_info
2018-01-16 12:06:42 +01:00
@defer.inlineCallbacks
def _get_remote_media_impl(self, server_name, media_id):
2018-01-08 18:52:06 +01:00
"""Looks for media in local cache, if not there then attempt to
download from remote server.
2018-01-12 16:02:46 +01:00
Args:
server_name (str): Remote server_name where the media originated.
media_id (str): The media ID of the content (as defined by the
remote server).
2018-01-08 18:52:06 +01:00
Returns:
2018-01-12 12:15:31 +01:00
Deferred[(Responder, media_info)]
2018-01-08 18:52:06 +01:00
"""
2019-06-20 11:32:02 +02:00
media_info = yield self.store.get_cached_remote_media(server_name, media_id)
2018-01-08 18:52:06 +01:00
# file_id is the ID we use to track the file locally. If we've already
# seen the file then reuse the existing ID, otherwise genereate a new
# one.
if media_info:
file_id = media_info["filesystem_id"]
else:
2018-01-08 18:52:06 +01:00
file_id = random_string(24)
file_info = FileInfo(server_name, file_id)
# If we have an entry in the DB, try and look for it
if media_info:
if media_info["quarantined_by"]:
2018-01-16 14:53:43 +01:00
logger.info("Media is quarantined")
2018-01-08 18:52:06 +01:00
raise NotFoundError()
responder = yield self.media_storage.fetch_media(file_info)
if responder:
return responder, media_info
2018-01-08 18:52:06 +01:00
# Failed to find the file anywhere, lets download it.
2019-06-20 11:32:02 +02:00
media_info = yield self._download_remote_file(server_name, media_id, file_id)
2018-01-08 18:52:06 +01:00
responder = yield self.media_storage.fetch_media(file_info)
return responder, media_info
@defer.inlineCallbacks
2018-01-08 18:52:06 +01:00
def _download_remote_file(self, server_name, media_id, file_id):
"""Attempt to download the remote file from the given server name,
using the given file_id as the local id.
2018-01-12 12:15:31 +01:00
Args:
server_name (str): Originating server
2018-01-12 16:02:46 +01:00
media_id (str): The media ID of the content (as defined by the
remote server). This is different than the file_id, which is
locally generated.
2018-01-12 12:15:31 +01:00
file_id (str): Local file ID
Returns:
Deferred[MediaInfo]
2018-01-08 18:52:06 +01:00
"""
2019-06-20 11:32:02 +02:00
file_info = FileInfo(server_name=server_name, file_id=file_id)
2018-01-08 18:52:06 +01:00
with self.media_storage.store_into_file(file_info) as (f, fname, finish):
2019-06-20 11:32:02 +02:00
request_path = "/".join(
("/_matrix/media/v1/download", server_name, media_id)
)
2018-01-08 18:52:06 +01:00
try:
length, headers = yield self.client.get_file(
2019-06-20 11:32:02 +02:00
server_name,
request_path,
output_stream=f,
max_size=self.max_upload_size,
args={
2018-01-08 18:52:06 +01:00
# tell the remote server to 404 if it doesn't
# recognise the server_name, to make sure we don't
# end up with a routing loop.
2019-06-20 11:32:02 +02:00
"allow_remote": "false"
},
2018-01-08 18:52:06 +01:00
)
except RequestSendFailed as e:
2019-06-20 11:32:02 +02:00
logger.warn(
"Request failed fetching remote media %s/%s: %r",
server_name,
media_id,
e,
)
raise SynapseError(502, "Failed to fetch remote media")
2018-01-08 18:52:06 +01:00
except HttpResponseException as e:
2019-06-20 11:32:02 +02:00
logger.warn(
"HTTP error fetching remote media %s/%s: %s",
server_name,
media_id,
e.response,
)
2018-01-08 18:52:06 +01:00
if e.code == twisted.web.http.NOT_FOUND:
raise e.to_synapse_error()
2018-01-08 18:52:06 +01:00
raise SynapseError(502, "Failed to fetch remote media")
except SynapseError:
2019-06-20 11:32:02 +02:00
logger.warn("Failed to fetch remote media %s/%s", server_name, media_id)
2018-01-08 18:52:06 +01:00
raise
except NotRetryingDestination:
logger.warn("Not retrying destination %r", server_name)
raise SynapseError(502, "Failed to fetch remote media")
except Exception:
2019-06-20 11:32:02 +02:00
logger.exception(
"Failed to fetch remote media %s/%s", server_name, media_id
)
2018-01-08 18:52:06 +01:00
raise SynapseError(502, "Failed to fetch remote media")
yield finish()
2019-06-20 11:32:02 +02:00
media_type = headers[b"Content-Type"][0].decode("ascii")
upload_name = get_filename_from_headers(headers)
2018-01-08 18:52:06 +01:00
time_now_ms = self.clock.time_msec()
logger.info("Stored remote media in file %r", fname)
yield self.store.store_cached_remote_media(
origin=server_name,
media_id=media_id,
media_type=media_type,
time_now_ms=self.clock.time_msec(),
upload_name=upload_name,
media_length=length,
filesystem_id=file_id,
)
media_info = {
"media_type": media_type,
"media_length": length,
"upload_name": upload_name,
"created_ts": time_now_ms,
"filesystem_id": file_id,
}
2019-06-20 11:32:02 +02:00
yield self._generate_thumbnails(server_name, media_id, file_id, media_type)
return media_info
def _get_thumbnail_requirements(self, media_type):
return self.thumbnail_requirements.get(media_type, ())
2019-06-20 11:32:02 +02:00
def _generate_thumbnail(self, thumbnailer, t_width, t_height, t_method, t_type):
m_width = thumbnailer.width
m_height = thumbnailer.height
if m_width * m_height >= self.max_image_pixels:
logger.info(
"Image too large to thumbnail %r x %r > %r",
2019-06-20 11:32:02 +02:00
m_width,
m_height,
self.max_image_pixels,
)
return
if thumbnailer.transpose_method is not None:
m_width, m_height = thumbnailer.transpose()
if t_method == "crop":
t_byte_source = thumbnailer.crop(t_width, t_height, t_type)
elif t_method == "scale":
2017-02-24 22:42:38 +01:00
t_width, t_height = thumbnailer.aspect(t_width, t_height)
t_width = min(m_width, t_width)
t_height = min(m_height, t_height)
t_byte_source = thumbnailer.scale(t_width, t_height, t_type)
else:
t_byte_source = None
return t_byte_source
@defer.inlineCallbacks
2019-06-20 11:32:02 +02:00
def generate_local_exact_thumbnail(
self, media_id, t_width, t_height, t_method, t_type, url_cache
):
input_path = yield self.media_storage.ensure_media_is_in_local_cache(
FileInfo(None, media_id, url_cache=url_cache)
)
thumbnailer = Thumbnailer(input_path)
t_byte_source = yield defer_to_thread(
self.hs.get_reactor(),
self._generate_thumbnail,
2019-06-20 11:32:02 +02:00
thumbnailer,
t_width,
t_height,
t_method,
t_type,
)
if t_byte_source:
try:
2018-01-08 18:45:11 +01:00
file_info = FileInfo(
server_name=None,
file_id=media_id,
url_cache=url_cache,
2018-01-08 18:45:11 +01:00
thumbnail=True,
thumbnail_width=t_width,
thumbnail_height=t_height,
thumbnail_method=t_method,
thumbnail_type=t_type,
)
output_path = yield self.media_storage.store_file(
2019-06-20 11:32:02 +02:00
t_byte_source, file_info
)
finally:
t_byte_source.close()
logger.info("Stored thumbnail in file %r", output_path)
2017-10-12 18:52:30 +02:00
t_len = os.path.getsize(output_path)
2017-10-13 11:39:59 +02:00
yield self.store.store_local_thumbnail(
2017-10-12 18:39:23 +02:00
media_id, t_width, t_height, t_type, t_method, t_len
)
return output_path
@defer.inlineCallbacks
2019-06-20 11:32:02 +02:00
def generate_remote_exact_thumbnail(
self, server_name, file_id, media_id, t_width, t_height, t_method, t_type
):
input_path = yield self.media_storage.ensure_media_is_in_local_cache(
FileInfo(server_name, file_id, url_cache=False)
)
thumbnailer = Thumbnailer(input_path)
t_byte_source = yield defer_to_thread(
self.hs.get_reactor(),
self._generate_thumbnail,
2019-06-20 11:32:02 +02:00
thumbnailer,
t_width,
t_height,
t_method,
t_type,
)
if t_byte_source:
try:
2018-01-08 18:45:11 +01:00
file_info = FileInfo(
server_name=server_name,
file_id=file_id,
2018-01-08 18:45:11 +01:00
thumbnail=True,
thumbnail_width=t_width,
thumbnail_height=t_height,
thumbnail_method=t_method,
thumbnail_type=t_type,
)
output_path = yield self.media_storage.store_file(
2019-06-20 11:32:02 +02:00
t_byte_source, file_info
)
finally:
t_byte_source.close()
logger.info("Stored thumbnail in file %r", output_path)
2017-10-12 18:52:30 +02:00
t_len = os.path.getsize(output_path)
yield self.store.store_remote_media_thumbnail(
2019-06-20 11:32:02 +02:00
server_name,
media_id,
file_id,
t_width,
t_height,
t_type,
t_method,
t_len,
)
return output_path
@defer.inlineCallbacks
2019-06-20 11:32:02 +02:00
def _generate_thumbnails(
self, server_name, media_id, file_id, media_type, url_cache=False
):
2017-10-13 12:23:53 +02:00
"""Generate and store thumbnails for an image.
Args:
2018-01-16 17:03:05 +01:00
server_name (str|None): The server name if remote media, else None if local
media_id (str): The media ID of the content. (This is the same as
the file_id for local content)
file_id (str): Local file ID
2018-01-17 11:06:14 +01:00
media_type (str): The content type of the file
2018-01-16 17:03:05 +01:00
url_cache (bool): If we are thumbnailing images downloaded for the URL cache,
2017-10-13 12:23:53 +02:00
used exclusively by the url previewer
Returns:
Deferred[dict]: Dict with "width" and "height" keys of original image
"""
requirements = self._get_thumbnail_requirements(media_type)
if not requirements:
return
2019-06-20 11:32:02 +02:00
input_path = yield self.media_storage.ensure_media_is_in_local_cache(
FileInfo(server_name, file_id, url_cache=url_cache)
)
thumbnailer = Thumbnailer(input_path)
m_width = thumbnailer.width
m_height = thumbnailer.height
if m_width * m_height >= self.max_image_pixels:
logger.info(
"Image too large to thumbnail %r x %r > %r",
2019-06-20 11:32:02 +02:00
m_width,
m_height,
self.max_image_pixels,
)
return
if thumbnailer.transpose_method is not None:
m_width, m_height = yield defer_to_thread(
2019-06-20 11:32:02 +02:00
self.hs.get_reactor(), thumbnailer.transpose
)
2017-10-13 12:23:53 +02:00
# We deduplicate the thumbnail sizes by ignoring the cropped versions if
# they have the same dimensions of a scaled one.
thumbnails = {}
for r_width, r_height, r_method, r_type in requirements:
if r_method == "crop":
2017-10-13 14:58:57 +02:00
thumbnails.setdefault((r_width, r_height, r_type), r_method)
2017-10-13 12:23:53 +02:00
elif r_method == "scale":
2017-10-13 12:33:49 +02:00
t_width, t_height = thumbnailer.aspect(r_width, r_height)
2017-10-13 12:23:53 +02:00
t_width = min(m_width, t_width)
t_height = min(m_height, t_height)
2017-10-13 14:47:38 +02:00
thumbnails[(t_width, t_height, r_type)] = r_method
2017-10-13 12:23:53 +02:00
# Now we generate the thumbnails for each dimension, store it
for (t_width, t_height, t_type), t_method in iteritems(thumbnails):
# Generate the thumbnail
2017-10-19 11:27:18 +02:00
if t_method == "crop":
t_byte_source = yield defer_to_thread(
2019-06-20 11:32:02 +02:00
self.hs.get_reactor(), thumbnailer.crop, t_width, t_height, t_type
)
2017-10-19 11:27:18 +02:00
elif t_method == "scale":
t_byte_source = yield defer_to_thread(
2019-06-20 11:32:02 +02:00
self.hs.get_reactor(), thumbnailer.scale, t_width, t_height, t_type
)
2017-10-19 11:27:18 +02:00
else:
logger.error("Unrecognized method: %r", t_method)
continue
if not t_byte_source:
continue
try:
2018-01-08 18:45:11 +01:00
file_info = FileInfo(
server_name=server_name,
file_id=file_id,
2018-01-08 18:45:11 +01:00
thumbnail=True,
thumbnail_width=t_width,
thumbnail_height=t_height,
thumbnail_method=t_method,
thumbnail_type=t_type,
url_cache=url_cache,
)
output_path = yield self.media_storage.store_file(
2019-06-20 11:32:02 +02:00
t_byte_source, file_info
)
finally:
t_byte_source.close()
2017-10-12 18:52:30 +02:00
t_len = os.path.getsize(output_path)
2017-10-13 12:33:49 +02:00
# Write to database
2017-10-13 12:23:53 +02:00
if server_name:
yield self.store.store_remote_media_thumbnail(
2019-06-20 11:32:02 +02:00
server_name,
media_id,
file_id,
t_width,
t_height,
t_type,
t_method,
t_len,
2017-10-13 12:33:49 +02:00
)
2017-10-13 12:23:53 +02:00
else:
yield self.store.store_local_thumbnail(
media_id, t_width, t_height, t_type, t_method, t_len
)
return {"width": m_width, "height": m_height}
2016-06-29 15:57:59 +02:00
@defer.inlineCallbacks
def delete_old_remote_media(self, before_ts):
old_media = yield self.store.get_remote_media_before(before_ts)
deleted = 0
for media in old_media:
origin = media["media_origin"]
media_id = media["media_id"]
file_id = media["filesystem_id"]
key = (origin, media_id)
logger.info("Deleting: %r", key)
2017-10-12 18:31:24 +02:00
# TODO: Should we delete from the backup store
2016-06-29 15:57:59 +02:00
with (yield self.remote_media_linearizer.queue(key)):
full_path = self.filepaths.remote_media_filepath(origin, file_id)
try:
os.remove(full_path)
except OSError as e:
logger.warn("Failed to remove file: %r", full_path)
if e.errno == errno.ENOENT:
pass
else:
continue
thumbnail_dir = self.filepaths.remote_media_thumbnail_dir(
origin, file_id
)
shutil.rmtree(thumbnail_dir, ignore_errors=True)
yield self.store.delete_remote_media(origin, media_id)
deleted += 1
return {"deleted": deleted}
2016-06-29 15:57:59 +02:00
class MediaRepositoryResource(Resource):
"""File uploading and downloading.
Uploads are POSTed to a resource which returns a token which is used to GET
the download::
=> POST /_matrix/media/v1/upload HTTP/1.1
Content-Type: <media-type>
2015-02-07 13:56:21 +01:00
Content-Length: <content-length>
<media>
<= HTTP/1.1 200 OK
Content-Type: application/json
2014-12-15 17:57:53 +01:00
{ "content_uri": "mxc://<server-name>/<media-id>" }
2014-12-15 14:56:43 +01:00
=> GET /_matrix/media/v1/download/<server-name>/<media-id> HTTP/1.1
<= HTTP/1.1 200 OK
Content-Type: <media-type>
Content-Disposition: attachment;filename=<upload-filename>
<media>
2014-12-11 11:41:43 +01:00
Clients can get thumbnails by supplying a desired width and height and
thumbnailing method::
=> GET /_matrix/media/v1/thumbnail/<server_name>
/<media-id>?width=<w>&height=<h>&method=<m> HTTP/1.1
<= HTTP/1.1 200 OK
Content-Type: image/jpeg or image/png
<thumbnail>
2014-12-11 11:41:43 +01:00
The thumbnail methods are "crop" and "scale". "scale" trys to return an
image where either the width or the height is smaller than the requested
size. The client should then scale and letterbox the image if it needs to
fit within a given rectangle. "crop" trys to return an image where the
width and height are close to the requested size and the aspect matches
the requested size. The client should scale the image if it needs to fit
within a given rectangle.
"""
def __init__(self, hs):
# If we're not configured to use it, raise if we somehow got here.
if not hs.config.can_load_media_repo:
raise ConfigError("Synapse is not configured to use a media repo.")
super().__init__()
2016-06-29 15:57:59 +02:00
media_repo = hs.get_media_repository()
2018-09-12 12:41:31 +02:00
self.putChild(b"upload", UploadResource(hs, media_repo))
self.putChild(b"download", DownloadResource(hs, media_repo))
2019-06-20 11:32:02 +02:00
self.putChild(
b"thumbnail", ThumbnailResource(hs, media_repo, media_repo.media_storage)
)
if hs.config.url_preview_enabled:
2019-06-20 11:32:02 +02:00
self.putChild(
b"preview_url",
PreviewUrlResource(hs, media_repo, media_repo.media_storage),
)
2018-09-12 12:41:31 +02:00
self.putChild(b"config", MediaConfigResource(hs))