2021-02-08 22:29:24 +00:00
|
|
|
from owrx.controllers.assets import AssetsController
|
2021-02-10 19:32:07 +00:00
|
|
|
from owrx.controllers.admin import AuthorizationMixin
|
2021-02-11 18:31:44 +00:00
|
|
|
from owrx.config.core import CoreConfig
|
2021-02-08 22:29:24 +00:00
|
|
|
import uuid
|
|
|
|
import json
|
|
|
|
|
|
|
|
|
2021-02-10 19:32:07 +00:00
|
|
|
class ImageUploadController(AuthorizationMixin, AssetsController):
|
2021-02-08 22:29:24 +00:00
|
|
|
def __init__(self, handler, request, options):
|
|
|
|
super().__init__(handler, request, options)
|
2021-02-10 23:20:17 +00:00
|
|
|
self.file = request.query["file"][0] if "file" in request.query else None
|
2021-02-08 22:29:24 +00:00
|
|
|
|
|
|
|
def getFilePath(self, file=None):
|
2021-02-10 23:20:17 +00:00
|
|
|
if self.file is None:
|
|
|
|
raise FileNotFoundError("missing filename")
|
|
|
|
return "{tmp}/{file}".format(
|
2021-02-08 22:29:24 +00:00
|
|
|
tmp=CoreConfig().get_temporary_directory(),
|
2021-02-10 23:20:17 +00:00
|
|
|
file=self.file
|
2021-02-08 22:29:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def indexAction(self):
|
|
|
|
self.serve_file(None)
|
|
|
|
|
2021-02-10 23:20:17 +00:00
|
|
|
def _is_png(self, contents):
|
|
|
|
return contents[0:8] == bytes([0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A])
|
|
|
|
|
|
|
|
def _is_jpg(self, contents):
|
|
|
|
return contents[0:3] == bytes([0xFF, 0xD8, 0xFF])
|
|
|
|
|
2021-02-08 22:29:24 +00:00
|
|
|
def processImage(self):
|
2021-02-10 23:20:17 +00:00
|
|
|
if "id" not in self.request.query:
|
|
|
|
self.send_response("{}", content_type="application/json", code=400)
|
2021-02-08 22:30:44 +00:00
|
|
|
# TODO: limit file size
|
2021-02-08 22:29:24 +00:00
|
|
|
contents = self.get_body()
|
2021-02-10 23:20:17 +00:00
|
|
|
filetype = None
|
|
|
|
if self._is_png(contents):
|
|
|
|
filetype = "png"
|
|
|
|
if self._is_jpg(contents):
|
|
|
|
filetype = "jpg"
|
|
|
|
if filetype is None:
|
|
|
|
self.send_response("{}", content_type="application/json", code=400)
|
|
|
|
else:
|
|
|
|
self.file = "{id}-{uuid}.{ext}".format(
|
|
|
|
id=self.request.query["id"][0],
|
|
|
|
uuid=uuid.uuid4().hex,
|
|
|
|
ext=filetype,
|
|
|
|
)
|
|
|
|
with open(self.getFilePath(), "wb") as f:
|
|
|
|
f.write(contents)
|
|
|
|
self.send_response(json.dumps({"file": self.file}), content_type="application/json")
|