You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.0 KiB
Python
51 lines
2.0 KiB
Python
from django.db import models
|
|
from django.core.exceptions import ValidationError
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
def file_size_validator(max_upload_size):
|
|
"""
|
|
Returns a function checking if the supplied file has file size less or equal
|
|
than `max_upload_size` in MB.
|
|
"""
|
|
def check_file_size(value):
|
|
limit = max_upload_size * 1024 * 1024
|
|
if value.size > limit:
|
|
raise ValidationError(_('Please keep filesize under {} MiB. '
|
|
'Current filesize: '
|
|
'{:10.2f} MiB.').format(max_upload_size,
|
|
value.size / 1024 / 1024))
|
|
return check_file_size
|
|
|
|
|
|
class RestrictedFileField(models.FileField):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
if "max_upload_size" in kwargs:
|
|
self.max_upload_size = kwargs.pop("max_upload_size")
|
|
else:
|
|
self.max_upload_size = None
|
|
if "content_types" in kwargs:
|
|
self.content_types = kwargs.pop("content_types")
|
|
else:
|
|
self.content_types = None
|
|
|
|
super(RestrictedFileField, self).__init__(*args, **kwargs)
|
|
self.validators = [file_size_validator(self.max_upload_size)]
|
|
|
|
def clean(self, *args, **kwargs):
|
|
data = super(RestrictedFileField, self).clean(*args, **kwargs)
|
|
f = data.file
|
|
try:
|
|
content_type = f.content_type
|
|
if self.content_types is not None and content_type not in self.content_types:
|
|
raise ValidationError(_('Filetype not supported.'))
|
|
if self.max_upload_size is not None and f._size > self.max_upload_size:
|
|
raise ValidationError(_('Please keep filesize under {}. '
|
|
'Current filesize: '
|
|
'{}').format(self.max_upload_size,
|
|
f._size))
|
|
except AttributeError as e:
|
|
print(e)
|
|
return data
|