-
-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WebUI: use Fetch API to login #21744
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,7 @@ body { | |
|
||
#error_msg { | ||
color: #f00; | ||
white-space: pre; | ||
} | ||
|
||
#loginButton { | ||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -30,32 +30,32 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const submitLoginForm = (event) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
event.preventDefault(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const errorMsgElement = document.getElementById("error_msg"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const xhr = new XMLHttpRequest(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
xhr.open("POST", "api/v2/auth/login", true); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=UTF-8"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
xhr.addEventListener("readystatechange", () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (xhr.readyState === 4) { // DONE state | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if ((xhr.status === 200) && (xhr.responseText === "Ok.")) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
location.replace(location); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
errorMsgElement.textContent = "QBT_TR(Invalid Username or Password.)QBT_TR[CONTEXT=Login]"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
xhr.addEventListener("error", () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
errorMsgElement.textContent = (xhr.responseText !== "") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
? xhr.responseText | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
: "QBT_TR(Unable to log in, server is probably unreachable.)QBT_TR[CONTEXT=Login]"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const errorMsgElement = document.getElementById("error_msg"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
errorMsgElement.textContent = ""; // clear previous error | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const usernameElement = document.getElementById("username"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const passwordElement = document.getElementById("password"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const queryString = "username=" + encodeURIComponent(usernameElement.value) + "&password=" + encodeURIComponent(passwordElement.value); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
xhr.send(queryString); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const queryString = `username=${encodeURIComponent(usernameElement.value)}&password=${encodeURIComponent(passwordElement.value)}`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
passwordElement.value = ""; // clear previous value | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// clear the field | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
passwordElement.value = ""; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fetch("api/v2/auth/login", { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
method: "POST", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
headers: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Content-type": "application/x-www-form-urlencoded; charset=UTF-8" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
body: queryString | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.then(async (response) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const responseText = await response.text(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (response.ok && (responseText === "Ok.")) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
location.replace(location); // redirect | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
errorMsgElement.textContent = `QBT_TR(Invalid Username or Password.)QBT_TR[CONTEXT=Login]\nQBT_TR(Server response:)QBT_TR[CONTEXT=Login] ${responseText}`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(error) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
errorMsgElement.textContent = `QBT_TR(Unable to log in, server is probably unreachable.)QBT_TR[CONTEXT=Login]\n${error}`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+42
to
+58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be preferable to use
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I imagine he did it this way to avoid declaring the parent function as There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's a good point. I just checked and |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
document.addEventListener("DOMContentLoaded", () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
URLSearchParams
will handle this complexity for you.