在我的项目中,我应该创建具有不同属性的个人类型用户和公司类型用户。我可以使用不同的模型创建它们,但我不能同时在auth系统中实现它们?我想知道是否可能?
答案 0 :(得分:0)
如django docs所述,您可以编写自己的AUTHENTICATION_BACKENDS。 例如:
class UserProfileModelBackend(ModelBackend):
def authenticate(self, username=None, password=None):
try:
user = self.user_class.objects.get(username=username)
if user.check_password(password):
return user
except self.user_class.DoesNotExist:
return None
def get_user(self, user_id):
try:
return self.user_class.objects.get(pk=user_id)
except self.user_class.DoesNotExist:
return None
@property
def user_class(self):
if not hasattr(self, '_user_class'):
self._user_class = apps.get_model(*settings.AUTH_USER_MODEL.split('.', 2))
if not self._user_class:
raise ImproperlyConfigured('Could not get custom user model')
return self._user_class
然后将此auth-backend添加到settings.py中的 AUTHENTICATION_BACKENDS 中。 有关详细信息,请参阅Writing an authentication backend
当有人调用django.contrib.auth.authenticate()时,Django会尝试对其所有身份验证后端进行身份验证。如果第一个身份验证方法失败,Django会尝试第二个身份验证方法,依此类推,直到尝试了所有后端。
小心:
AUTHENTICATION_BACKENDS的顺序很重要,因此如果相同的用户名和密码在多个后端有效,Django将在第一次正面匹配时停止处理。