Django: Perform case-insensitive lookups by default - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T11:38:19Z http://stackoverflow.com/feeds/question/531892 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/531892/django-perform-case-insensitive-lookups-by-default 3 Django: Perform case-insensitive lookups by default Baishampayan Ghose 2009-02-10T11:16:41Z 2009-02-10T13:17:26Z <p>I need to perform case-insensitive queries on <code>username</code> by default when using the Django Auth framework.</p> <p>I tried fixing the issue by writing a custom subclass of <code>Queryset</code> and overriding the <code>_filter_or_exclude</code> method and then using that subclass in a custom manager for the User model-</p> <pre><code>from django.db.models import Manager from django.db.models.query import QuerySet from django.contrib.auth.models import UserManager class MyQuerySet(QuerySet): def _filter_or_exclude(self, negate, *args, **kwargs): if 'username' in kwargs: kwargs['username__iexact'] = kwargs['username'] del kwargs['username'] return super(MyQuerySet, self)._filter_or_exclude(negate, *args, **kwargs) class MyUserManager(UserManager): def get_query_set(self): return MyQuerySet(self.model) User.objects = MyUserManager() </code></pre> <p>But this approach didn't work and I am getting an weird error when I try doing <code>User.objects.get(username='Foo')</code>.</p> <p>Any help would be appreciated.</p> <p><strong>Update</strong>: I am including the exact error that I am getting.</p> <pre><code>/usr/lib/python2.5/site-packages/django/db/models/query.py in get(self, *args, **kwargs) 295 keyword arguments. 296 """ --&gt; 297 clone = self.filter(*args, **kwargs) 298 num = len(clone) 299 if num == 1: /usr/lib/python2.5/site-packages/django/db/models/query.py in filter(self, *args, **kwargs) 481 set. 482 """ --&gt; 483 return self._filter_or_exclude(False, *args, **kwargs) 484 485 def exclude(self, *args, **kwargs): /home/ghoseb/src/git/ocricket.git/ocricket/user/models.py in _filter_or_exclude(self, negate, *args, **kwargs) 38 kwargs['username__iexact'] = kwargs['username'] 39 del kwargs['username'] ---&gt; 40 return super(MyQuerySet, self)._filter_or_exclude(negate, *args, **kwargs) 41 42 class MyUserManager(UserManager): /usr/lib/python2.5/site-packages/django/db/models/query.py in _filter_or_exclude(self, negate, *args, **kwargs) 499 clone.query.add_q(~Q(*args, **kwargs)) 500 else: --&gt; 501 clone.query.add_q(Q(*args, **kwargs)) 502 return clone 503 /usr/lib/python2.5/django/db/models/sql/query.py in add_q(self, q_object, used_aliases) /usr/lib/python2.5/django/db/models/sql/query.py in add_filter(self, filter_expr, connector, negate, trim, can_reuse, process_extras) /usr/lib/python2.5/django/db/models/sql/query.py in get_meta(self) &lt;type 'exceptions.AttributeError'&gt;: 'NoneType' object has no attribute '_meta' </code></pre> <p><strong>Update</strong>: By the way, I just wanted to mention that when I copy the logic inside my <code>_filter_or_exclude</code> method into the actual <code>QuerySet</code> class, it works flawlessly.</p> http://stackoverflow.com/questions/531892/django-perform-case-insensitive-lookups-by-default/531966#531966 0 Answer by Johannes for Django: Perform case-insensitive lookups by default Johannes 2009-02-10T11:41:48Z 2009-02-10T11:41:48Z <p>"User" may be a bad name for a model with such specialized functionality. Try using another name and see whether it works or not.</p> http://stackoverflow.com/questions/531892/django-perform-case-insensitive-lookups-by-default/532049#532049 3 Answer by S.Lott for Django: Perform case-insensitive lookups by default S.Lott 2009-02-10T12:08:56Z 2009-02-10T12:08:56Z <p>You don't want to mess with internal features of Django classes. That way lies trouble with every upgrade in the future.</p> <p>If you want to change the way people authenticate, write a custom authentication backend.</p> <p>Here are two recipes.</p> <p><a href="http://www.davidcramer.net/code/224/logging-in-with-email-addresses-in-django.html" rel="nofollow">http://www.davidcramer.net/code/224/logging-in-with-email-addresses-in-django.html</a></p> <p><a href="http://www.djangosnippets.org/snippets/577/" rel="nofollow">http://www.djangosnippets.org/snippets/577/</a></p> <p>Both of these us email instead of username. It's not hard to use case-insensitive query instead of an email query.</p> http://stackoverflow.com/questions/531892/django-perform-case-insensitive-lookups-by-default/532286#532286 1 Answer by Carl Meyer for Django: Perform case-insensitive lookups by default Carl Meyer 2009-02-10T13:17:26Z 2009-02-10T13:17:26Z <p>Managers can't be added to classes with simple attribute assignment (User.objects = MyManager()). Look at the ModelBase metaclass (db/models/base.py) to see what all is done for you behind the scenes when you subclass Model. </p> <p>You may be able to get it to work with User.add_to_class('objects', MyManager()) -- no guarantees, I haven't tried it. Alternatively, you could try subclassing User, not adding any fields (maybe make your subclass abstract? I don't know if you can have an abstract subclass of a concrete class?), but add the manager in your subclass and let the ModelBase metaclass handle calling add_to_class as usual.</p>