50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import { redirect, error } from '@sveltejs/kit';
|
|
import type { PageServerLoad, RequestEvent } from '../../$types';
|
|
import { t } from 'svelte-i18n';
|
|
const PUBLIC_SERVER_URL = process.env['PUBLIC_SERVER_URL'];
|
|
|
|
export const load: PageServerLoad = async (event: RequestEvent) => {
|
|
const endpoint = PUBLIC_SERVER_URL || 'http://localhost:8000';
|
|
|
|
// @ts-ignore
|
|
let username = event.params.uuid as string;
|
|
|
|
if (!username) {
|
|
return error(404, 'Not found');
|
|
}
|
|
|
|
// let sessionId = event.cookies.get('sessionid');
|
|
let stats = null;
|
|
|
|
let res = await event.fetch(`${endpoint}/api/stats/counts/${username}`, {
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Cookie: `sessionid=${event.cookies.get('sessionid')}`
|
|
}
|
|
});
|
|
if (!res.ok) {
|
|
console.error('Failed to fetch user stats');
|
|
} else {
|
|
stats = await res.json();
|
|
}
|
|
|
|
let userData = await event.fetch(`${endpoint}/auth/user/${username}/`, {
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Cookie: `sessionid=${event.cookies.get('sessionid')}`
|
|
}
|
|
});
|
|
if (!userData.ok) {
|
|
return error(404, 'Not found');
|
|
}
|
|
|
|
let data = await userData.json();
|
|
|
|
return {
|
|
user: data.user,
|
|
adventures: data.adventures,
|
|
collections: data.collections,
|
|
stats: stats
|
|
};
|
|
};
|