2018-01-08 12:19:55 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
2021-01-15 10:57:37 -05:00
|
|
|
# Copyright 2018-2021 The Matrix.org Foundation C.I.C.
|
2018-01-08 12:19:55 -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.
|
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
import abc
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import shutil
|
2021-01-15 10:57:37 -05:00
|
|
|
from typing import TYPE_CHECKING, Optional
|
2018-01-08 12:19:55 -05:00
|
|
|
|
2018-01-16 10:44:08 -05:00
|
|
|
from synapse.config._base import Config
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.logging.context import defer_to_thread, run_in_background
|
2020-12-11 14:05:15 -05:00
|
|
|
from synapse.util.async_helpers import maybe_awaitable
|
2018-01-08 12:19:55 -05:00
|
|
|
|
2020-07-27 14:40:11 -04:00
|
|
|
from ._base import FileInfo, Responder
|
2018-07-09 02:09:20 -04:00
|
|
|
from .media_storage import FileResponder
|
2018-01-08 12:19:55 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.app.homeserver import HomeServer
|
2018-01-08 12:19:55 -05:00
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
|
|
|
|
class StorageProvider(metaclass=abc.ABCMeta):
|
2018-01-08 12:19:55 -05:00
|
|
|
"""A storage provider is a service that can store uploaded media and
|
|
|
|
retrieve them.
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
@abc.abstractmethod
|
|
|
|
async def store_file(self, path: str, file_info: FileInfo) -> None:
|
2018-01-08 12:19:55 -05:00
|
|
|
"""Store the file described by file_info. The actual contents can be
|
|
|
|
retrieved by reading the file in file_info.upload_path.
|
|
|
|
|
|
|
|
Args:
|
2020-07-27 14:40:11 -04:00
|
|
|
path: Relative path of file in local cache
|
|
|
|
file_info: The metadata of the file.
|
2018-01-08 12:19:55 -05:00
|
|
|
"""
|
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
@abc.abstractmethod
|
2020-07-27 14:40:11 -04:00
|
|
|
async def fetch(self, path: str, file_info: FileInfo) -> Optional[Responder]:
|
2018-01-08 12:19:55 -05:00
|
|
|
"""Attempt to fetch the file described by file_info and stream it
|
|
|
|
into writer.
|
|
|
|
|
|
|
|
Args:
|
2020-07-27 14:40:11 -04:00
|
|
|
path: Relative path of file in local cache
|
|
|
|
file_info: The metadata of the file.
|
2018-01-08 12:19:55 -05:00
|
|
|
|
|
|
|
Returns:
|
2020-07-27 14:40:11 -04:00
|
|
|
Returns a Responder if the provider has the file, otherwise returns None.
|
2018-01-08 12:19:55 -05:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
class StorageProviderWrapper(StorageProvider):
|
|
|
|
"""Wraps a storage provider and provides various config options
|
|
|
|
|
|
|
|
Args:
|
2020-07-27 14:40:11 -04:00
|
|
|
backend: The storage provider to wrap.
|
|
|
|
store_local: Whether to store new local files or not.
|
|
|
|
store_synchronous: Whether to wait for file to be successfully
|
2019-07-12 10:29:32 -04:00
|
|
|
uploaded, or todo the upload in the background.
|
2020-07-27 14:40:11 -04:00
|
|
|
store_remote: Whether remote media should be uploaded
|
2018-01-08 12:19:55 -05:00
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2020-07-27 14:40:11 -04:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
backend: StorageProvider,
|
|
|
|
store_local: bool,
|
|
|
|
store_synchronous: bool,
|
|
|
|
store_remote: bool,
|
|
|
|
):
|
2018-01-08 12:19:55 -05:00
|
|
|
self.backend = backend
|
2018-01-16 10:44:08 -05:00
|
|
|
self.store_local = store_local
|
2018-01-08 12:19:55 -05:00
|
|
|
self.store_synchronous = store_synchronous
|
|
|
|
self.store_remote = store_remote
|
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
def __str__(self) -> str:
|
2020-01-23 07:11:44 -05:00
|
|
|
return "StorageProviderWrapper[%s]" % (self.backend,)
|
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
async def store_file(self, path: str, file_info: FileInfo) -> None:
|
2018-01-18 13:37:59 -05:00
|
|
|
if not file_info.server_name and not self.store_local:
|
2020-07-27 14:40:11 -04:00
|
|
|
return None
|
2018-01-08 12:19:55 -05:00
|
|
|
|
|
|
|
if file_info.server_name and not self.store_remote:
|
2020-07-27 14:40:11 -04:00
|
|
|
return None
|
2018-01-08 12:19:55 -05:00
|
|
|
|
|
|
|
if self.store_synchronous:
|
2020-08-04 09:44:25 -04:00
|
|
|
# store_file is supposed to return an Awaitable, but guard
|
|
|
|
# against improper implementations.
|
2021-01-15 10:57:37 -05:00
|
|
|
await maybe_awaitable(self.backend.store_file(path, file_info)) # type: ignore
|
2018-01-08 12:19:55 -05:00
|
|
|
else:
|
|
|
|
# TODO: Handle errors.
|
2020-08-04 09:44:25 -04:00
|
|
|
async def store():
|
2018-04-27 06:07:40 -04:00
|
|
|
try:
|
2020-12-11 14:05:15 -05:00
|
|
|
return await maybe_awaitable(
|
|
|
|
self.backend.store_file(path, file_info)
|
|
|
|
)
|
2018-04-27 06:07:40 -04:00
|
|
|
except Exception:
|
|
|
|
logger.exception("Error storing file")
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2018-04-27 06:07:40 -04:00
|
|
|
run_in_background(store)
|
2018-01-08 12:19:55 -05:00
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
async def fetch(self, path: str, file_info: FileInfo) -> Optional[Responder]:
|
2020-08-04 09:44:25 -04:00
|
|
|
# store_file is supposed to return an Awaitable, but guard
|
|
|
|
# against improper implementations.
|
2020-12-11 14:05:15 -05:00
|
|
|
return await maybe_awaitable(self.backend.fetch(path, file_info))
|
2018-01-08 12:19:55 -05:00
|
|
|
|
|
|
|
|
|
|
|
class FileStorageProviderBackend(StorageProvider):
|
|
|
|
"""A storage provider that stores files in a directory on a filesystem.
|
|
|
|
|
|
|
|
Args:
|
2021-01-15 10:57:37 -05:00
|
|
|
hs
|
2018-01-18 12:11:20 -05:00
|
|
|
config: The config returned by `parse_config`.
|
2018-01-08 12:19:55 -05:00
|
|
|
"""
|
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
def __init__(self, hs: "HomeServer", config: str):
|
2019-05-13 16:01:14 -04:00
|
|
|
self.hs = hs
|
2018-01-16 10:44:08 -05:00
|
|
|
self.cache_directory = hs.config.media_store_path
|
|
|
|
self.base_directory = config
|
2018-01-08 12:19:55 -05:00
|
|
|
|
2020-01-23 07:11:44 -05:00
|
|
|
def __str__(self):
|
|
|
|
return "FileStorageProviderBackend[%s]" % (self.base_directory,)
|
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
async def store_file(self, path: str, file_info: FileInfo) -> None:
|
2018-01-08 12:19:55 -05:00
|
|
|
"""See StorageProvider.store_file"""
|
|
|
|
|
|
|
|
primary_fname = os.path.join(self.cache_directory, path)
|
|
|
|
backup_fname = os.path.join(self.base_directory, path)
|
|
|
|
|
|
|
|
dirname = os.path.dirname(backup_fname)
|
|
|
|
if not os.path.exists(dirname):
|
|
|
|
os.makedirs(dirname)
|
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
await defer_to_thread(
|
2019-06-20 05:32:02 -04:00
|
|
|
self.hs.get_reactor(), shutil.copyfile, primary_fname, backup_fname
|
2018-01-08 12:19:55 -05:00
|
|
|
)
|
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
async def fetch(self, path: str, file_info: FileInfo) -> Optional[Responder]:
|
2018-01-08 12:19:55 -05:00
|
|
|
"""See StorageProvider.fetch"""
|
|
|
|
|
|
|
|
backup_fname = os.path.join(self.base_directory, path)
|
|
|
|
if os.path.isfile(backup_fname):
|
|
|
|
return FileResponder(open(backup_fname, "rb"))
|
2018-01-16 10:44:08 -05:00
|
|
|
|
2021-01-15 10:57:37 -05:00
|
|
|
return None
|
|
|
|
|
2018-01-18 12:11:45 -05:00
|
|
|
@staticmethod
|
2021-01-15 10:57:37 -05:00
|
|
|
def parse_config(config: dict) -> str:
|
2018-01-16 10:44:08 -05:00
|
|
|
"""Called on startup to parse config supplied. This should parse
|
|
|
|
the config and raise if there is a problem.
|
|
|
|
|
|
|
|
The returned value is passed into the constructor.
|
|
|
|
|
2018-01-18 12:11:20 -05:00
|
|
|
In this case we only care about a single param, the directory, so let's
|
2018-01-16 10:44:08 -05:00
|
|
|
just pull that out.
|
|
|
|
"""
|
|
|
|
return Config.ensure_directory(config["directory"])
|