up vote 5 down vote favorite
4
share [g+] share [fb]

In my application I have students, professors and staff. Staff members do not need a profile but professors and students each need a different profile. I'd rather not implement it all myself (middleware and whatnot), so is there anyway to just have get_profile() return a different profile depending on a user's role?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 6 down vote accepted

With Django 1.1, which is currently in beta, I would implement a proxy model.

class MyUser(User):

  class Meta:
    proxy = True

  def get_profile(self):
    if self.role == 'professor':
      return ProfessorProfile._default_manager.get(user_id__exakt=self.id)
    elif self.role == 'student':
      return StudentProfile._default_manager.get(user_id__exakt=self.id)
    else:
      # staff
      return None

get_profile needs the caching code from the original and so on. But essentially you could do something like that.

With Django 1.0.x you could implement derived classes based on User, but this might break code in other places. For stuff like that I love proxy classes, which just add python functionality without changing the database models.

link|improve this answer
These look useful but this still poses the exact same problem I have with my own use of multiple user/profile types: existing apps don't know about it. They just create User instances, so this nice method goes completely ignored. – ironfroggy Mar 25 '09 at 19:39
Yes, multiple user models is still somewhat problematic, but the different profiles based on roles can be solved. – Oliver Andrich Mar 25 '09 at 20:13
feedback

Have you rad http://docs.djangoproject.com/en/dev/topics/auth/#auth-profiles?

That's the standard solution.

link|improve this answer
1  
I have read that. What I need is different kinds of profiles for different kinds of users, that solution will only give one kind of profile for all users. – Marcos Marin Mar 24 '09 at 18:22
Please update your question with an example of "different kinds of profiles". Usually, we define profiles with multiple fields, some of which are optional. What are you talking about? – S.Lott Mar 24 '09 at 18:33
feedback

Your Answer

 
or
required, but never shown

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