tried it with axios

This commit is contained in:
2024-01-26 18:25:46 +01:00
parent 2a4dc80efa
commit c5fbb12dfd
4 changed files with 68 additions and 49 deletions

View File

@ -1,15 +1,30 @@
import { globalUserObject } from "../middleware/login";
export default defineEventHandler(async (event) => {
const body = await readBody(event)
if ((body.username == 'test') && (body.password == 'asd')) {
setResponseStatus(event, 202)
return {
login: 'successful'
}
} else {
let correctUsername;
let correctPassword;
if (globalUserObject !== null) {
correctUsername = globalUserObject.username;
correctPassword = globalUserObject.password;
}
let authorized = false;
if (body.username == correctUsername && body.password == correctPassword) {
authorized = true;
}
if (!authorized) {
throw createError({
statusCode: 400,
statusMessage: 'Login failed',
statusMessage: 'Username or password not valid.',
})
}
setResponseStatus(event, 202)
return 'Successfully logged in.'
})

View File

@ -0,0 +1,17 @@
let globalUserObject: { [key: string]: any } | null = null;
// let globalUserObject = null;
export default defineEventHandler((event) => {
if (event.path.startsWith("/api/login")) {
// get user object from backend
const userObject = {
username: "test",
password: "asd"
}
globalUserObject = userObject;
}
})
export { globalUserObject };