I created a custom manytomany field for a model. When this model is saved, I would like to run a validator in the m2m field.
Problem is: the method validate is not called; like in the foreignkey fields.
What I want to accomplish is, when a model is saved, I want to compare a value from that model to the (soon to be) related model (my FK field does that atm). I know this can be done in a model or in a modelform, but since this kind of validation is all over the project, I would like to have it in a model field to be consistent in using relation fields.
Example models:
class Member(models.Model):
''' Stores mailinglist members. These are no django-system users. '''
owner = models.ForeignKey(Owner)
first_name = models.CharField(max_length=80, blank=True)
last_name = models.CharField(max_length=80, blank=True)
categories = CustomManyToManyField(Category)
class Category(models.Model):
''' Categories corresponding to a site and system user. '''
owner = models.ForeignKey(Owner)
name = models.CharField(max_length=80)
When I create, or update a member and add a category, I want to compare if
member.owner == category.owner. CustomManyToManyField should do this validation.
Somehow I have to override a save/validate method.
If this is not possible, am I correct I can create a custom manager to get this behavior? All I have to do is make my manager the default manager then. (Never done that before, but it doesn't seem to look that hard).