mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 03:11:46 +00:00
15 lines
445 B
Python
15 lines
445 B
Python
import base64
|
|
import os
|
|
import uuid
|
|
|
|
from django.utils import timezone
|
|
|
|
|
|
def upload_namer(prefix, instance, filename):
|
|
"""
|
|
Names uploaded images, obscuring their original name with a random UUID.
|
|
"""
|
|
now = timezone.now()
|
|
_, old_extension = os.path.splitext(filename)
|
|
new_filename = base64.b32encode(uuid.uuid4().bytes).decode("ascii")
|
|
return f"{prefix}/{now.year}/{now.month}/{now.day}/{new_filename}{old_extension}"
|