Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
6a63c941
Commit
6a63c941
authored
Jan 20, 2024
by
Shiyinq
Browse files
feat: add guard clause to improve signup process
parent
f079cb6b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
34 deletions
+32
-34
backend/apps/web/routers/auths.py
backend/apps/web/routers/auths.py
+32
-34
No files found.
backend/apps/web/routers/auths.py
View file @
6a63c941
...
...
@@ -91,9 +91,15 @@ async def signin(form_data: SigninForm):
@
router
.
post
(
"/signup"
,
response_model
=
SigninResponse
)
async
def
signup
(
request
:
Request
,
form_data
:
SignupForm
):
if
request
.
app
.
state
.
ENABLE_SIGNUP
:
if
validate_email_format
(
form_data
.
email
.
lower
()):
if
not
Users
.
get_user_by_email
(
form_data
.
email
.
lower
()):
if
not
request
.
app
.
state
.
ENABLE_SIGNUP
:
raise
HTTPException
(
400
,
detail
=
ERROR_MESSAGES
.
ACCESS_PROHIBITED
)
if
not
validate_email_format
(
form_data
.
email
.
lower
()):
raise
HTTPException
(
400
,
detail
=
ERROR_MESSAGES
.
INVALID_EMAIL_FORMAT
)
if
Users
.
get_user_by_email
(
form_data
.
email
.
lower
()):
raise
HTTPException
(
400
,
detail
=
ERROR_MESSAGES
.
EMAIL_TAKEN
)
try
:
role
=
"admin"
if
Users
.
get_num_users
()
==
0
else
"pending"
hashed
=
get_password_hash
(
form_data
.
password
)
...
...
@@ -119,14 +125,6 @@ async def signup(request: Request, form_data: SignupForm):
except
Exception
as
err
:
raise
HTTPException
(
500
,
detail
=
ERROR_MESSAGES
.
DEFAULT
(
err
))
else
:
raise
HTTPException
(
400
,
detail
=
ERROR_MESSAGES
.
EMAIL_TAKEN
)
else
:
raise
HTTPException
(
400
,
detail
=
ERROR_MESSAGES
.
INVALID_EMAIL_FORMAT
)
else
:
raise
HTTPException
(
400
,
detail
=
ERROR_MESSAGES
.
ACCESS_PROHIBITED
)
############################
# ToggleSignUp
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment