2014-12-02 10:09:51 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-12-02 10:09:51 -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-05-10 07:10:27 -04:00
|
|
|
import logging
|
2014-12-02 10:09:51 -05:00
|
|
|
|
2019-10-08 08:55:16 -04:00
|
|
|
from synapse.api.errors import Codes, SynapseError
|
2020-07-03 14:02:19 -04:00
|
|
|
from synapse.http.server import DirectServeJsonResource, respond_with_json
|
2018-07-13 15:40:14 -04:00
|
|
|
from synapse.http.servlet import parse_string
|
2014-12-02 10:09:51 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-12-02 14:55:18 -05:00
|
|
|
|
2020-07-03 14:02:19 -04:00
|
|
|
class UploadResource(DirectServeJsonResource):
|
2016-04-19 06:24:59 -04:00
|
|
|
isLeaf = True
|
|
|
|
|
|
|
|
def __init__(self, hs, media_repo):
|
2019-06-29 03:06:55 -04:00
|
|
|
super().__init__()
|
2016-04-19 06:24:59 -04:00
|
|
|
|
|
|
|
self.media_repo = media_repo
|
|
|
|
self.filepaths = media_repo.filepaths
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
self.server_name = hs.hostname
|
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.max_upload_size = hs.config.max_upload_size
|
2016-04-28 05:57:49 -04:00
|
|
|
self.clock = hs.get_clock()
|
2016-04-19 06:24:59 -04:00
|
|
|
|
2020-07-03 14:02:19 -04:00
|
|
|
async def _async_render_OPTIONS(self, request):
|
2014-12-02 10:09:51 -05:00
|
|
|
respond_with_json(request, 200, {}, send_cors=True)
|
2015-02-10 11:30:48 -05:00
|
|
|
|
2019-06-29 03:06:55 -04:00
|
|
|
async def _async_render_POST(self, request):
|
|
|
|
requester = await self.auth.get_user_by_req(request)
|
2015-04-21 11:35:53 -04:00
|
|
|
# TODO: The checks here are a bit late. The content will have
|
|
|
|
# already been uploaded to a tmp file at this point
|
2020-12-04 10:26:09 -05:00
|
|
|
content_length = request.getHeader("Content-Length")
|
2015-04-21 11:35:53 -04:00
|
|
|
if content_length is None:
|
2019-06-20 05:32:02 -04:00
|
|
|
raise SynapseError(msg="Request must specify a Content-Length", code=400)
|
2015-04-21 11:35:53 -04:00
|
|
|
if int(content_length) > self.max_upload_size:
|
2019-10-08 08:55:16 -04:00
|
|
|
raise SynapseError(
|
|
|
|
msg="Upload request body is too large",
|
|
|
|
code=413,
|
|
|
|
errcode=Codes.TOO_LARGE,
|
|
|
|
)
|
2015-04-21 11:35:53 -04:00
|
|
|
|
2018-08-20 09:54:49 -04:00
|
|
|
upload_name = parse_string(request, b"filename", encoding=None)
|
2015-06-30 04:33:48 -04:00
|
|
|
if upload_name:
|
2015-08-26 12:27:23 -04:00
|
|
|
try:
|
2019-06-20 05:32:02 -04:00
|
|
|
upload_name = upload_name.decode("utf8")
|
2015-08-26 12:27:23 -04:00
|
|
|
except UnicodeDecodeError:
|
|
|
|
raise SynapseError(
|
2019-06-20 05:32:02 -04:00
|
|
|
msg="Invalid UTF-8 filename parameter: %r" % (upload_name), code=400
|
2015-08-26 12:27:23 -04:00
|
|
|
)
|
2015-06-30 04:33:48 -04:00
|
|
|
|
2020-09-29 12:15:27 -04:00
|
|
|
# If the name is falsey (e.g. an empty byte string) ensure it is None.
|
|
|
|
else:
|
|
|
|
upload_name = None
|
|
|
|
|
2015-04-21 11:35:53 -04:00
|
|
|
headers = request.requestHeaders
|
|
|
|
|
2018-08-20 09:54:49 -04:00
|
|
|
if headers.hasHeader(b"Content-Type"):
|
2019-06-20 05:32:02 -04:00
|
|
|
media_type = headers.getRawHeaders(b"Content-Type")[0].decode("ascii")
|
2015-04-21 11:35:53 -04:00
|
|
|
else:
|
2019-06-20 05:32:02 -04:00
|
|
|
raise SynapseError(msg="Upload request missing 'Content-Type'", code=400)
|
2015-04-21 11:35:53 -04:00
|
|
|
|
2018-04-28 17:56:59 -04:00
|
|
|
# if headers.hasHeader(b"Content-Disposition"):
|
|
|
|
# disposition = headers.getRawHeaders(b"Content-Disposition")[0]
|
2015-04-21 11:35:53 -04:00
|
|
|
# TODO(markjh): parse content-dispostion
|
|
|
|
|
2019-06-29 03:06:55 -04:00
|
|
|
content_uri = await self.media_repo.create_content(
|
2019-06-20 05:32:02 -04:00
|
|
|
media_type, upload_name, request.content, content_length, requester.user
|
2015-04-21 11:35:53 -04:00
|
|
|
)
|
|
|
|
|
2017-01-10 09:19:50 -05:00
|
|
|
logger.info("Uploaded content with URI %r", content_uri)
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
respond_with_json(request, 200, {"content_uri": content_uri}, send_cors=True)
|