In my model I have :

class Alias(MyBaseModel):
    remote_image = models.URLField(max_length=500, null=True, help_text="A URL that is downloaded and cached for the image. Only
 used when the alias is made")
    image = models.ImageField(upload_to='alias', default='alias-default.png', help_text="An image representing the alias")


    def save(self, *args, **kw):
        if (not self.image or self.image.name == 'alias-default.png') and self.remote_image :
            try :
                data = utils.fetch(self.remote_image)
                image = StringIO.StringIO(data)
                image = Image.open(image)
                buf = StringIO.StringIO()
                image.save(buf, format='PNG')
                self.image.save(hashlib.md5(self.string_id).hexdigest() + ".png", ContentFile(buf.getvalue()))
            except IOError :
                pass

Which works great for the first time the remote_image changes.

How can I fetch a new image when someone has modified the remote_image on the alias? And secondly, is there a better way to cache a remote image?

link|improve this question

feedback

5 Answers

up vote 12 down vote accepted

And now for direct answer: one way to check if the value for the field has changed is to fetch original data from database before saving instance. Consider this example:

class MyModel(models.Model):
    f1 = models.CharField(max_length=1)

    def save(self, *args, **kw):
        if self.pk is not None:
            orig = MyModel.objects.get(pk=self.pk)
            if orig.f1 != self.f1:
                print 'f1 changed'
        super(MyModel, self).save(*args, **kw)
link|improve this answer
If you decide to go with this type of solution over Josh's (which I really like), here's a snippit I use sometimes to generalize this type of thing: zmsmith.com/2010/05/django-check-if-a-field-has-changed – Zach Sep 8 '10 at 3:27
Josh's solution is much more database friendly. An extra call to verify what's changed is expensive. – dd. Feb 23 '11 at 23:14
feedback

Though it's a bit late, let me throw out this solution for others that come across this post. Essentially, you want to override the __init__ method of models.Model so that you keep a copy of the original value. This makes it so that you don't have to do another DB lookup (which is always a good thing).

class Person(models.Model):
  name = models.CharField()

  __original_name = None

  def __init__(self, *args, **kwargs):
    super(Person, self).__init__(*args, **kwargs)
    self.__original_name = self.name

  def save(self, force_insert=False, force_update=False):
    if self.__original_name:
      if self.name != self.__original_name:
        # name changed - do something here

    super(Person, self).save(force_insert, force_update)
    self.__original_name = self.name
link|improve this answer
2  
instead of overwriting init, I'd use the post_init-signal docs.djangoproject.com/en/dev/ref/signals/#post-init – vikingosegundo Nov 24 '09 at 22:43
Overriding methods is recommended by the Django documentation: docs.djangoproject.com/en/dev/topics/db/models/… – Colonel Sponsz Aug 30 '10 at 19:55
Changing the instance passed by the post_init signal doesn't work. You have to override the init method. – Cesar Canassa Nov 18 '10 at 18:40
you should add a self.__original_name = self.name at the end of save() – rasca Nov 18 '10 at 19:39
One thing to note (that seems fairly obvious now but just bit me for a half hour) is that if you do this, you'll never be able to defer() 'name' again, as it will be constantly checking for self.name on init. One sloppy workaround is to check if it exists in self.__dict__ and skip setting __original_name if not. There's probably a better way, just haven't found it quite yet. – umbrae Jul 11 '11 at 18:49
show 2 more comments
feedback

Best way is with a pre_save signal. May not have been an option back in '09 when this question was asked and answered, but anyone seeing this today should do it this way:

@receiver(pre_save, sender=MyModel)
def do_something_if_changed(sender, instance, **kwargs):
    try:
        obj = MyModel.objects.get(pk=instance.pk)
    except MyModel.DoesNotExist:
        pass # Object is new, so field hasn't technically changed, but you may want to do something else here.
    else:
        if not obj.some_field == instance.some_field: # Field has changed
            # do something
link|improve this answer
Why is this the best way if the method that Josh describes above doesn't involve an extra database hit? – joshcartme Oct 31 '11 at 21:54
1) that method is a hack, signals are basically designed for uses like this 2) that method requires making alterations to your model, this one does not 3) as you can read in the comments on that answer, it has side-effects that can be potentially problematic, this solution does not – Chris Pratt Oct 31 '11 at 22:10
This is definitely a better alternative – Timmy O'Mahony Mar 29 at 7:23
feedback

While this doesn't actually answer your question, I'd go about this in a different way.

Simply clear the remote_image field after successfully saving the local copy. Then in your save method you can always update the image whenever remote_image isn't empty.

If you'd like to keep a reference to the url, you could use an non-editable boolean field to handle the caching flag rather than remote_image field itself.

link|improve this answer
feedback

as an extension of SmileyChris' answer, you can add a datetime field to the model for last_updated, and set some sort of limit for the max age you'll let it get to before checking for a change

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.