2014-12-10 09:46:55 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-01-06 08:21:39 -05:00
|
|
|
# Copyright 2014, 2015 OpenMarket Ltd
|
2014-12-10 09:46: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.
|
|
|
|
|
|
|
|
from .thumbnailer import Thumbnailer
|
|
|
|
|
2015-06-03 05:15:27 -04:00
|
|
|
from synapse.http.matrixfederationclient import MatrixFederationHttpClient
|
2014-12-10 09:46:55 -05:00
|
|
|
from synapse.http.server import respond_with_json
|
|
|
|
from synapse.util.stringutils import random_string
|
|
|
|
from synapse.api.errors import (
|
2015-04-21 11:35:53 -04:00
|
|
|
cs_error, Codes, SynapseError
|
2014-12-10 09:46:55 -05:00
|
|
|
)
|
|
|
|
|
2015-06-02 10:39:08 -04:00
|
|
|
from twisted.internet import defer, threads
|
2014-12-10 09:46:55 -05:00
|
|
|
from twisted.web.resource import Resource
|
|
|
|
from twisted.protocols.basic import FileSender
|
|
|
|
|
2015-05-08 11:27:36 -04:00
|
|
|
from synapse.util.async import ObservableDeferred
|
2015-06-30 05:31:59 -04:00
|
|
|
from synapse.util.stringutils import is_ascii
|
2015-04-27 09:20:26 -04:00
|
|
|
|
2014-12-10 09:46:55 -05:00
|
|
|
import os
|
|
|
|
|
2015-06-30 04:33:48 -04:00
|
|
|
import cgi
|
2014-12-10 09:46:55 -05:00
|
|
|
import logging
|
2015-08-26 11:26:37 -04:00
|
|
|
import urllib
|
2015-08-26 12:08:47 -04:00
|
|
|
import urlparse
|
2014-12-10 09:46:55 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2015-04-21 11:35:53 -04:00
|
|
|
def parse_media_id(request):
|
|
|
|
try:
|
2015-06-30 04:33:48 -04:00
|
|
|
# This allows users to append e.g. /test.png to the URL. Useful for
|
|
|
|
# clients that parse the URL to see content type.
|
|
|
|
server_name, media_id = request.postpath[:2]
|
2015-08-26 12:08:47 -04:00
|
|
|
file_name = None
|
|
|
|
if len(request.postpath) > 2:
|
|
|
|
try:
|
|
|
|
file_name = urlparse.unquote(request.postpath[-1]).decode("utf-8")
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
pass
|
|
|
|
return server_name, media_id, file_name
|
2015-04-21 11:35:53 -04:00
|
|
|
except:
|
|
|
|
raise SynapseError(
|
|
|
|
404,
|
|
|
|
"Invalid media id token %r" % (request.postpath,),
|
|
|
|
Codes.UNKNOWN,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2014-12-10 09:46:55 -05:00
|
|
|
class BaseMediaResource(Resource):
|
|
|
|
isLeaf = True
|
|
|
|
|
|
|
|
def __init__(self, hs, filepaths):
|
|
|
|
Resource.__init__(self)
|
2014-12-10 10:46:18 -05:00
|
|
|
self.auth = hs.get_auth()
|
2015-06-03 05:15:27 -04:00
|
|
|
self.client = MatrixFederationHttpClient(hs)
|
2014-12-10 09:46:55 -05:00
|
|
|
self.clock = hs.get_clock()
|
|
|
|
self.server_name = hs.hostname
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.max_upload_size = hs.config.max_upload_size
|
2014-12-11 09:19:32 -05:00
|
|
|
self.max_image_pixels = hs.config.max_image_pixels
|
2014-12-10 09:46:55 -05:00
|
|
|
self.filepaths = filepaths
|
2015-04-21 11:43:58 -04:00
|
|
|
self.version_string = hs.version_string
|
2014-12-11 11:48:11 -05:00
|
|
|
self.downloads = {}
|
2015-08-12 05:54:38 -04:00
|
|
|
self.dynamic_thumbnails = hs.config.dynamic_thumbnails
|
2015-08-12 05:55:27 -04:00
|
|
|
self.thumbnail_requirements = hs.config.thumbnail_requirements
|
2014-12-10 09:46:55 -05:00
|
|
|
|
|
|
|
def _respond_404(self, request):
|
|
|
|
respond_with_json(
|
|
|
|
request, 404,
|
|
|
|
cs_error(
|
|
|
|
"Not found %r" % (request.postpath,),
|
|
|
|
code=Codes.NOT_FOUND,
|
|
|
|
),
|
|
|
|
send_cors=True
|
|
|
|
)
|
|
|
|
|
2014-12-10 10:46:18 -05:00
|
|
|
@staticmethod
|
|
|
|
def _makedirs(filepath):
|
|
|
|
dirname = os.path.dirname(filepath)
|
|
|
|
if not os.path.exists(dirname):
|
|
|
|
os.makedirs(dirname)
|
|
|
|
|
2014-12-11 11:48:11 -05:00
|
|
|
def _get_remote_media(self, server_name, media_id):
|
|
|
|
key = (server_name, media_id)
|
|
|
|
download = self.downloads.get(key)
|
|
|
|
if download is None:
|
|
|
|
download = self._get_remote_media_impl(server_name, media_id)
|
2015-05-08 11:27:36 -04:00
|
|
|
download = ObservableDeferred(
|
|
|
|
download,
|
|
|
|
consumeErrors=True
|
|
|
|
)
|
2014-12-11 11:48:11 -05:00
|
|
|
self.downloads[key] = download
|
2014-12-16 10:24:03 -05:00
|
|
|
|
2014-12-11 11:48:11 -05:00
|
|
|
@download.addBoth
|
|
|
|
def callback(media_info):
|
|
|
|
del self.downloads[key]
|
2014-12-29 08:54:05 -05:00
|
|
|
return media_info
|
2015-05-08 11:27:36 -04:00
|
|
|
return download.observe()
|
2014-12-11 11:48:11 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _get_remote_media_impl(self, server_name, media_id):
|
|
|
|
media_info = yield self.store.get_cached_remote_media(
|
|
|
|
server_name, media_id
|
|
|
|
)
|
|
|
|
if not media_info:
|
|
|
|
media_info = yield self._download_remote_file(
|
|
|
|
server_name, media_id
|
|
|
|
)
|
|
|
|
defer.returnValue(media_info)
|
|
|
|
|
2014-12-10 09:46:55 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _download_remote_file(self, server_name, media_id):
|
|
|
|
file_id = random_string(24)
|
|
|
|
|
|
|
|
fname = self.filepaths.remote_media_filepath(
|
|
|
|
server_name, file_id
|
|
|
|
)
|
2014-12-10 10:46:18 -05:00
|
|
|
self._makedirs(fname)
|
2014-12-10 09:46:55 -05:00
|
|
|
|
|
|
|
try:
|
|
|
|
with open(fname, "wb") as f:
|
|
|
|
request_path = "/".join((
|
|
|
|
"/_matrix/media/v1/download", server_name, media_id,
|
2014-12-10 10:46:18 -05:00
|
|
|
))
|
2014-12-10 09:46:55 -05:00
|
|
|
length, headers = yield self.client.get_file(
|
|
|
|
server_name, request_path, output_stream=f,
|
2014-12-11 09:19:32 -05:00
|
|
|
max_size=self.max_upload_size,
|
2014-12-10 09:46:55 -05:00
|
|
|
)
|
|
|
|
media_type = headers["Content-Type"][0]
|
|
|
|
time_now_ms = self.clock.time_msec()
|
|
|
|
|
2015-06-30 04:33:48 -04:00
|
|
|
content_disposition = headers.get("Content-Disposition", None)
|
|
|
|
if content_disposition:
|
|
|
|
_, params = cgi.parse_header(content_disposition[0],)
|
2015-08-27 05:48:58 -04:00
|
|
|
upload_name = None
|
|
|
|
|
|
|
|
# First check if there is a valid UTF-8 filename
|
|
|
|
upload_name_utf8 = params.get("filename*", None)
|
|
|
|
if upload_name_utf8:
|
|
|
|
if upload_name_utf8.lower().startswith("utf-8''"):
|
|
|
|
upload_name = upload_name_utf8[7:]
|
|
|
|
|
|
|
|
# If there isn't check for an ascii name.
|
|
|
|
if not upload_name:
|
2015-08-27 05:50:49 -04:00
|
|
|
upload_name_ascii = params.get("filename", None)
|
|
|
|
if upload_name_ascii and is_ascii(upload_name_ascii):
|
|
|
|
upload_name = upload_name_ascii
|
2015-08-27 05:48:58 -04:00
|
|
|
|
2015-08-26 12:08:47 -04:00
|
|
|
if upload_name:
|
|
|
|
upload_name = urlparse.unquote(upload_name)
|
|
|
|
try:
|
2015-08-26 12:27:23 -04:00
|
|
|
upload_name = upload_name.decode("utf-8")
|
2015-08-26 12:08:47 -04:00
|
|
|
except UnicodeDecodeError:
|
|
|
|
upload_name = None
|
2015-06-30 04:33:48 -04:00
|
|
|
else:
|
|
|
|
upload_name = None
|
|
|
|
|
2014-12-10 09:46:55 -05:00
|
|
|
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(),
|
2015-06-30 04:33:48 -04:00
|
|
|
upload_name=upload_name,
|
2014-12-10 09:46:55 -05:00
|
|
|
media_length=length,
|
2014-12-10 10:46:18 -05:00
|
|
|
filesystem_id=file_id,
|
2014-12-10 09:46:55 -05:00
|
|
|
)
|
|
|
|
except:
|
|
|
|
os.remove(fname)
|
|
|
|
raise
|
|
|
|
|
|
|
|
media_info = {
|
|
|
|
"media_type": media_type,
|
|
|
|
"media_length": length,
|
2015-06-30 04:33:48 -04:00
|
|
|
"upload_name": upload_name,
|
2014-12-10 09:46:55 -05:00
|
|
|
"created_ts": time_now_ms,
|
2014-12-10 10:46:18 -05:00
|
|
|
"filesystem_id": file_id,
|
2014-12-10 09:46:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
yield self._generate_remote_thumbnails(
|
|
|
|
server_name, media_id, media_info
|
|
|
|
)
|
|
|
|
|
|
|
|
defer.returnValue(media_info)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2015-01-06 06:32:36 -05:00
|
|
|
def _respond_with_file(self, request, media_type, file_path,
|
2015-06-30 04:33:48 -04:00
|
|
|
file_size=None, upload_name=None):
|
2014-12-10 09:46:55 -05:00
|
|
|
logger.debug("Responding with %r", file_path)
|
|
|
|
|
|
|
|
if os.path.isfile(file_path):
|
|
|
|
request.setHeader(b"Content-Type", media_type.encode("UTF-8"))
|
2015-06-30 04:33:48 -04:00
|
|
|
if upload_name:
|
2015-08-26 11:26:37 -04:00
|
|
|
if is_ascii(upload_name):
|
|
|
|
request.setHeader(
|
|
|
|
b"Content-Disposition",
|
2015-08-26 12:08:47 -04:00
|
|
|
b"inline; filename=%s" % (
|
|
|
|
urllib.quote(upload_name.encode("utf-8")),
|
|
|
|
),
|
2015-08-26 11:26:37 -04:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
request.setHeader(
|
|
|
|
b"Content-Disposition",
|
|
|
|
b"inline; filename*=utf-8''%s" % (
|
|
|
|
urllib.quote(upload_name.encode("utf-8")),
|
|
|
|
),
|
|
|
|
)
|
2014-12-10 09:46:55 -05:00
|
|
|
|
|
|
|
# cache for at least a day.
|
|
|
|
# XXX: we might want to turn this off for data we don't want to
|
|
|
|
# recommend caching as it's sensitive or private - or at least
|
|
|
|
# select private. don't bother setting Expires as all our
|
|
|
|
# clients are smart enough to be happy with Cache-Control
|
|
|
|
request.setHeader(
|
|
|
|
b"Cache-Control", b"public,max-age=86400,s-maxage=86400"
|
|
|
|
)
|
2015-01-06 06:32:36 -05:00
|
|
|
if file_size is None:
|
|
|
|
stat = os.stat(file_path)
|
|
|
|
file_size = stat.st_size
|
|
|
|
|
|
|
|
request.setHeader(
|
|
|
|
b"Content-Length", b"%d" % (file_size,)
|
|
|
|
)
|
2014-12-10 09:46:55 -05:00
|
|
|
|
|
|
|
with open(file_path, "rb") as f:
|
|
|
|
yield FileSender().beginFileTransfer(f, request)
|
|
|
|
|
|
|
|
request.finish()
|
|
|
|
else:
|
2015-01-06 06:32:36 -05:00
|
|
|
self._respond_404(request)
|
2014-12-10 09:46:55 -05:00
|
|
|
|
|
|
|
def _get_thumbnail_requirements(self, media_type):
|
2015-08-12 05:55:27 -04:00
|
|
|
return self.thumbnail_requirements.get(media_type, ())
|
2014-12-10 09:46:55 -05:00
|
|
|
|
2015-07-23 10:59:32 -04:00
|
|
|
def _generate_thumbnail(self, input_path, t_path, t_width, t_height,
|
|
|
|
t_method, t_type):
|
|
|
|
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",
|
|
|
|
m_width, m_height, self.max_image_pixels
|
|
|
|
)
|
|
|
|
return
|
|
|
|
|
|
|
|
if t_method == "crop":
|
|
|
|
t_len = thumbnailer.crop(t_path, t_width, t_height, t_type)
|
|
|
|
elif t_method == "scale":
|
|
|
|
t_len = thumbnailer.scale(t_path, t_width, t_height, t_type)
|
|
|
|
else:
|
|
|
|
t_len = None
|
|
|
|
|
|
|
|
return t_len
|
|
|
|
|
2015-07-23 09:12:49 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _generate_local_exact_thumbnail(self, media_id, t_width, t_height,
|
|
|
|
t_method, t_type):
|
|
|
|
input_path = self.filepaths.local_media_filepath(media_id)
|
|
|
|
|
2015-07-23 10:59:32 -04:00
|
|
|
t_path = self.filepaths.local_media_thumbnail(
|
|
|
|
media_id, t_width, t_height, t_type, t_method
|
|
|
|
)
|
|
|
|
self._makedirs(t_path)
|
2015-07-23 09:12:49 -04:00
|
|
|
|
2015-07-23 10:59:32 -04:00
|
|
|
t_len = yield threads.deferToThread(
|
|
|
|
self._generate_thumbnail,
|
|
|
|
input_path, t_path, t_width, t_height, t_method, t_type
|
|
|
|
)
|
2015-07-23 09:12:49 -04:00
|
|
|
|
2015-07-23 10:59:32 -04:00
|
|
|
if t_len:
|
2015-07-23 09:12:49 -04:00
|
|
|
yield self.store.store_local_thumbnail(
|
|
|
|
media_id, t_width, t_height, t_type, t_method, t_len
|
|
|
|
)
|
|
|
|
|
|
|
|
defer.returnValue(t_path)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _generate_remote_exact_thumbnail(self, server_name, file_id, media_id,
|
|
|
|
t_width, t_height, t_method, t_type):
|
|
|
|
input_path = self.filepaths.remote_media_filepath(server_name, file_id)
|
|
|
|
|
2015-07-23 10:59:32 -04:00
|
|
|
t_path = self.filepaths.remote_media_thumbnail(
|
|
|
|
server_name, file_id, t_width, t_height, t_type, t_method
|
|
|
|
)
|
|
|
|
self._makedirs(t_path)
|
2015-07-23 09:12:49 -04:00
|
|
|
|
2015-07-23 10:59:32 -04:00
|
|
|
t_len = yield threads.deferToThread(
|
|
|
|
self._generate_thumbnail,
|
|
|
|
input_path, t_path, t_width, t_height, t_method, t_type
|
|
|
|
)
|
2015-07-23 09:12:49 -04:00
|
|
|
|
2015-07-23 10:59:32 -04:00
|
|
|
if t_len:
|
2015-07-23 09:12:49 -04:00
|
|
|
yield self.store.store_remote_media_thumbnail(
|
|
|
|
server_name, media_id, file_id,
|
|
|
|
t_width, t_height, t_type, t_method, t_len
|
|
|
|
)
|
|
|
|
|
|
|
|
defer.returnValue(t_path)
|
|
|
|
|
2014-12-10 09:46:55 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _generate_local_thumbnails(self, media_id, media_info):
|
|
|
|
media_type = media_info["media_type"]
|
|
|
|
requirements = self._get_thumbnail_requirements(media_type)
|
|
|
|
if not requirements:
|
|
|
|
return
|
|
|
|
|
2014-12-10 10:46:18 -05:00
|
|
|
input_path = self.filepaths.local_media_filepath(media_id)
|
2014-12-10 09:46:55 -05:00
|
|
|
thumbnailer = Thumbnailer(input_path)
|
|
|
|
m_width = thumbnailer.width
|
|
|
|
m_height = thumbnailer.height
|
2014-12-11 09:19:32 -05:00
|
|
|
|
|
|
|
if m_width * m_height >= self.max_image_pixels:
|
|
|
|
logger.info(
|
2014-12-11 11:48:11 -05:00
|
|
|
"Image too large to thumbnail %r x %r > %r",
|
2014-12-11 09:19:32 -05:00
|
|
|
m_width, m_height, self.max_image_pixels
|
|
|
|
)
|
|
|
|
return
|
|
|
|
|
2015-07-23 09:52:29 -04:00
|
|
|
local_thumbnails = []
|
|
|
|
|
|
|
|
def generate_thumbnails():
|
|
|
|
scales = set()
|
|
|
|
crops = set()
|
|
|
|
for r_width, r_height, r_method, r_type in requirements:
|
|
|
|
if r_method == "scale":
|
|
|
|
t_width, t_height = thumbnailer.aspect(r_width, r_height)
|
|
|
|
scales.add((
|
|
|
|
min(m_width, t_width), min(m_height, t_height), r_type,
|
|
|
|
))
|
|
|
|
elif r_method == "crop":
|
|
|
|
crops.add((r_width, r_height, r_type))
|
|
|
|
|
|
|
|
for t_width, t_height, t_type in scales:
|
|
|
|
t_method = "scale"
|
|
|
|
t_path = self.filepaths.local_media_thumbnail(
|
|
|
|
media_id, t_width, t_height, t_type, t_method
|
|
|
|
)
|
|
|
|
self._makedirs(t_path)
|
|
|
|
t_len = thumbnailer.scale(t_path, t_width, t_height, t_type)
|
|
|
|
|
|
|
|
local_thumbnails.append((
|
|
|
|
media_id, t_width, t_height, t_type, t_method, t_len
|
2014-12-10 09:46:55 -05:00
|
|
|
))
|
|
|
|
|
2015-07-23 09:52:29 -04:00
|
|
|
for t_width, t_height, t_type in crops:
|
|
|
|
if (t_width, t_height, t_type) in scales:
|
|
|
|
# If the aspect ratio of the cropped thumbnail matches a purely
|
|
|
|
# scaled one then there is no point in calculating a separate
|
|
|
|
# thumbnail.
|
|
|
|
continue
|
|
|
|
t_method = "crop"
|
|
|
|
t_path = self.filepaths.local_media_thumbnail(
|
|
|
|
media_id, t_width, t_height, t_type, t_method
|
|
|
|
)
|
|
|
|
self._makedirs(t_path)
|
|
|
|
t_len = thumbnailer.crop(t_path, t_width, t_height, t_type)
|
|
|
|
local_thumbnails.append((
|
|
|
|
media_id, t_width, t_height, t_type, t_method, t_len
|
|
|
|
))
|
2014-12-10 09:46:55 -05:00
|
|
|
|
2015-07-23 09:52:29 -04:00
|
|
|
yield threads.deferToThread(generate_thumbnails)
|
|
|
|
|
|
|
|
for l in local_thumbnails:
|
|
|
|
yield self.store.store_local_thumbnail(*l)
|
2014-12-10 09:46:55 -05:00
|
|
|
|
|
|
|
defer.returnValue({
|
|
|
|
"width": m_width,
|
|
|
|
"height": m_height,
|
|
|
|
})
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _generate_remote_thumbnails(self, server_name, media_id, media_info):
|
|
|
|
media_type = media_info["media_type"]
|
|
|
|
file_id = media_info["filesystem_id"]
|
2014-12-10 10:46:18 -05:00
|
|
|
requirements = self._get_thumbnail_requirements(media_type)
|
2014-12-10 09:46:55 -05:00
|
|
|
if not requirements:
|
|
|
|
return
|
|
|
|
|
2015-06-02 10:39:08 -04:00
|
|
|
remote_thumbnails = []
|
|
|
|
|
2014-12-10 10:46:18 -05:00
|
|
|
input_path = self.filepaths.remote_media_filepath(server_name, file_id)
|
2014-12-10 09:46:55 -05:00
|
|
|
thumbnailer = Thumbnailer(input_path)
|
|
|
|
m_width = thumbnailer.width
|
|
|
|
m_height = thumbnailer.height
|
2014-12-11 09:19:32 -05:00
|
|
|
|
2015-06-02 10:39:08 -04:00
|
|
|
def generate_thumbnails():
|
|
|
|
if m_width * m_height >= self.max_image_pixels:
|
|
|
|
logger.info(
|
|
|
|
"Image too large to thumbnail %r x %r > %r",
|
|
|
|
m_width, m_height, self.max_image_pixels
|
|
|
|
)
|
|
|
|
return
|
|
|
|
|
|
|
|
scales = set()
|
|
|
|
crops = set()
|
|
|
|
for r_width, r_height, r_method, r_type in requirements:
|
|
|
|
if r_method == "scale":
|
|
|
|
t_width, t_height = thumbnailer.aspect(r_width, r_height)
|
|
|
|
scales.add((
|
|
|
|
min(m_width, t_width), min(m_height, t_height), r_type,
|
|
|
|
))
|
|
|
|
elif r_method == "crop":
|
|
|
|
crops.add((r_width, r_height, r_type))
|
|
|
|
|
|
|
|
for t_width, t_height, t_type in scales:
|
|
|
|
t_method = "scale"
|
|
|
|
t_path = self.filepaths.remote_media_thumbnail(
|
|
|
|
server_name, file_id, t_width, t_height, t_type, t_method
|
|
|
|
)
|
|
|
|
self._makedirs(t_path)
|
|
|
|
t_len = thumbnailer.scale(t_path, t_width, t_height, t_type)
|
|
|
|
remote_thumbnails.append([
|
|
|
|
server_name, media_id, file_id,
|
|
|
|
t_width, t_height, t_type, t_method, t_len
|
|
|
|
])
|
|
|
|
|
|
|
|
for t_width, t_height, t_type in crops:
|
|
|
|
if (t_width, t_height, t_type) in scales:
|
|
|
|
# If the aspect ratio of the cropped thumbnail matches a purely
|
|
|
|
# scaled one then there is no point in calculating a separate
|
|
|
|
# thumbnail.
|
|
|
|
continue
|
|
|
|
t_method = "crop"
|
|
|
|
t_path = self.filepaths.remote_media_thumbnail(
|
|
|
|
server_name, file_id, t_width, t_height, t_type, t_method
|
|
|
|
)
|
|
|
|
self._makedirs(t_path)
|
|
|
|
t_len = thumbnailer.crop(t_path, t_width, t_height, t_type)
|
|
|
|
remote_thumbnails.append([
|
|
|
|
server_name, media_id, file_id,
|
|
|
|
t_width, t_height, t_type, t_method, t_len
|
|
|
|
])
|
2014-12-10 09:46:55 -05:00
|
|
|
|
2015-06-02 10:39:08 -04:00
|
|
|
yield threads.deferToThread(generate_thumbnails)
|
2014-12-10 09:46:55 -05:00
|
|
|
|
2015-06-02 10:39:08 -04:00
|
|
|
for r in remote_thumbnails:
|
|
|
|
yield self.store.store_remote_media_thumbnail(*r)
|
2014-12-10 09:46:55 -05:00
|
|
|
|
|
|
|
defer.returnValue({
|
|
|
|
"width": m_width,
|
|
|
|
"height": m_height,
|
|
|
|
})
|