Login

OwnerField

Author:
dune2
Posted:
December 13, 2007
Language:
Python
Version:
.96
Score:
-1 (after 1 ratings)

This is a little helper for associating an owner to a newly created object, in this case making the assumption that the current user is always the owner. It removes the necessity of adding a custom save hook to your model.

get_current_user comes from this middleware trick to cache the current user:

http://code.djangoproject.com/wiki/CookBookThreadlocalsAndUser

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from django.contrib.auth.models import User

class OwnerField(User):
    def get_internal_type(self):
        return User.__name__
    def pre_save(self, model_instance, add):
        if model_instance.id is None:
            return get_current_user()
        else:
            return getattr(model_instance, self.attname)

More like this

  1. Form field with fixed value by roam 3 days, 20 hours ago
  2. New Snippet! by Antoliny0919 1 week, 3 days ago
  3. Add Toggle Switch Widget to Django Forms by OgliariNatan 2 months, 4 weeks ago
  4. get_object_or_none by azwdevops 6 months, 3 weeks ago
  5. Mask sensitive data from logger by agusmakmun 8 months, 2 weeks ago

Comments

Please login first before commenting.