mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-06 20:00:40 +00:00
29 lines
819 B
TypeScript
29 lines
819 B
TypeScript
import { ACCESS_TOKEN_COOKIE_NAME } from '$lib/constants';
|
|
import AppConfigService from '$lib/services/app-config-service';
|
|
import UserService from '$lib/services/user-service';
|
|
import type { LayoutServerLoad } from './$types';
|
|
|
|
export const load: LayoutServerLoad = async ({ cookies }) => {
|
|
const userService = new UserService(cookies.get(ACCESS_TOKEN_COOKIE_NAME));
|
|
const appConfigService = new AppConfigService(cookies.get(ACCESS_TOKEN_COOKIE_NAME));
|
|
|
|
const user = await userService
|
|
.getCurrent()
|
|
.then((user) => user)
|
|
.catch(() => null);
|
|
|
|
const appConfig = await appConfigService
|
|
.list()
|
|
.then((config) => config)
|
|
.catch((e) => {
|
|
console.error(
|
|
`Failed to get application configuration: ${e.response?.data.error || e.message}`
|
|
);
|
|
return null;
|
|
});
|
|
return {
|
|
user,
|
|
appConfig
|
|
};
|
|
};
|