peta-auth 0.1.2 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/jwt.mjs CHANGED
@@ -1,28 +1,48 @@
1
+ import { t as normalizePassword } from "./crypto-WcFV83Nz.mjs";
2
+ import { t as PetaAuthError } from "./errors-DxJ-WUJL.mjs";
1
3
  import * as jose from "jose";
2
4
  //#region src/jwt.ts
3
- function toPasswordMap(password) {
4
- return typeof password === "string" ? { 1: password } : password;
5
- }
6
5
  function toKey(secret) {
7
6
  return new TextEncoder().encode(secret);
8
7
  }
8
+ /**
9
+ * Sign a JWT payload.
10
+ *
11
+ * @example
12
+ * ```ts
13
+ * const token = await signJWT({ userId: "abc" }, { password: "my-32-char-secret...", expiresIn: 3600 })
14
+ * ```
15
+ */
9
16
  async function signJWT(payload, options) {
10
- const map = toPasswordMap(options.password);
17
+ const map = normalizePassword(options.password);
11
18
  const secret = map[Math.max(...Object.keys(map).map(Number)).toString()];
12
- if (!secret || secret.length < 32) throw new Error("peta-auth/jwt: password must be at least 32 characters");
19
+ if (!secret || secret.length < 32) throw new PetaAuthError("JWT_PASSWORD_TOO_SHORT", "peta-auth/jwt: password must be at least 32 characters");
13
20
  const jwt = new jose.SignJWT(payload).setProtectedHeader({ alg: "HS256" }).setIssuedAt();
14
- if (options.exp !== void 0) jwt.setExpirationTime(Math.floor(Date.now() / 1e3) + options.exp);
21
+ const ttl = options.expiresIn ?? 86400;
22
+ jwt.setExpirationTime(Math.floor(Date.now() / 1e3) + ttl);
15
23
  return jwt.sign(toKey(secret));
16
24
  }
25
+ /**
26
+ * Verify and decode a JWT.
27
+ *
28
+ * Returns `null` when the token is invalid or expired.
29
+ *
30
+ * @example
31
+ * ```ts
32
+ * const payload = await verifyJWT<{ userId: string }>(token, { password: "my-32-char-secret..." })
33
+ * ```
34
+ */
17
35
  async function verifyJWT(token, options) {
18
- for (const secret of Object.values(toPasswordMap(options.password))) {
36
+ let result = null;
37
+ const passwords = normalizePassword(options.password);
38
+ for (const secret of Object.values(passwords)) {
19
39
  if (!secret) continue;
20
40
  try {
21
41
  const { payload } = await jose.jwtVerify(token, toKey(secret));
22
- return payload;
42
+ if (!result) result = payload;
23
43
  } catch {}
24
44
  }
25
- return null;
45
+ return result;
26
46
  }
27
47
  //#endregion
28
48
  export { signJWT, verifyJWT };
package/dist/nuxt.d.mts CHANGED
@@ -1,8 +1,32 @@
1
- import { r as SessionOptions, t as IronSession } from "./session-z20gaFVT.mjs";
1
+ import { r as SessionOptions, t as IronSession } from "./session-0bF8_7Ui.mjs";
2
2
  import { H3Event } from "h3";
3
3
 
4
4
  //#region src/nuxt.d.ts
5
+ /**
6
+ * Create a session from an h3 event (Nuxt / h3).
7
+ *
8
+ * @example
9
+ * ```ts
10
+ * // In a Nuxt server handler:
11
+ * const session = await useSession(event, { password: process.env.NUXT_SESSION_PASSWORD })
12
+ * session.userId = 42
13
+ * await session.save()
14
+ * ```
15
+ */
5
16
  declare function useSession<T extends Record<string, unknown> = Record<string, unknown>>(event: H3Event, options: SessionOptions): Promise<T & IronSession>;
6
- declare function requireSession(_event: H3Event, session: IronSession): void;
17
+ /**
18
+ * Guard that requires session data.
19
+ *
20
+ * Throws a 401 h3 error when the session is empty.
21
+ *
22
+ * @example
23
+ * ```ts
24
+ * const session = await useSession(event, options)
25
+ * requireSession(event, session)
26
+ * requireSession(event, session, "role") // require specific key
27
+ * ```
28
+ */
29
+ declare function requireSession(event: H3Event, session: IronSession): void;
30
+ declare function requireSession<K extends string>(event: H3Event, session: IronSession, key: K): void;
7
31
  //#endregion
8
32
  export { requireSession, useSession };
package/dist/nuxt.mjs CHANGED
@@ -1,21 +1,33 @@
1
- import { t as createSessionFromAdapter } from "./session-DSwf3XPH.mjs";
1
+ import { t as PetaAuthError } from "./errors-DxJ-WUJL.mjs";
2
+ import { n as sessionHasData, t as createSessionFromAdapter } from "./session-BGCQ1Z1Q.mjs";
2
3
  import { appendHeader, createError, getCookie } from "h3";
3
4
  //#region src/nuxt.ts
5
+ /**
6
+ * Create a session from an h3 event (Nuxt / h3).
7
+ *
8
+ * @example
9
+ * ```ts
10
+ * // In a Nuxt server handler:
11
+ * const session = await useSession(event, { password: process.env.NUXT_SESSION_PASSWORD })
12
+ * session.userId = 42
13
+ * await session.save()
14
+ * ```
15
+ */
4
16
  function useSession(event, options) {
5
17
  const password = options.password ?? process.env.NUXT_SESSION_PASSWORD;
6
- if (!password) throw new Error("peta-auth/nuxt: NUXT_SESSION_PASSWORD is required");
18
+ if (!password) throw new PetaAuthError("MISSING_PASSWORD", "peta-auth/nuxt: NUXT_SESSION_PASSWORD is required");
7
19
  return createSessionFromAdapter({
8
20
  getCookie: (name) => getCookie(event, name),
9
21
  setCookie: (value) => appendHeader(event, "Set-Cookie", value)
10
22
  }, {
11
23
  password,
12
- cookieName: options?.cookieName ?? "nuxt-session",
13
- ttl: options?.ttl,
14
- cookieOptions: options?.cookieOptions
24
+ cookieName: options.cookieName ?? "nuxt-session",
25
+ timeToLive: options.timeToLive,
26
+ cookieOptions: options.cookieOptions
15
27
  });
16
28
  }
17
- function requireSession(_event, session) {
18
- if (!Object.keys(session).some((k) => k !== "save" && k !== "destroy" && k !== "updateConfig")) throw createError({
29
+ function requireSession(_event, session, key) {
30
+ if (!sessionHasData(session, key)) throw createError({
19
31
  statusCode: 401,
20
32
  statusMessage: "unauthorized"
21
33
  });
@@ -1,4 +1,5 @@
1
1
  //#region src/oauth/github.d.ts
2
+ /** Configuration for GitHub OAuth. */
2
3
  interface OAuthGitHubConfig {
3
4
  clientId?: string;
4
5
  clientSecret?: string;
@@ -10,6 +11,11 @@ interface OAuthGitHubConfig {
10
11
  authorizationParams?: Record<string, string>;
11
12
  redirectURL?: string;
12
13
  }
14
+ interface GitHubTokens {
15
+ access_token: string;
16
+ scope: string;
17
+ token_type: string;
18
+ }
13
19
  interface GitHubUser {
14
20
  login: string;
15
21
  id: number;
@@ -19,11 +25,18 @@ interface GitHubUser {
19
25
  email: string | null;
20
26
  email_verified?: boolean;
21
27
  }
22
- interface GitHubTokens {
23
- access_token: string;
24
- scope: string;
25
- token_type: string;
26
- }
28
+ /**
29
+ * Define a GitHub OAuth event handler.
30
+ *
31
+ * @example
32
+ * ```ts
33
+ * const handle = defineOAuthGitHubEventHandler({
34
+ * onSuccess: async ({ user, tokens }) =>
35
+ * new Response(`Welcome ${user.login}!`),
36
+ * })
37
+ * serve(handle)
38
+ * ```
39
+ */
27
40
  declare function defineOAuthGitHubEventHandler(options: {
28
41
  config?: OAuthGitHubConfig;
29
42
  onSuccess: (event: {
@@ -1,92 +1,83 @@
1
- import { getOAuthRedirectURL, handleAccessTokenError, handleInvalidState, handleMissingConfiguration, handleState, redirect, requestAccessToken } from "./index.mjs";
1
+ import { t as defineOAuthHandler } from "../utils-CKT3C1Lq.mjs";
2
2
  //#region src/oauth/github.ts
3
- function resolveGitHubConfig(config) {
4
- return {
5
- authorizationURL: config.authorizationURL ?? "https://github.com/login/oauth/authorize",
6
- tokenURL: config.tokenURL ?? "https://github.com/login/oauth/access_token",
7
- apiURL: config.apiURL ?? "https://api.github.com",
8
- clientId: config.clientId ?? process.env.PETA_OAUTH_GITHUB_CLIENT_ID ?? "",
9
- clientSecret: config.clientSecret ?? process.env.PETA_OAUTH_GITHUB_CLIENT_SECRET ?? "",
10
- scope: config.scope ?? [],
11
- emailRequired: config.emailRequired ?? false,
12
- authorizationParams: config.authorizationParams ?? {},
13
- redirectURL: config.redirectURL
14
- };
15
- }
16
- function defineOAuthGitHubEventHandler(options) {
17
- const { config: userConfig = {}, onSuccess, onError } = options;
18
- return async (request) => {
19
- const config = resolveGitHubConfig(userConfig);
20
- const url = new URL(request.url);
21
- const queryCode = url.searchParams.get("code");
22
- const queryError = url.searchParams.get("error");
23
- const queryState = url.searchParams.get("state");
24
- if (queryError) {
25
- const err = /* @__PURE__ */ new Error(`GitHub login failed: ${queryError}`);
26
- if (onError) return onError(err);
27
- return new Response(JSON.stringify({ error: err.message }), {
28
- status: 401,
29
- headers: { "Content-Type": "application/json" }
30
- });
31
- }
32
- if (!config.clientId || !config.clientSecret) {
33
- const missing = [];
34
- if (!config.clientId) missing.push("clientId");
35
- if (!config.clientSecret) missing.push("clientSecret");
36
- return handleMissingConfiguration("github", missing, onError);
37
- }
38
- const redirectURL = config.redirectURL || getOAuthRedirectURL(request);
39
- const state = handleState(request);
40
- if (!queryCode) {
41
- if (config.emailRequired && !config.scope.includes("user:email")) config.scope.push("user:email");
42
- const authUrl = new URL(config.authorizationURL);
43
- authUrl.searchParams.set("client_id", config.clientId);
44
- authUrl.searchParams.set("redirect_uri", redirectURL);
45
- authUrl.searchParams.set("scope", config.scope.join(" "));
46
- authUrl.searchParams.set("state", state.state ?? "");
47
- for (const [k, v] of Object.entries(config.authorizationParams)) authUrl.searchParams.set(k, v);
48
- return redirect(authUrl.toString(), state.setCookie);
49
- }
50
- if (!queryState || queryState !== state.expectedState) return handleInvalidState("github", onError);
51
- const tokens = await requestAccessToken(config.tokenURL, { body: {
3
+ const githubProvider = {
4
+ name: "github",
5
+ resolveConfig(config) {
6
+ const c = config;
7
+ return {
8
+ authorizationURL: c.authorizationURL ?? "https://github.com/login/oauth/authorize",
9
+ tokenURL: c.tokenURL ?? "https://github.com/login/oauth/access_token",
10
+ apiURL: c.apiURL ?? "https://api.github.com",
11
+ clientId: c.clientId ?? process.env.PETA_OAUTH_GITHUB_CLIENT_ID ?? "",
12
+ clientSecret: c.clientSecret ?? process.env.PETA_OAUTH_GITHUB_CLIENT_SECRET ?? "",
13
+ scope: c.scope ?? [],
14
+ emailRequired: c.emailRequired ?? false,
15
+ authorizationParams: c.authorizationParams ?? {},
16
+ redirectURL: c.redirectURL
17
+ };
18
+ },
19
+ buildAuthUrl(config, redirectURL, state, _pkce) {
20
+ const c = config;
21
+ if (c.emailRequired && !c.scope.includes("user:email")) c.scope.push("user:email");
22
+ const authUrl = new URL(c.authorizationURL);
23
+ authUrl.searchParams.set("client_id", c.clientId);
24
+ authUrl.searchParams.set("redirect_uri", redirectURL);
25
+ authUrl.searchParams.set("scope", c.scope.join(" "));
26
+ authUrl.searchParams.set("state", state.state ?? "");
27
+ for (const [key, value] of Object.entries(c.authorizationParams)) authUrl.searchParams.set(key, value);
28
+ return {
29
+ url: authUrl.toString(),
30
+ cookies: state.setCookie
31
+ };
32
+ },
33
+ requestTokenBody(config, redirectURL, code, _pkce) {
34
+ return {
52
35
  grant_type: "authorization_code",
53
36
  client_id: config.clientId,
54
37
  client_secret: config.clientSecret,
55
38
  redirect_uri: redirectURL,
56
- code: queryCode
57
- } });
58
- const tokensRecord = tokens;
59
- if (tokensRecord.error) return handleAccessTokenError("github", tokensRecord, onError);
39
+ code
40
+ };
41
+ },
42
+ async fetchUser(config, tokens, _request) {
43
+ const c = config;
60
44
  const accessToken = tokens.access_token;
61
- const userResponse = await fetch(`${config.apiURL}/user`, { headers: {
62
- "User-Agent": `GitHub-OAuth-${config.clientId}`,
45
+ const userResponse = await fetch(`${c.apiURL}/user`, { headers: {
46
+ "User-Agent": `GitHub-OAuth-${c.clientId}`,
63
47
  Authorization: `token ${accessToken}`
64
48
  } });
65
- if (!userResponse.ok) {
66
- const err = /* @__PURE__ */ new Error(`GitHub user fetch failed: ${userResponse.status}`);
67
- if (onError) return onError(err);
68
- throw err;
69
- }
49
+ if (!userResponse.ok) throw new Error(`GitHub user fetch failed: ${userResponse.status}`);
70
50
  const user = await userResponse.json();
71
- if (!user.email && config.emailRequired) {
72
- const emailsResponse = await fetch(`${config.apiURL}/user/emails`, { headers: {
73
- "User-Agent": `GitHub-OAuth-${config.clientId}`,
51
+ if (!user.email && c.emailRequired) {
52
+ const emailsResponse = await fetch(`${c.apiURL}/user/emails`, { headers: {
53
+ "User-Agent": `GitHub-OAuth-${c.clientId}`,
74
54
  Authorization: `token ${accessToken}`
75
55
  } });
76
56
  if (emailsResponse.ok) {
77
- const primaryEmail = (await emailsResponse.json()).find((e) => e.primary);
57
+ const primaryEmail = (await emailsResponse.json()).find((entry) => entry.primary);
78
58
  if (primaryEmail) {
79
59
  user.email = primaryEmail.email;
80
60
  user.email_verified = primaryEmail.verified;
81
61
  }
82
62
  }
83
63
  }
84
- return onSuccess({
85
- user,
86
- tokens,
87
- request
88
- });
89
- };
64
+ return user;
65
+ }
66
+ };
67
+ /**
68
+ * Define a GitHub OAuth event handler.
69
+ *
70
+ * @example
71
+ * ```ts
72
+ * const handle = defineOAuthGitHubEventHandler({
73
+ * onSuccess: async ({ user, tokens }) =>
74
+ * new Response(`Welcome ${user.login}!`),
75
+ * })
76
+ * serve(handle)
77
+ * ```
78
+ */
79
+ function defineOAuthGitHubEventHandler(options) {
80
+ return defineOAuthHandler(githubProvider, options);
90
81
  }
91
82
  //#endregion
92
83
  export { defineOAuthGitHubEventHandler };
@@ -1,4 +1,5 @@
1
1
  //#region src/oauth/google.d.ts
2
+ /** Configuration for Google OAuth. */
2
3
  interface OAuthGoogleConfig {
3
4
  clientId?: string;
4
5
  clientSecret?: string;
@@ -9,6 +10,13 @@ interface OAuthGoogleConfig {
9
10
  authorizationParams?: Record<string, string>;
10
11
  redirectURL?: string;
11
12
  }
13
+ interface GoogleTokens {
14
+ access_token: string;
15
+ id_token: string;
16
+ scope: string;
17
+ token_type: string;
18
+ expires_in: number;
19
+ }
12
20
  interface GoogleUser {
13
21
  sub: string;
14
22
  name: string;
@@ -19,13 +27,18 @@ interface GoogleUser {
19
27
  email_verified: boolean;
20
28
  locale: string;
21
29
  }
22
- interface GoogleTokens {
23
- access_token: string;
24
- id_token: string;
25
- scope: string;
26
- token_type: string;
27
- expires_in: number;
28
- }
30
+ /**
31
+ * Define a Google OAuth event handler.
32
+ *
33
+ * @example
34
+ * ```ts
35
+ * const handle = defineOAuthGoogleEventHandler({
36
+ * onSuccess: async ({ user }) =>
37
+ * new Response(`Welcome ${user.name}!`),
38
+ * })
39
+ * serve(handle)
40
+ * ```
41
+ */
29
42
  declare function defineOAuthGoogleEventHandler(options: {
30
43
  config?: OAuthGoogleConfig;
31
44
  onSuccess: (event: {
@@ -1,84 +1,74 @@
1
- import { getOAuthRedirectURL, handleAccessTokenError, handleInvalidState, handleMissingConfiguration, handlePKCE, handleState, redirect, requestAccessToken } from "./index.mjs";
1
+ import { t as defineOAuthHandler } from "../utils-CKT3C1Lq.mjs";
2
2
  //#region src/oauth/google.ts
3
- function resolveGoogleConfig(config) {
4
- return {
5
- authorizationURL: config.authorizationURL ?? "https://accounts.google.com/o/oauth2/v2/auth",
6
- tokenURL: config.tokenURL ?? "https://oauth2.googleapis.com/token",
7
- userInfoURL: config.userInfoURL ?? "https://www.googleapis.com/oauth2/v3/userinfo",
8
- clientId: config.clientId ?? process.env.PETA_OAUTH_GOOGLE_CLIENT_ID ?? "",
9
- clientSecret: config.clientSecret ?? process.env.PETA_OAUTH_GOOGLE_CLIENT_SECRET ?? "",
10
- scope: config.scope ?? [
11
- "openid",
12
- "email",
13
- "profile"
14
- ],
15
- authorizationParams: config.authorizationParams ?? {},
16
- redirectURL: config.redirectURL
17
- };
18
- }
19
- function defineOAuthGoogleEventHandler(options) {
20
- const { config: userConfig = {}, onSuccess, onError } = options;
21
- return async (request) => {
22
- const config = resolveGoogleConfig(userConfig);
23
- const url = new URL(request.url);
24
- const queryCode = url.searchParams.get("code");
25
- const queryError = url.searchParams.get("error");
26
- const queryState = url.searchParams.get("state");
27
- if (queryError) {
28
- const err = /* @__PURE__ */ new Error(`Google login failed: ${queryError}`);
29
- if (onError) return onError(err);
30
- return new Response(JSON.stringify({ error: err.message }), {
31
- status: 401,
32
- headers: { "Content-Type": "application/json" }
33
- });
34
- }
35
- if (!config.clientId || !config.clientSecret) {
36
- const missing = [];
37
- if (!config.clientId) missing.push("clientId");
38
- if (!config.clientSecret) missing.push("clientSecret");
39
- return handleMissingConfiguration("google", missing, onError);
3
+ const googleProvider = {
4
+ name: "google",
5
+ resolveConfig(config) {
6
+ const c = config;
7
+ return {
8
+ authorizationURL: c.authorizationURL ?? "https://accounts.google.com/o/oauth2/v2/auth",
9
+ tokenURL: c.tokenURL ?? "https://oauth2.googleapis.com/token",
10
+ userInfoURL: c.userInfoURL ?? "https://www.googleapis.com/oauth2/v3/userinfo",
11
+ clientId: c.clientId ?? process.env.PETA_OAUTH_GOOGLE_CLIENT_ID ?? "",
12
+ clientSecret: c.clientSecret ?? process.env.PETA_OAUTH_GOOGLE_CLIENT_SECRET ?? "",
13
+ scope: c.scope ?? [
14
+ "openid",
15
+ "email",
16
+ "profile"
17
+ ],
18
+ authorizationParams: c.authorizationParams ?? {},
19
+ redirectURL: c.redirectURL
20
+ };
21
+ },
22
+ buildAuthUrl(config, redirectURL, state, pkce) {
23
+ const c = config;
24
+ const authUrl = new URL(c.authorizationURL);
25
+ authUrl.searchParams.set("client_id", c.clientId);
26
+ authUrl.searchParams.set("redirect_uri", redirectURL);
27
+ authUrl.searchParams.set("scope", c.scope.join(" "));
28
+ authUrl.searchParams.set("response_type", "code");
29
+ authUrl.searchParams.set("state", state.state ?? "");
30
+ if (pkce.codeChallenge) {
31
+ authUrl.searchParams.set("code_challenge", pkce.codeChallenge);
32
+ authUrl.searchParams.set("code_challenge_method", pkce.codeChallengeMethod ?? "S256");
40
33
  }
41
- const redirectURL = config.redirectURL || getOAuthRedirectURL(request);
42
- const state = handleState(request);
43
- const pkce = await handlePKCE(request);
44
- if (!queryCode) {
45
- const authUrl = new URL(config.authorizationURL);
46
- authUrl.searchParams.set("client_id", config.clientId);
47
- authUrl.searchParams.set("redirect_uri", redirectURL);
48
- authUrl.searchParams.set("scope", config.scope.join(" "));
49
- authUrl.searchParams.set("response_type", "code");
50
- authUrl.searchParams.set("state", state.state ?? "");
51
- if (pkce.codeChallenge) {
52
- authUrl.searchParams.set("code_challenge", pkce.codeChallenge);
53
- authUrl.searchParams.set("code_challenge_method", pkce.codeChallengeMethod ?? "S256");
54
- }
55
- for (const [k, v] of Object.entries(config.authorizationParams)) authUrl.searchParams.set(k, v);
56
- const cookies = [state.setCookie, pkce.setCookie].filter(Boolean).join("; ");
57
- return redirect(authUrl.toString(), cookies || void 0);
58
- }
59
- if (!queryState || queryState !== state.expectedState) return handleInvalidState("google", onError);
60
- const tokens = await requestAccessToken(config.tokenURL, { body: {
34
+ for (const [key, value] of Object.entries(c.authorizationParams)) authUrl.searchParams.set(key, value);
35
+ const cookies = [state.setCookie, pkce.setCookie].filter(Boolean).join("; ");
36
+ return {
37
+ url: authUrl.toString(),
38
+ cookies: cookies || void 0
39
+ };
40
+ },
41
+ requestTokenBody(config, redirectURL, code, pkce) {
42
+ return {
61
43
  grant_type: "authorization_code",
62
44
  client_id: config.clientId,
63
45
  client_secret: config.clientSecret,
64
46
  redirect_uri: redirectURL,
65
- code: queryCode,
66
- code_verifier: pkce.codeVerifier
67
- } });
68
- const tokensRecord = tokens;
69
- if (tokensRecord.error) return handleAccessTokenError("google", tokensRecord, onError);
70
- const userResponse = await fetch(config.userInfoURL, { headers: { Authorization: `Bearer ${tokens.access_token}` } });
71
- if (!userResponse.ok) {
72
- const err = /* @__PURE__ */ new Error(`Google user fetch failed: ${userResponse.status}`);
73
- if (onError) return onError(err);
74
- throw err;
75
- }
76
- return onSuccess({
77
- user: await userResponse.json(),
78
- tokens,
79
- request
80
- });
81
- };
47
+ code,
48
+ code_verifier: pkce.codeVerifier ?? ""
49
+ };
50
+ },
51
+ async fetchUser(config, tokens, _request) {
52
+ const userURL = config.userInfoURL ?? "https://www.googleapis.com/oauth2/v3/userinfo";
53
+ const userResponse = await fetch(userURL, { headers: { Authorization: `Bearer ${tokens.access_token}` } });
54
+ if (!userResponse.ok) throw new Error(`Google user fetch failed: ${userResponse.status}`);
55
+ return userResponse.json();
56
+ }
57
+ };
58
+ /**
59
+ * Define a Google OAuth event handler.
60
+ *
61
+ * @example
62
+ * ```ts
63
+ * const handle = defineOAuthGoogleEventHandler({
64
+ * onSuccess: async ({ user }) =>
65
+ * new Response(`Welcome ${user.name}!`),
66
+ * })
67
+ * serve(handle)
68
+ * ```
69
+ */
70
+ function defineOAuthGoogleEventHandler(options) {
71
+ return defineOAuthHandler(googleProvider, options);
82
72
  }
83
73
  //#endregion
84
74
  export { defineOAuthGoogleEventHandler };
@@ -0,0 +1,53 @@
1
+ import { t as Password } from "./crypto-DR-ETdLZ.mjs";
2
+ import { SerializeOptions } from "cookie";
3
+
4
+ //#region src/session.d.ts
5
+ /** Options for creating a cookie session. */
6
+ interface SessionOptions {
7
+ /** Password(s) used to encrypt the session cookie. */
8
+ password: Password;
9
+ /** Name of the cookie. */
10
+ cookieName: string;
11
+ /** Session lifetime in seconds (default 14 days). */
12
+ timeToLive?: number;
13
+ /** Extra cookie serialization options. */
14
+ cookieOptions?: Omit<SerializeOptions, "encode">;
15
+ }
16
+ /** A session instance returned by {@link createSessionFromAdapter}. */
17
+ interface IronSession {
18
+ /** Persist the session to the response cookie. */
19
+ save(): Promise<void>;
20
+ /** Clear the session cookie. */
21
+ destroy(): void;
22
+ /** Update session config at runtime. */
23
+ updateConfig(options: SessionOptions): void;
24
+ /** Arbitrary session data keys. */
25
+ [key: string]: unknown;
26
+ }
27
+ /** An adapter between the framework and the session cookie store. */
28
+ interface SessionAdapter {
29
+ /** Read a cookie by name from the incoming request. */
30
+ getCookie(name: string): string | undefined;
31
+ /** Set a cookie on the outgoing response. */
32
+ setCookie(cookie: string): void;
33
+ }
34
+ /**
35
+ * Create a session from a framework adapter.
36
+ *
37
+ * Reads the session cookie (if present), hydrates the data, and
38
+ * returns a session object with {@link IronSession.save},
39
+ * {@link IronSession.destroy}, and {@link IronSession.updateConfig}.
40
+ *
41
+ * @example
42
+ * ```ts
43
+ * const session = await createSessionFromAdapter(adapter, {
44
+ * password: "my-32-char-password...",
45
+ * cookieName: "my-session",
46
+ * })
47
+ * session.userId = 42
48
+ * await session.save()
49
+ * ```
50
+ */
51
+ declare function createSessionFromAdapter<T extends Record<string, unknown> = Record<string, unknown>>(adapter: SessionAdapter, options: SessionOptions): Promise<T & IronSession>;
52
+ //#endregion
53
+ export { createSessionFromAdapter as i, SessionAdapter as n, SessionOptions as r, IronSession as t };