44👍
There’s a helper function for this idiom called ‘get_or_create’ on your model manager:
role, created = UserToUserRole.objects.get_or_create(
from_user=current_user, to_user=user, role='follow')
It returns a tuple of (model, bool) where ‘model’ is the object you’re interested in and ‘bool’ tells you whether it had to be created or not.
4👍
If you’re using a recent version of Django, you can use the unique_together option to the UserToUserRole model, and then use the get_or_create() method Joe Holloway showed. This will guarantee that you can’t get a duplicate.
- [Django]-Pycharm: set environment variable for run manage.py Task
- [Django]-Django allauth example [Errno 61] Connection refused
- [Django]-Django user profile
3👍
If you are looking for a bool value
UserToUserRole.objects.filter(
from_user=current_user, to_user=user, role='follow'
).exists()
- [Django]-Homepage login form Django
- [Django]-"{% extends %}" and "{% include %}" in Django Templates
- [Django]-CSS not loading wrong MIME type Django
2👍
You can use get(), but you’ll have to wrap it with try-except like this:
try:
obj = UserToUserRole.objects.get(from_user=current_user, to_user=user, role='follow')
except UserToUserRole.DoesNotExist:
# here write a code to create a new object
- [Django]-Django REST Framework – Separate permissions per methods
- [Django]-Hidden field in Django Model
- [Django]-How do I use an UpdateView to update a Django Model?
0👍
If you want the check done every time before save you could use the pre save signal to check, http://docs.djangoproject.com/en/dev/ref/signals/#django.db.models.signals.pre_save
Alternatively in the model you could specify unique=True for the property that determines whether an item is the same item, this will cause an Exception (django.db.IntegrityError) to be thrown if you try to save the same thing again.
If you have more than one field together that makes something unique you’ll need to use unique_together in the Meta inner class http://docs.djangoproject.com/en/dev/ref/models/options/#unique-together
- [Django]-How to force migrations to a DB if some tables already exist in Django?
- [Django]-In the Django admin interface, is there a way to duplicate an item?
- [Django]-Is there a way to negate a boolean returned to variable?