Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently, in django.contrib.auth, there can be two users with the username 'john' and 'John'. How can I prevent this from happening.

The most straightforward approach is add a clean method in contib.auth.models and convert it to a lowercase before saving but i dont want to edit the contrib.auth package.

Thanks.

share|improve this question

1 Answer

up vote 2 down vote accepted

Listen on pre_save for the Users model and then do your checks there. Least intrusive and most portable way.

Here is an example on how this would look like (adapted from the user profile example):

def username_check(sender, instance, **kwargs):
    if User.objects.filter(username=instance.username.lower()).count():
       raise ValidationError('Duplicate username')

pre_save.connect(username_check, sender=User)
share|improve this answer
Thanks! Im a little new to signals. Where can I place the pre_save to ensure that it is run? I put it in models.py but it causes my post_save signal to stop working! With the pre_save i get the error create_user_profile() takes exactly 3 arguments (2 given). It works fine without the pre-save. – Nikunj Aug 12 '12 at 14:16
1  
Some people prefer to put them in a separate signals.py file. As long as its importable; it doesn't matter. – Burhan Khalid Aug 12 '12 at 14:18
Im sorry - my bad. I got everything to work. Thanks alot – Nikunj Aug 12 '12 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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