vote up 1 vote down star
2

I would like to find a generic way of preventing to save an object if it is saved after I checked it out.

We can assume the object has a timestamp field that contains last modification time. If I had checked out (visited a view using a ModelForm for instance) at t1 and the object is saved again at t2, given t2 > t1 I shouldn't be able to save it.

flag

You want to prevent yourself from doing something? Why just not save it twice? – nosklo Jan 21 at 21:48
Look here: stackoverflow.com/questions/320096/… – tvanfosson Jan 21 at 22:07
@nosklo: a web application is typically multi-user, so I'm not necessarily preventing myself. I want to prevent saving on someone else's modifications without noticing. – muhuk Jan 21 at 22:08

1 Answer

vote up 4 vote down check

Overwrite the save method that would first check the last timestamp:

def save(self):
    if(self.id):
        foo = Foo.objects.get(pk=self.id)
        if(foo.timestamp > self.timestamp):
            raise Exception, "trying to save outdated Foo" 
    super(Foo, self).save()
link|flag

Your Answer

Get an OpenID
or

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