2017-11-09 16:31:57 +01:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
|
|
|
from six.moves import urllib
|
|
|
|
from tornado.concurrent import return_future
|
2018-03-08 09:37:09 +01:00
|
|
|
from thumbor.loaders import LoaderResult, file_loader, https_loader
|
2017-11-09 16:31:57 +01:00
|
|
|
from tc_aws.loaders import s3_loader
|
|
|
|
from thumbor.context import Context
|
|
|
|
from .helpers import (
|
2018-03-08 09:37:09 +01:00
|
|
|
separate_url_and_source_type,
|
|
|
|
THUMBOR_S3_TYPE, THUMBOR_LOCAL_FILE_TYPE, THUMBOR_EXTERNAL_TYPE
|
2017-11-09 16:31:57 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
from typing import Any, Callable
|
|
|
|
|
2018-03-08 09:37:09 +01:00
|
|
|
import base64
|
|
|
|
import logging
|
|
|
|
|
2017-11-09 16:31:57 +01:00
|
|
|
def get_not_found_result():
|
|
|
|
# type: () -> LoaderResult
|
|
|
|
result = LoaderResult()
|
|
|
|
result.error = LoaderResult.ERROR_NOT_FOUND
|
|
|
|
result.successful = False
|
|
|
|
return result
|
|
|
|
|
2018-03-12 03:27:29 +01:00
|
|
|
@return_future
|
2017-11-09 16:31:57 +01:00
|
|
|
def load(context, url, callback):
|
2018-03-12 03:27:29 +01:00
|
|
|
# type: (Context, str, Callable[..., Any]) -> None
|
2018-03-08 09:37:09 +01:00
|
|
|
source_type, encoded_url = separate_url_and_source_type(url)
|
|
|
|
actual_url = base64.urlsafe_b64decode(urllib.parse.unquote(encoded_url))
|
|
|
|
if source_type not in (THUMBOR_S3_TYPE, THUMBOR_LOCAL_FILE_TYPE,
|
|
|
|
THUMBOR_EXTERNAL_TYPE):
|
2017-11-09 16:31:57 +01:00
|
|
|
callback(get_not_found_result())
|
2018-03-08 09:37:09 +01:00
|
|
|
logging.warning('INVALID SOURCE TYPE: ' + source_type)
|
2017-11-09 16:31:57 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
if source_type == THUMBOR_S3_TYPE:
|
2018-03-08 09:37:09 +01:00
|
|
|
s3_loader.load(context, actual_url, callback)
|
2017-11-09 16:31:57 +01:00
|
|
|
elif source_type == THUMBOR_LOCAL_FILE_TYPE:
|
2018-03-08 09:37:09 +01:00
|
|
|
patched_local_url = 'files/' + actual_url # type: ignore # python 2 type differs from python 3 type
|
|
|
|
file_loader.load(context, patched_local_url, callback)
|
2017-11-09 16:31:57 +01:00
|
|
|
elif source_type == THUMBOR_EXTERNAL_TYPE:
|
2018-03-08 09:37:09 +01:00
|
|
|
https_loader.load(context, actual_url, callback)
|