2023-04-28 13:42:16 -04:00
|
|
|
import { redirect, type Handle } from '@sveltejs/kit';
|
2023-08-26 11:07:09 -04:00
|
|
|
import { PrismaClient } from '@prisma/client';
|
2023-05-01 13:26:49 -04:00
|
|
|
import { startGitServer } from '$lib/server/gitserver';
|
2023-08-26 11:07:09 -04:00
|
|
|
import { hashPassword, isSessionValid, logout } from '$lib/server/auth';
|
2023-05-01 13:26:49 -04:00
|
|
|
|
2023-08-26 11:07:09 -04:00
|
|
|
async function createDefaultAccount(db: PrismaClient) {
|
|
|
|
const count = await db.user.count();
|
|
|
|
if (count !== 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const password = await hashPassword('bw123');
|
|
|
|
await db.user.create({
|
|
|
|
data: { username: 'admin', passwordHash: password.hash, passwordSalt: password.salt }
|
|
|
|
});
|
2023-04-28 13:42:16 -04:00
|
|
|
}
|
|
|
|
|
2023-08-26 11:07:09 -04:00
|
|
|
try {
|
|
|
|
const db = new PrismaClient();
|
|
|
|
createDefaultAccount(db);
|
|
|
|
} catch (error) {
|
|
|
|
console.log('Initialization in hooks failed (Normal on build)');
|
2023-04-28 13:42:16 -04:00
|
|
|
}
|
|
|
|
|
2023-08-26 11:07:09 -04:00
|
|
|
startGitServer();
|
|
|
|
|
2023-04-28 13:42:16 -04:00
|
|
|
export const handle = (async ({ event, resolve }) => {
|
2023-05-06 00:01:27 -04:00
|
|
|
if (event.request.method === 'OPTIONS') {
|
|
|
|
return new Response('ok', {
|
|
|
|
headers: {
|
|
|
|
'Access-Control-Allow-Credentials': 'true',
|
|
|
|
'Access-Control-Allow-Origin': '*',
|
|
|
|
'Access-Control-Allow-Methods': 'GET,POST,PUT,DELETE,OPTIONS',
|
|
|
|
'Access-Control-Allow-Headers': 'Content-Type'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-04-28 13:42:16 -04:00
|
|
|
if (event.url.pathname.startsWith('/login')) {
|
2023-08-26 11:07:09 -04:00
|
|
|
if ((await isSessionValid(event.cookies)) === true) {
|
|
|
|
throw redirect(302, '/admin');
|
2023-04-28 13:42:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (event.url.pathname.startsWith('/admin')) {
|
2023-08-26 11:07:09 -04:00
|
|
|
if ((await isSessionValid(event.cookies)) !== true) {
|
|
|
|
logout(event.cookies);
|
2023-04-28 13:42:16 -04:00
|
|
|
throw redirect(302, '/login');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const res = await resolve(event);
|
|
|
|
return res;
|
|
|
|
}) satisfies Handle;
|