I think I'm doing it wrongly otherwise people might already created this function (insert_or_update). Get the object, if it doesn't exists create that, otherwise update the current objects. Here's the problem recently I had on App Engine:
In App Engine, I repeat this kind of pattern many times: (and I think isn't this common?)
obj = get_or_insert('123', title='Hello World')
obj.title = 'Hello World'
obj.puts()
Or In Django,
obj, created = Model.objects.get_or_create(id='123',
defaults={'title':'Hello World'}
if not created:
obj.title = 'Hello World'
obj.save()
It would be good if I could just call insert or update by calling this:
obj = insert_or_update('123', title='Hello World')
obj = Model.objects.insert_or_update(id='123', defaults={'title': 'Hello World'})
Back to App Engine documentation, I found the snippet on what this get_or_insert method doing. Something like the following:
def txn(key_name, **kwds):
entity = Story.get_by_key_name(key_name, parent=kwds.get('parent'))
if entity is None:
entity = Story(key_name=key_name, **kwds)
entity.put()
return entity
def get_or_insert(key_name, **kwargs):
return db.run_in_transaction(txn, key_name, **kwargs)
get_or_insert('some key', title="The Three Little Pigs")
I was wondering why a insert_or_update method not being created in app engine and django which I can pretty much say by changing the method to this (in app engine) could solved my repetitive:
@classmethod
def insert_or_update(cls, key_name, parent=None, **kwargs):
def _tx():
entity = cls.get_by_key_name(key_name, parent=parent)
if entity:
for key in kwargs:
setattr(entity, key, kwargs[key])
else:
entity = cls(key_name=key_name, parent=parent, **kwargs)
entity.put()
return entity
return db.run_in_transaction(_tx)