Files
Lazuli/src/routes/login/+page.server.ts

60 lines
2.5 KiB
TypeScript
Raw Normal View History

2024-01-23 01:21:41 -05:00
import { SECRET_JWT_KEY } from '$env/static/private'
import { fail, redirect } from '@sveltejs/kit'
2024-01-25 03:05:13 -05:00
import { compare, hash } from 'bcrypt-ts'
2024-01-23 01:21:41 -05:00
import type { PageServerLoad, Actions } from './$types'
import { DB } from '$lib/server/db'
2024-06-23 17:13:09 -04:00
import { SqliteError } from 'better-sqlite3'
2024-01-25 19:50:26 -05:00
import jwt from 'jsonwebtoken'
2024-01-23 01:21:41 -05:00
export const load: PageServerLoad = async ({ url }) => {
const redirectLocation = url.searchParams.get('redirect')
return { redirectLocation }
}
export const actions: Actions = {
signIn: async ({ request, cookies }) => {
const formData = await request.formData()
const { username, password, redirectLocation } = Object.fromEntries(formData)
2024-01-25 03:05:13 -05:00
const user = await DB.users.where('username', username.toString()).first()
2024-01-25 03:05:13 -05:00
if (!user) return fail(400, { message: 'Invalid Username' })
2024-02-23 00:53:54 -05:00
const passwordValid = await compare(password.toString(), user.passwordHash)
2024-01-25 03:05:13 -05:00
if (!passwordValid) return fail(400, { message: 'Invalid Password' })
2024-01-25 19:50:26 -05:00
const authToken = jwt.sign({ id: user.id, username: user.username }, SECRET_JWT_KEY, { expiresIn: '100d' })
2024-01-25 03:05:13 -05:00
cookies.set('lazuli-auth', authToken, { path: '/', httpOnly: true, sameSite: 'strict', secure: false, maxAge: 60 * 60 * 24 * 100 })
if (redirectLocation) throw redirect(303, redirectLocation.toString())
throw redirect(303, '/')
},
newUser: async ({ request, cookies }) => {
const formData = await request.formData()
const { username, password } = Object.fromEntries(formData)
const passwordHash = await hash(password.toString(), 10)
const newUser = await DB.users
.insert({ id: DB.uuid(), username: username.toString(), passwordHash }, '*')
.then((data) => data[0])
2024-06-23 17:13:09 -04:00
.catch((error: InstanceType<SqliteError>) => error)
2024-06-23 17:13:09 -04:00
if (newUser instanceof SqliteError) {
switch (newUser.code) {
case 'SQLITE_CONSTRAINT_UNIQUE':
return fail(400, { message: 'Username already in use' })
default:
console.log(newUser)
return fail(500, { message: 'Failed to create user. Reason Unknown' })
}
}
2024-01-25 03:05:13 -05:00
const authToken = jwt.sign({ id: newUser.id, username: newUser.username }, SECRET_JWT_KEY, { expiresIn: '100d' })
2024-01-25 03:05:13 -05:00
cookies.set('lazuli-auth', authToken, { path: '/', httpOnly: true, sameSite: 'strict', secure: false, maxAge: 60 * 60 * 24 * 100 })
throw redirect(303, '/')
2024-01-23 01:21:41 -05:00
},
}