mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-29 18:56:36 +00:00
20 lines
691 B
TypeScript
20 lines
691 B
TypeScript
import OidcService from '$lib/services/oidc-service';
|
|
import type { PageServerLoad } from './$types';
|
|
|
|
export const load: PageServerLoad = async ({ url, cookies }) => {
|
|
const clientId = url.searchParams.get('client_id');
|
|
const oidcService = new OidcService(cookies.get('access_token'));
|
|
|
|
const client = await oidcService.getClient(clientId!);
|
|
|
|
return {
|
|
scope: url.searchParams.get('scope')!,
|
|
nonce: url.searchParams.get('nonce') || undefined,
|
|
state: url.searchParams.get('state')!,
|
|
callbackURL: url.searchParams.get('redirect_uri')!,
|
|
client,
|
|
codeChallenge: url.searchParams.get('code_challenge')!,
|
|
codeChallengeMethod: url.searchParams.get('code_challenge_method')!
|
|
};
|
|
};
|