summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorAndrew Godwin2022-12-14 21:21:18 -0700
committerAndrew Godwin2022-12-14 21:21:18 -0700
commit16005e14ef46c6721f4bf4e01a54e6c1bf0ecdf7 (patch)
tree60046a6b137e3b2602de6542070b6d8192bccb21 /core
parent5d8b8212cc452a09b393d1024c832b464fe03740 (diff)
downloadtakahe-16005e14ef46c6721f4bf4e01a54e6c1bf0ecdf7.tar.gz
takahe-16005e14ef46c6721f4bf4e01a54e6c1bf0ecdf7.tar.bz2
takahe-16005e14ef46c6721f4bf4e01a54e6c1bf0ecdf7.zip
Make GCS backend handle webp right, and use gs://
Fixes #164
Diffstat (limited to 'core')
-rw-r--r--core/uploads.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/core/uploads.py b/core/uploads.py
index c83888c..41b6e94 100644
--- a/core/uploads.py
+++ b/core/uploads.py
@@ -2,6 +2,7 @@ import os
import secrets
from django.utils import timezone
+from storages.backends.gcloud import GoogleCloudStorage
from storages.backends.s3boto3 import S3Boto3Storage
@@ -16,11 +17,26 @@ def upload_namer(prefix, instance, filename):
class TakaheS3Storage(S3Boto3Storage):
+ """
+ Custom override backend that makes webp files store correctly
+ """
+
def get_object_parameters(self, name: str):
params = self.object_parameters.copy()
-
if name.endswith(".webp"):
params["ContentDisposition"] = "inline"
params["ContentType"] = "image/webp"
+ return params
+
+class TakaheGoogleCloudStorage(GoogleCloudStorage):
+ """
+ Custom override backend that makes webp files store correctly
+ """
+
+ def get_object_parameters(self, name: str):
+ params = self.object_parameters.copy()
+ if name.endswith(".webp"):
+ params["content_disposition"] = "inline"
+ params["content_type"] = "image/webp"
return params