Note: If you are tempted to 'answer' this question by telling me that you don't like django.contrib.auth, please move on. That will not be helpful. I am well aware of the range and strength of opinions on this matter.

Now, the question:

The convention is to create a model, UserProfile, with a OneToOne to User.

In every way I can think of, a more efficient and effective approach is to subclass User to a class that one intends to use for every human in the system - a class called, say, Person(User).

I have not seen a coherent explanation of why the former is conventional and the latter is regarded as a hack. A while ago, I changed over to the OneToOne approach so as to gain the ability to use get_profile() and I have regretted it ever since. I'm thinking of switching back unless I can be made to understand the advantage of this approach.

link|improve this question

58% accept rate
feedback

3 Answers

You do realise, don't you, that model subclassing is implemented by means of a OneToOne relationship under the hood? In fact, as far as efficiency is concerned, I cannot see any difference at all between these two methods.

Subclassing of existing concrete models is, in my opinion, a nasty hack that should be avoided if at all possible. It involves hiding a database relationship so that it is unclear when extra db access is performed. It's much clearer to show the relationships explicitly, and access them explicitly where necessary.

Now, a third alternative which I do like is to create a completely new User model, along with a custom authentication backend that returns instances of the new model instead of the default one. Creating a backend only involves defining a couple of simple methods, so it's very easy to do.

link|improve this answer
Yes, of course I realize that subclassing creates an "implicit" OneToOne. In terms of clarity and efficiency, person.email is way clearer than userprofile.user.email. Can you flesh out what the problem is with subclassing of existing models? Your third alternative has me very interested. Is there a good document that I can read about this technique? – jMyles Mar 27 '11 at 21:07
Also, on your second paragraph: Can't you make the same claim vis a vis hiding database hits with an ordinary OneToOne on a concrete model? Or are you saying that since you don't always need the PK of the parent, you can sometimes save the trip? If so, that's a fair enough point, but it doesn't really apply here, since we're always (at least, in every case I can think of) going to want to go to User anyway. – jMyles Mar 27 '11 at 22:28
when I subclassed User, it worked for a while, but later when I created a manytomany "through" relationship, when the through object would try to access the FK to the subclassed User module, it would actually access the user model instead, which caused all sorts of problems & wasn't really correctible without going into django internals. This was django 1.3.1. I switched to just having profile objects which point to some user objects & it was solved. – fastmultiplication Mar 23 at 4:07
feedback

Is it more efficient and effective to inherit the User model? I don't see why, but I'd like to read your arguments. IMNSHO, model inheritance has always been a pain.

Yet, this may not answer your question, but I'm quite satisfied with the solution proposed by Will Hardy in this snippet. By taking advantage of signals, it automatically creates a new user profile for every new user.

The link is unlikely to disappear, but here's my slightly different version of his code:

from django.contrib.auth.models import User
from django.db import models
from django.db.models.signals import post_save
from django.utils.translation import ugettext_lazy as _

class AuthUserProfileModelBase(models.base.ModelBase):
    # _prepare is not part of the public API and may change
    def _prepare(self):
        super(AuthUserProfileModelBase, self)._prepare()
        def on_save(sender, instance, created, **kwargs):
            if created:
                self.objects.create(user=instance)
        # Automatically link profile when a new user is created
        post_save.connect(on_save, sender=User, weak=False)

# Every profile model must inherit this class
class AuthUserProfileModel(models.Model):
    class Meta:
        abstract = True
    __metaclass__ = AuthUserProfileModelBase
    user = models.OneToOneField(User, db_column='auth_user_id',
        primary_key=True, parent_link=True)

# The actual profile model
class Profile(AuthUserProfileModel):
    class Meta:
        app_label = 'some_app_label'
        db_table = 'auth_user_profile'
        managed = True
    language = models.CharField(_('language'), max_length=5, default='en')

Of course, any credit goes to Will Hardy.

link|improve this answer
One of the main reasons I regard inheritance as favorable, at least in theory, is expressed succinctly by the P.S. in Will's snippet: "(PS: It would also be nice to have the resulting class proxy the User object's attributes like django's model inheritance does, while still automatically creating a UserProfile object when a User object is created :-)" – jMyles Mar 27 '11 at 21:48
@Justin: I don't see it as a real advantage mostly because the proxy is already one property away - profile_instance.user.desired_attribute. – jweyrich Mar 27 '11 at 21:56
Welp, there are times when I don't know whether I have an AfricanSwallow or Swallow object, and I want to be able to access its coconuts either way. It strikes me an unpythonic to need to determine that in advance - that's the whole point of class inheritance to begin with. – jMyles Mar 27 '11 at 21:58
(and btw, this discussion bumps squarely into a another question of mine, the answer to which will get you 50 points and a lot of love from me :-). It is here: stackoverflow.com/questions/5348157/…) – jMyles Mar 27 '11 at 22:00
@Justin: I don't see a connection. In fact, the pointed question seems fairly distant from what we're discussing here. When would that question arise within the scenario of your original question? Sorry, but I fail to realise. – jweyrich Mar 27 '11 at 22:27
show 6 more comments
feedback

Even if I also prefer the OneToOneField solution, I found a nice article on this topic with further information about two ways to extend the Django User Model

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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