gpt4 book ai didi

python - 使用带有自定义用户模型和 UserManager 的 python-social-auth 创建 django 用户时出现问题

转载 作者:行者123 更新时间:2023-12-01 06:29:50 33 4
gpt4 key购买 nike

似乎这不是一个独特的问题,但我在解决方案中遗漏了一些东西。我正在使用 python-social-auth 并通过 Google 登录。一切似乎都很顺利,直到到达管道的 create_user 部分。我确实有一个自定义用户模型和用户管理器。在我的用户模型上,我确实有一个与某些选择 Hook 的role属性。当社交身份验证启动并让某人登录时,它确实会在我的用户管理器中调用 create_user ,但它仅传递电子邮件,没有其他字段。我试图连接到管道并通过将其添加到 details 社交身份验证字典来添加所需的 role 属性,但这似乎没有任何效果。我应该如何 Hook 创建用户属性以添加就社交身份验证而言不存在的字段?

用户模型

class User(AbstractBaseUser, PermissionsMixin):
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
is_staff = models.BooleanField(default=False)
is_active = models.BooleanField(default=True)
date_joined = models.DateTimeField(default=timezone.now)
email = models.EmailField(_("email address"), unique=True)
first_name = models.CharField(max_length=240, blank=True)
last_name = models.CharField(max_length=240, blank=True)
role = models.IntegerField(choices=RoleChoices.choices)

USERNAME_FIELD = "email"
REQUIRED_FIELDS = []

objects = UserManager()

def __str__(self):
return self.email

@property
def full_name(self):
return f"{self.first_name} {self.last_name}".strip()

还有我的用户管理器:

class UserManager(BaseUserManager):
"""
Custom user model manager where email is the unique identifiers
for authentication instead of usernames.
"""

def create_user(self, email, password, **extra_fields):
"""
Create and save a User with the given email and password.
"""
if not email:
raise ValueError(_("The Email must be set"))

email = self.normalize_email(email)
user = self.model(email=email, **extra_fields)

if password is not None:
user.set_password(password)

user.save()
return user

def create_superuser(self, email, password=None, **extra_fields):
"""
Create and save a SuperUser with the given email and password.
"""
extra_fields.setdefault("is_staff", True)
extra_fields.setdefault("is_superuser", True)
extra_fields.setdefault("is_active", True)
extra_fields.setdefault("role", 1)

if extra_fields.get("is_staff") is not True:
raise ValueError(_("Superuser must have is_staff=True."))
if extra_fields.get("is_superuser") is not True:
raise ValueError(_("Superuser must have is_superuser=True."))
return self.create_user(email, password, **extra_fields)

社交身份验证配置:

# Social Auth Config
AUTHENTICATION_BACKENDS = (
'social_core.backends.google.GoogleOAuth2',
'django.contrib.auth.backends.ModelBackend',
)

LOGIN_URL = 'login'
LOGOUT_URL = 'logout'
LOGIN_REDIRECT_URL = 'admin'
SOCIAL_AUTH_POSTGRES_JSONFIELD = True
SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = os.getenv('GOOGLE_CLIENT_ID')
SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = os.getenv('GOOGLE_CLIENT_SECRET')
SOCIAL_AUTH_USER_MODEL = 'search.User'
SOCIAL_AUTH_USERNAME_IS_FULL_EMAIL = True
SOCIAL_AUTH_GOOGLE_OAUTH2_IGNORE_DEFAULT_SCOPE = True
SOCIAL_AUTH_GOOGLE_OAUTH2_SCOPE = [
'https://www.googleapis.com/auth/calendar',
'https://www.googleapis.com/auth/calendar.readonly',
'https://www.googleapis.com/auth/userinfo.profile',
'profile',
'email'
]

SOCIAL_AUTH_PIPELINE = (
'social_core.pipeline.social_auth.social_details',
'social_core.pipeline.social_auth.social_uid',
'social_core.pipeline.social_auth.auth_allowed',
'social_core.pipeline.social_auth.social_user',
'social_core.pipeline.user.get_username',
'search.socialauth.add_role',
'social_core.pipeline.user.create_user',
'social_core.pipeline.social_auth.associate_user',
'social_core.pipeline.social_auth.load_extra_data',
'social_core.pipeline.user.user_details',
)

最后是add_role函数:

from .choices import RoleChoices


def add_role(**kwargs):
kwargs['details']['role'] = RoleChoices.ARTIST
return kwargs

最佳答案

这不起作用的原因是 create_user 函数显式过滤 details 的内容以仅包含键 specified in a USER_FIELDS setting 。默认为

USER_FIELDS = ['username', 'email']

所以其他任何内容都将被忽略。它似乎没有记录,但您应该能够通过创建如下设置来覆盖它:

SOCIAL_AUTH_USER_FIELDS = ['username', 'email', 'role']

这将确保您的角色传递到用户实例。

您的管道和配置的其余部分看起来不错。

关于python - 使用带有自定义用户模型和 UserManager 的 python-social-auth 创建 django 用户时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59958649/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com