2012-10-17 03:51:26 +00:00
|
|
|
from ...files import ImageSpecCacheFile
|
2012-10-16 03:53:05 +00:00
|
|
|
from django.db.models.fields.files import ImageField
|
2012-02-14 02:47:53 +00:00
|
|
|
|
|
|
|
|
|
2012-02-17 23:39:51 +00:00
|
|
|
class ImageSpecFileDescriptor(object):
|
2012-02-14 02:47:53 +00:00
|
|
|
def __init__(self, field, attname):
|
|
|
|
|
self.attname = attname
|
|
|
|
|
self.field = field
|
|
|
|
|
|
|
|
|
|
def __get__(self, instance, owner):
|
|
|
|
|
if instance is None:
|
|
|
|
|
return self.field
|
|
|
|
|
else:
|
2012-10-16 03:53:05 +00:00
|
|
|
field_name = getattr(self.field, 'image_field', None)
|
|
|
|
|
if field_name:
|
|
|
|
|
source_file = getattr(instance, field_name)
|
|
|
|
|
else:
|
|
|
|
|
image_fields = [getattr(instance, f.attname) for f in \
|
|
|
|
|
instance.__class__._meta.fields if \
|
|
|
|
|
isinstance(f, ImageField)]
|
|
|
|
|
if len(image_fields) == 0:
|
|
|
|
|
raise Exception('%s does not define any ImageFields, so your' \
|
|
|
|
|
' %s ImageSpecField has no image to act on.' % \
|
|
|
|
|
(instance.__class__.__name__, self.attname))
|
|
|
|
|
elif len(image_fields) > 1:
|
|
|
|
|
raise Exception('%s defines multiple ImageFields, but you' \
|
|
|
|
|
' have not specified an image_field for your %s' \
|
|
|
|
|
' ImageSpecField.' % (instance.__class__.__name__,
|
|
|
|
|
self.attname))
|
|
|
|
|
else:
|
|
|
|
|
source_file = image_fields[0]
|
2012-10-17 03:51:26 +00:00
|
|
|
file = ImageSpecCacheFile(self.field.spec, source_file)
|
|
|
|
|
instance.__dict__[self.attname] = file
|
|
|
|
|
return file
|
2012-02-18 01:07:50 +00:00
|
|
|
|
|
|
|
|
def __set__(self, instance, value):
|
|
|
|
|
instance.__dict__[self.attname] = value
|