浏览代码

fix username claim

Sergey Mihaylin 10 月之前
父节点
当前提交
9f32e9ef60
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      backend/main.py

+ 3 - 3
backend/main.py

@@ -1920,8 +1920,7 @@ async def oauth_callback(provider: str, request: Request, response: Response):
         # If the user does not exist, check if signups are enabled
         if ENABLE_OAUTH_SIGNUP.value:
             # Check if an existing user with the same email already exists
-            email_claim = webui_app.state.config.OAUTH_USERNAME_CLAIM
-            existing_user = Users.get_user_by_email(user_data.get(email_claim, "").lower())
+            existing_user = Users.get_user_by_email(user_data.get("email", "").lower())
             if existing_user:
                 raise HTTPException(400, detail=ERROR_MESSAGES.EMAIL_TAKEN)
 
@@ -1946,12 +1945,13 @@ async def oauth_callback(provider: str, request: Request, response: Response):
                     picture_url = ""
             if not picture_url:
                 picture_url = "/user.png"
+            username_claim = webui_app.state.config.OAUTH_USERNAME_CLAIM
             user = Auths.insert_new_auth(
                 email=email,
                 password=get_password_hash(
                     str(uuid.uuid4())
                 ),  # Random password, not used
-                name=user_data.get("name", "User"),
+                name=user_data.get(username_claim, "User"),
                 profile_image_url=picture_url,
                 role=webui_app.state.config.DEFAULT_USER_ROLE,
                 oauth_sub=provider_sub,