I have a generic 'annotation' model that looks similar to this:
class ObjectAnnotation(models.Model):
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey()
type = models.ForeignKey(ObjectAnnotationType)
author = models.ForeignKey('auth.User')
body_content_type = models.CharField(default='text/plain', max_length=128,
body = models.TextField(blank=True, db_index=True)
image = models.ImageField(width_field='image_width', height_field='image_height', null=True, upload_to='zzzzz')
image_width = models.IntegerField(blank=True, null=True)
image_height = models.IntegerField(blank=True, null=True)
date_created = models.DateTimeField(auto_now_add=True, db_index=True)
date_updated = models.DateTimeField(auto_now=True)
Can I now create a proxy model whose sole purpose is to change the upload_to path on that ImageField?
According to the docs, I cannot simply inherit, as a proxy model cannot override fields. My workaround is this:
class SubAnnotation(ObjectAnnotation):
class Meta:
proxy = True
SubAnnotation._meta.get_field_by_name('image')[0].upload_to = 'nnnn'
EDIT:
This does not work:
>>> id(ObjectAnnotation._meta.get_field_by_name('image')[0])
70418480
>>> id(SubAnnotation._meta.get_field_by_name('image')[0])
70418480
The fields are the same object.
EDIT:
This appears to work:
class ObjectAnnotation(models.Model):
upload_path = 'base'
image = models.ImageField(width_field='image_width', height_field='image_height', upload_to=(lambda i, fn: i.get_upload_path(fn)), blank=True, null=True)
def get_upload_path(self, filename):
return os.path.join(self.upload_path, filename)
class SubAnnotation(ObjectAnnotation):
upload_path = 'child'
class Meta:
proxy = True