mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 05:40:25 +00:00
33 lines
863 B
Python
33 lines
863 B
Python
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
|
|
class InvalidImageCacheBackendError(ImproperlyConfigured):
|
|
pass
|
|
|
|
|
|
class PessimisticImageCacheBackend(object):
|
|
"""
|
|
A very safe image cache backend. Guarantees that files will always be
|
|
available, but at the cost of hitting the storage backend.
|
|
|
|
"""
|
|
|
|
def is_invalid(self, file):
|
|
if not getattr(file, '_file', None):
|
|
# No file on object. Have to check storage.
|
|
return not file.storage.exists(file.name)
|
|
return False
|
|
|
|
def validate(self, file):
|
|
"""
|
|
Generates a new image by running the processors on the source file.
|
|
|
|
"""
|
|
if self.is_invalid(file):
|
|
file.generate(save=True)
|
|
|
|
def invalidate(self, file):
|
|
file.delete(save=False)
|
|
|
|
def clear(self, file):
|
|
file.delete(save=False)
|