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.
|
|
|
|
|
2015-04-21 11:35:53 -04:00
|
|
|
from synapse.http.server import respond_with_json, request_handler
|
2014-12-02 10:09:51 -05:00
|
|
|
|
2015-04-21 11:35:53 -04:00
|
|
|
from synapse.api.errors import SynapseError
|
2014-12-02 10:09:51 -05:00
|
|
|
|
2014-12-04 09:22:31 -05:00
|
|
|
from twisted.web.server import NOT_DONE_YET
|
2014-12-02 10:09:51 -05:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2016-04-19 06:24:59 -04:00
|
|
|
from twisted.web.resource import Resource
|
2014-12-02 14:51:47 -05:00
|
|
|
|
2014-12-02 10:09:51 -05:00
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-12-02 14:55:18 -05:00
|
|
|
|
2016-04-19 06:24:59 -04:00
|
|
|
class UploadResource(Resource):
|
|
|
|
isLeaf = True
|
|
|
|
|
|
|
|
def __init__(self, hs, media_repo):
|
|
|
|
Resource.__init__(self)
|
|
|
|
|
|
|
|
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
|
|
|
|
self.version_string = hs.version_string
|
2016-04-28 05:57:49 -04:00
|
|
|
self.clock = hs.get_clock()
|
2016-04-19 06:24:59 -04:00
|
|
|
|
2014-12-02 10:09:51 -05:00
|
|
|
def render_POST(self, request):
|
|
|
|
self._async_render_POST(request)
|
2014-12-04 09:22:31 -05:00
|
|
|
return NOT_DONE_YET
|
2014-12-02 10:09:51 -05:00
|
|
|
|
|
|
|
def render_OPTIONS(self, request):
|
|
|
|
respond_with_json(request, 200, {}, send_cors=True)
|
2014-12-04 09:22:31 -05:00
|
|
|
return NOT_DONE_YET
|
2015-02-10 11:30:48 -05:00
|
|
|
|
2016-04-28 05:57:49 -04:00
|
|
|
@request_handler()
|
2014-12-02 10:09:51 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _async_render_POST(self, request):
|
2016-01-11 10:29:57 -05:00
|
|
|
requester = yield 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
|
|
|
|
content_length = request.getHeader("Content-Length")
|
|
|
|
if content_length is None:
|
|
|
|
raise SynapseError(
|
|
|
|
msg="Request must specify a Content-Length", code=400
|
2014-12-02 10:09:51 -05:00
|
|
|
)
|
2015-04-21 11:35:53 -04:00
|
|
|
if int(content_length) > self.max_upload_size:
|
|
|
|
raise SynapseError(
|
|
|
|
msg="Upload request body is too large",
|
|
|
|
code=413,
|
2014-12-02 10:09:51 -05:00
|
|
|
)
|
2015-04-21 11:35:53 -04:00
|
|
|
|
2015-06-30 04:33:48 -04:00
|
|
|
upload_name = request.args.get("filename", None)
|
|
|
|
if upload_name:
|
2015-08-26 12:27:23 -04:00
|
|
|
try:
|
|
|
|
upload_name = upload_name[0].decode('UTF-8')
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
raise SynapseError(
|
|
|
|
msg="Invalid UTF-8 filename parameter: %r" % (upload_name),
|
|
|
|
code=400,
|
|
|
|
)
|
2015-06-30 04:33:48 -04:00
|
|
|
|
2015-04-21 11:35:53 -04:00
|
|
|
headers = request.requestHeaders
|
|
|
|
|
|
|
|
if headers.hasHeader("Content-Type"):
|
|
|
|
media_type = headers.getRawHeaders("Content-Type")[0]
|
|
|
|
else:
|
|
|
|
raise SynapseError(
|
|
|
|
msg="Upload request missing 'Content-Type'",
|
|
|
|
code=400,
|
2014-12-02 10:09:51 -05:00
|
|
|
)
|
2015-04-21 11:35:53 -04:00
|
|
|
|
|
|
|
# if headers.hasHeader("Content-Disposition"):
|
|
|
|
# disposition = headers.getRawHeaders("Content-Disposition")[0]
|
|
|
|
# TODO(markjh): parse content-dispostion
|
|
|
|
|
2016-04-19 06:24:59 -04:00
|
|
|
content_uri = yield self.media_repo.create_content(
|
2017-10-12 10:20:59 -04:00
|
|
|
media_type, upload_name, request.content,
|
2016-01-11 10:29:57 -05:00
|
|
|
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)
|
|
|
|
|
2015-04-21 11:35:53 -04:00
|
|
|
respond_with_json(
|
|
|
|
request, 200, {"content_uri": content_uri}, send_cors=True
|
|
|
|
)
|