mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 07:29:43 +00:00
14 lines
407 B
Python
14 lines
407 B
Python
import os
|
|
import secrets
|
|
|
|
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 = secrets.token_urlsafe(20)
|
|
return f"{prefix}/{now.year}/{now.month}/{now.day}/{new_filename}{old_extension}"
|