@better-auth/core 1.4.12-beta.2 → 1.4.13
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/.turbo/turbo-build.log +172 -35
- package/dist/api/index.d.mts +178 -1
- package/dist/api/index.mjs +2 -1
- package/dist/context/endpoint-context.d.mts +19 -0
- package/dist/context/endpoint-context.mjs +31 -0
- package/dist/context/global.d.mts +7 -0
- package/dist/context/global.mjs +37 -0
- package/dist/context/index.d.mts +5 -53
- package/dist/context/index.mjs +5 -2
- package/dist/context/request-state.d.mts +27 -0
- package/dist/context/request-state.mjs +49 -0
- package/dist/context/transaction.d.mts +16 -0
- package/dist/context/transaction.mjs +52 -0
- package/dist/db/adapter/factory.d.mts +27 -0
- package/dist/db/adapter/factory.mjs +738 -0
- package/dist/db/adapter/get-default-field-name.d.mts +18 -0
- package/dist/db/adapter/get-default-field-name.mjs +38 -0
- package/dist/db/adapter/get-default-model-name.d.mts +12 -0
- package/dist/db/adapter/get-default-model-name.mjs +32 -0
- package/dist/db/adapter/get-field-attributes.d.mts +29 -0
- package/dist/db/adapter/get-field-attributes.mjs +39 -0
- package/dist/db/adapter/get-field-name.d.mts +18 -0
- package/dist/db/adapter/get-field-name.mjs +33 -0
- package/dist/db/adapter/get-id-field.d.mts +39 -0
- package/dist/db/adapter/get-id-field.mjs +68 -0
- package/dist/db/adapter/get-model-name.d.mts +12 -0
- package/dist/db/adapter/get-model-name.mjs +23 -0
- package/dist/db/adapter/index.d.mts +513 -1
- package/dist/db/adapter/index.mjs +8 -970
- package/dist/db/adapter/types.d.mts +139 -0
- package/dist/db/adapter/utils.d.mts +7 -0
- package/dist/db/adapter/utils.mjs +38 -0
- package/dist/db/get-tables.d.mts +8 -0
- package/dist/{get-tables-CMc_Emww.mjs → db/get-tables.mjs} +1 -1
- package/dist/db/index.d.mts +10 -2
- package/dist/db/index.mjs +7 -60
- package/dist/db/plugin.d.mts +12 -0
- package/dist/db/schema/account.d.mts +26 -0
- package/dist/db/schema/account.mjs +19 -0
- package/dist/db/schema/rate-limit.d.mts +14 -0
- package/dist/db/schema/rate-limit.mjs +11 -0
- package/dist/db/schema/session.d.mts +21 -0
- package/dist/db/schema/session.mjs +14 -0
- package/dist/db/schema/shared.d.mts +10 -0
- package/dist/db/schema/shared.mjs +11 -0
- package/dist/db/schema/user.d.mts +20 -0
- package/dist/db/schema/user.mjs +13 -0
- package/dist/db/schema/verification.d.mts +19 -0
- package/dist/db/schema/verification.mjs +12 -0
- package/dist/db/type.d.mts +143 -0
- package/dist/env/color-depth.d.mts +4 -0
- package/dist/env/color-depth.mjs +88 -0
- package/dist/env/env-impl.d.mts +32 -0
- package/dist/env/env-impl.mjs +82 -0
- package/dist/env/index.d.mts +4 -2
- package/dist/env/index.mjs +3 -1
- package/dist/{index-BRBu0-5h.d.mts → env/logger.d.mts} +1 -35
- package/dist/env/logger.mjs +81 -0
- package/dist/error/codes.d.mts +48 -0
- package/dist/{error-DP1xOn7P.mjs → error/codes.mjs} +3 -14
- package/dist/error/index.d.mts +5 -48
- package/dist/error/index.mjs +12 -3
- package/dist/index.d.mts +8 -2
- package/dist/oauth2/client-credentials-token.d.mts +36 -0
- package/dist/oauth2/client-credentials-token.mjs +54 -0
- package/dist/oauth2/create-authorization-url.d.mts +45 -0
- package/dist/oauth2/create-authorization-url.mjs +42 -0
- package/dist/oauth2/index.d.mts +8 -2
- package/dist/oauth2/index.mjs +6 -2
- package/dist/oauth2/oauth-provider.d.mts +194 -0
- package/dist/oauth2/refresh-access-token.d.mts +36 -0
- package/dist/oauth2/refresh-access-token.mjs +58 -0
- package/dist/oauth2/utils.d.mts +7 -0
- package/dist/oauth2/utils.mjs +27 -0
- package/dist/oauth2/validate-authorization-code.d.mts +55 -0
- package/dist/oauth2/validate-authorization-code.mjs +71 -0
- package/dist/oauth2/verify.d.mts +49 -0
- package/dist/oauth2/verify.mjs +95 -0
- package/dist/social-providers/apple.d.mts +119 -0
- package/dist/social-providers/apple.mjs +102 -0
- package/dist/social-providers/atlassian.d.mts +72 -0
- package/dist/social-providers/atlassian.mjs +83 -0
- package/dist/social-providers/cognito.d.mts +87 -0
- package/dist/social-providers/cognito.mjs +166 -0
- package/dist/social-providers/discord.d.mts +126 -0
- package/dist/social-providers/discord.mjs +64 -0
- package/dist/social-providers/dropbox.d.mts +71 -0
- package/dist/social-providers/dropbox.mjs +75 -0
- package/dist/social-providers/facebook.d.mts +81 -0
- package/dist/social-providers/facebook.mjs +120 -0
- package/dist/social-providers/figma.d.mts +63 -0
- package/dist/social-providers/figma.mjs +84 -0
- package/dist/social-providers/github.d.mts +104 -0
- package/dist/social-providers/github.mjs +80 -0
- package/dist/social-providers/gitlab.d.mts +125 -0
- package/dist/social-providers/gitlab.mjs +82 -0
- package/dist/social-providers/google.d.mts +99 -0
- package/dist/social-providers/google.mjs +109 -0
- package/dist/social-providers/huggingface.d.mts +85 -0
- package/dist/social-providers/huggingface.mjs +75 -0
- package/dist/social-providers/index.d.mts +1723 -1
- package/dist/social-providers/index.mjs +33 -2570
- package/dist/social-providers/kakao.d.mts +163 -0
- package/dist/social-providers/kakao.mjs +72 -0
- package/dist/social-providers/kick.d.mts +75 -0
- package/dist/social-providers/kick.mjs +71 -0
- package/dist/social-providers/line.d.mts +107 -0
- package/dist/social-providers/line.mjs +113 -0
- package/dist/social-providers/linear.d.mts +70 -0
- package/dist/social-providers/linear.mjs +88 -0
- package/dist/social-providers/linkedin.d.mts +69 -0
- package/dist/social-providers/linkedin.mjs +76 -0
- package/dist/social-providers/microsoft-entra-id.d.mts +174 -0
- package/dist/social-providers/microsoft-entra-id.mjs +106 -0
- package/dist/social-providers/naver.d.mts +104 -0
- package/dist/social-providers/naver.mjs +67 -0
- package/dist/social-providers/notion.d.mts +66 -0
- package/dist/social-providers/notion.mjs +75 -0
- package/dist/social-providers/paybin.d.mts +73 -0
- package/dist/social-providers/paybin.mjs +85 -0
- package/dist/social-providers/paypal.d.mts +131 -0
- package/dist/social-providers/paypal.mjs +144 -0
- package/dist/social-providers/polar.d.mts +76 -0
- package/dist/social-providers/polar.mjs +73 -0
- package/dist/social-providers/reddit.d.mts +64 -0
- package/dist/social-providers/reddit.mjs +83 -0
- package/dist/social-providers/roblox.d.mts +72 -0
- package/dist/social-providers/roblox.mjs +59 -0
- package/dist/social-providers/salesforce.d.mts +81 -0
- package/dist/social-providers/salesforce.mjs +91 -0
- package/dist/social-providers/slack.d.mts +85 -0
- package/dist/social-providers/slack.mjs +68 -0
- package/dist/social-providers/spotify.d.mts +65 -0
- package/dist/social-providers/spotify.mjs +71 -0
- package/dist/social-providers/tiktok.d.mts +171 -0
- package/dist/social-providers/tiktok.mjs +62 -0
- package/dist/social-providers/twitch.d.mts +81 -0
- package/dist/social-providers/twitch.mjs +78 -0
- package/dist/social-providers/twitter.d.mts +140 -0
- package/dist/social-providers/twitter.mjs +87 -0
- package/dist/social-providers/vercel.d.mts +64 -0
- package/dist/social-providers/vercel.mjs +61 -0
- package/dist/social-providers/vk.d.mts +72 -0
- package/dist/social-providers/vk.mjs +83 -0
- package/dist/social-providers/zoom.d.mts +173 -0
- package/dist/social-providers/zoom.mjs +72 -0
- package/dist/types/context.d.mts +215 -0
- package/dist/types/cookie.d.mts +15 -0
- package/dist/types/helper.d.mts +8 -0
- package/dist/types/index.d.mts +8 -0
- package/dist/types/init-options.d.mts +1266 -0
- package/dist/types/plugin-client.d.mts +103 -0
- package/dist/types/plugin.d.mts +121 -0
- package/dist/utils/deprecate.d.mts +10 -0
- package/dist/utils/deprecate.mjs +17 -0
- package/dist/utils/error-codes.d.mts +9 -0
- package/dist/utils/error-codes.mjs +7 -0
- package/dist/utils/id.d.mts +4 -0
- package/dist/utils/id.mjs +9 -0
- package/dist/utils/index.d.mts +5 -26
- package/dist/utils/index.mjs +5 -2
- package/dist/utils/json.d.mts +4 -0
- package/dist/utils/json.mjs +25 -0
- package/dist/utils/string.d.mts +4 -0
- package/dist/utils/string.mjs +7 -0
- package/package.json +1 -1
- package/src/context/endpoint-context.ts +7 -15
- package/src/context/global.ts +57 -0
- package/src/context/index.ts +1 -0
- package/src/context/request-state.ts +7 -12
- package/src/context/transaction.ts +7 -16
- package/src/db/adapter/factory.ts +13 -13
- package/src/db/adapter/get-default-model-name.ts +1 -1
- package/src/db/adapter/get-id-field.ts +2 -2
- package/src/error/index.ts +2 -3
- package/src/social-providers/gitlab.ts +1 -1
- package/src/types/context.ts +137 -131
- package/src/types/cookie.ts +6 -4
- package/src/types/index.ts +2 -1
- package/tsdown.config.ts +9 -0
- package/dist/context-BGZ8V6DD.mjs +0 -126
- package/dist/env-DbssmzoK.mjs +0 -245
- package/dist/index-zgYuzZ7O.d.mts +0 -8020
- package/dist/oauth2-COJkghlT.mjs +0 -326
- package/dist/utils-U2L7n92V.mjs +0 -59
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { generateCodeChallenge } from "./utils.mjs";
|
|
2
|
+
|
|
3
|
+
//#region src/oauth2/create-authorization-url.ts
|
|
4
|
+
async function createAuthorizationURL({ id, options, authorizationEndpoint, state, codeVerifier, scopes, claims, redirectURI, duration, prompt, accessType, responseType, display, loginHint, hd, responseMode, additionalParams, scopeJoiner }) {
|
|
5
|
+
const url = new URL(options.authorizationEndpoint || authorizationEndpoint);
|
|
6
|
+
url.searchParams.set("response_type", responseType || "code");
|
|
7
|
+
const primaryClientId = Array.isArray(options.clientId) ? options.clientId[0] : options.clientId;
|
|
8
|
+
url.searchParams.set("client_id", primaryClientId);
|
|
9
|
+
url.searchParams.set("state", state);
|
|
10
|
+
if (scopes) url.searchParams.set("scope", scopes.join(scopeJoiner || " "));
|
|
11
|
+
url.searchParams.set("redirect_uri", options.redirectURI || redirectURI);
|
|
12
|
+
duration && url.searchParams.set("duration", duration);
|
|
13
|
+
display && url.searchParams.set("display", display);
|
|
14
|
+
loginHint && url.searchParams.set("login_hint", loginHint);
|
|
15
|
+
prompt && url.searchParams.set("prompt", prompt);
|
|
16
|
+
hd && url.searchParams.set("hd", hd);
|
|
17
|
+
accessType && url.searchParams.set("access_type", accessType);
|
|
18
|
+
responseMode && url.searchParams.set("response_mode", responseMode);
|
|
19
|
+
if (codeVerifier) {
|
|
20
|
+
const codeChallenge = await generateCodeChallenge(codeVerifier);
|
|
21
|
+
url.searchParams.set("code_challenge_method", "S256");
|
|
22
|
+
url.searchParams.set("code_challenge", codeChallenge);
|
|
23
|
+
}
|
|
24
|
+
if (claims) {
|
|
25
|
+
const claimsObj = claims.reduce((acc, claim) => {
|
|
26
|
+
acc[claim] = null;
|
|
27
|
+
return acc;
|
|
28
|
+
}, {});
|
|
29
|
+
url.searchParams.set("claims", JSON.stringify({ id_token: {
|
|
30
|
+
email: null,
|
|
31
|
+
email_verified: null,
|
|
32
|
+
...claimsObj
|
|
33
|
+
} }));
|
|
34
|
+
}
|
|
35
|
+
if (additionalParams) Object.entries(additionalParams).forEach(([key, value]) => {
|
|
36
|
+
url.searchParams.set(key, value);
|
|
37
|
+
});
|
|
38
|
+
return url;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
//#endregion
|
|
42
|
+
export { createAuthorizationURL };
|
package/dist/oauth2/index.d.mts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { OAuth2Tokens, OAuth2UserInfo, OAuthProvider, ProviderOptions } from "./oauth-provider.mjs";
|
|
2
|
+
import { clientCredentialsToken, createClientCredentialsTokenRequest } from "./client-credentials-token.mjs";
|
|
3
|
+
import { createAuthorizationURL } from "./create-authorization-url.mjs";
|
|
4
|
+
import { createRefreshAccessTokenRequest, refreshAccessToken } from "./refresh-access-token.mjs";
|
|
5
|
+
import { generateCodeChallenge, getOAuth2Tokens } from "./utils.mjs";
|
|
6
|
+
import { createAuthorizationCodeRequest, validateAuthorizationCode, validateToken } from "./validate-authorization-code.mjs";
|
|
7
|
+
import { getJwks, verifyAccessToken, verifyJwsAccessToken } from "./verify.mjs";
|
|
8
|
+
export { type OAuth2Tokens, type OAuth2UserInfo, type OAuthProvider, type ProviderOptions, clientCredentialsToken, createAuthorizationCodeRequest, createAuthorizationURL, createClientCredentialsTokenRequest, createRefreshAccessTokenRequest, generateCodeChallenge, getJwks, getOAuth2Tokens, refreshAccessToken, validateAuthorizationCode, validateToken, verifyAccessToken, verifyJwsAccessToken };
|
package/dist/oauth2/index.mjs
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import "
|
|
2
|
-
import {
|
|
1
|
+
import { clientCredentialsToken, createClientCredentialsTokenRequest } from "./client-credentials-token.mjs";
|
|
2
|
+
import { generateCodeChallenge, getOAuth2Tokens } from "./utils.mjs";
|
|
3
|
+
import { createAuthorizationURL } from "./create-authorization-url.mjs";
|
|
4
|
+
import { createRefreshAccessTokenRequest, refreshAccessToken } from "./refresh-access-token.mjs";
|
|
5
|
+
import { createAuthorizationCodeRequest, validateAuthorizationCode, validateToken } from "./validate-authorization-code.mjs";
|
|
6
|
+
import { getJwks, verifyAccessToken, verifyJwsAccessToken } from "./verify.mjs";
|
|
3
7
|
|
|
4
8
|
export { clientCredentialsToken, createAuthorizationCodeRequest, createAuthorizationURL, createClientCredentialsTokenRequest, createRefreshAccessTokenRequest, generateCodeChallenge, getJwks, getOAuth2Tokens, refreshAccessToken, validateAuthorizationCode, validateToken, verifyAccessToken, verifyJwsAccessToken };
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
import { Awaitable, LiteralString } from "../types/helper.mjs";
|
|
2
|
+
import "../types/index.mjs";
|
|
3
|
+
|
|
4
|
+
//#region src/oauth2/oauth-provider.d.ts
|
|
5
|
+
interface OAuth2Tokens {
|
|
6
|
+
tokenType?: string | undefined;
|
|
7
|
+
accessToken?: string | undefined;
|
|
8
|
+
refreshToken?: string | undefined;
|
|
9
|
+
accessTokenExpiresAt?: Date | undefined;
|
|
10
|
+
refreshTokenExpiresAt?: Date | undefined;
|
|
11
|
+
scopes?: string[] | undefined;
|
|
12
|
+
idToken?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* Raw token response from the provider.
|
|
15
|
+
* Preserves provider-specific fields that are not part of the standard OAuth2 token response.
|
|
16
|
+
*/
|
|
17
|
+
raw?: Record<string, unknown> | undefined;
|
|
18
|
+
}
|
|
19
|
+
type OAuth2UserInfo = {
|
|
20
|
+
id: string | number;
|
|
21
|
+
name?: string | undefined;
|
|
22
|
+
email?: (string | null) | undefined;
|
|
23
|
+
image?: string | undefined;
|
|
24
|
+
emailVerified: boolean;
|
|
25
|
+
};
|
|
26
|
+
interface OAuthProvider<T extends Record<string, any> = Record<string, any>, O extends Record<string, any> = Partial<ProviderOptions>> {
|
|
27
|
+
id: LiteralString;
|
|
28
|
+
createAuthorizationURL: (data: {
|
|
29
|
+
state: string;
|
|
30
|
+
codeVerifier: string;
|
|
31
|
+
scopes?: string[] | undefined;
|
|
32
|
+
redirectURI: string;
|
|
33
|
+
display?: string | undefined;
|
|
34
|
+
loginHint?: string | undefined;
|
|
35
|
+
}) => Awaitable<URL>;
|
|
36
|
+
name: string;
|
|
37
|
+
validateAuthorizationCode: (data: {
|
|
38
|
+
code: string;
|
|
39
|
+
redirectURI: string;
|
|
40
|
+
codeVerifier?: string | undefined;
|
|
41
|
+
deviceId?: string | undefined;
|
|
42
|
+
}) => Promise<OAuth2Tokens>;
|
|
43
|
+
getUserInfo: (token: OAuth2Tokens & {
|
|
44
|
+
/**
|
|
45
|
+
* The user object from the provider
|
|
46
|
+
* This is only available for some providers like Apple
|
|
47
|
+
*/
|
|
48
|
+
user?: {
|
|
49
|
+
name?: {
|
|
50
|
+
firstName?: string;
|
|
51
|
+
lastName?: string;
|
|
52
|
+
};
|
|
53
|
+
email?: string;
|
|
54
|
+
} | undefined;
|
|
55
|
+
}) => Promise<{
|
|
56
|
+
user: OAuth2UserInfo;
|
|
57
|
+
data: T;
|
|
58
|
+
} | null>;
|
|
59
|
+
/**
|
|
60
|
+
* Custom function to refresh a token
|
|
61
|
+
*/
|
|
62
|
+
refreshAccessToken?: ((refreshToken: string) => Promise<OAuth2Tokens>) | undefined;
|
|
63
|
+
revokeToken?: ((token: string) => Promise<void>) | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* Verify the id token
|
|
66
|
+
* @param token - The id token
|
|
67
|
+
* @param nonce - The nonce
|
|
68
|
+
* @returns True if the id token is valid, false otherwise
|
|
69
|
+
*/
|
|
70
|
+
verifyIdToken?: ((token: string, nonce?: string) => Promise<boolean>) | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* Disable implicit sign up for new users. When set to true for the provider,
|
|
73
|
+
* sign-in need to be called with with requestSignUp as true to create new users.
|
|
74
|
+
*/
|
|
75
|
+
disableImplicitSignUp?: boolean | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* Disable sign up for new users.
|
|
78
|
+
*/
|
|
79
|
+
disableSignUp?: boolean | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* Options for the provider
|
|
82
|
+
*/
|
|
83
|
+
options?: O | undefined;
|
|
84
|
+
}
|
|
85
|
+
type ProviderOptions<Profile extends Record<string, any> = any> = {
|
|
86
|
+
/**
|
|
87
|
+
* The client ID of your application.
|
|
88
|
+
*
|
|
89
|
+
* This is usually a string but can be any type depending on the provider.
|
|
90
|
+
*/
|
|
91
|
+
clientId?: unknown | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* The client secret of your application
|
|
94
|
+
*/
|
|
95
|
+
clientSecret?: string | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* The scopes you want to request from the provider
|
|
98
|
+
*/
|
|
99
|
+
scope?: string[] | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* Remove default scopes of the provider
|
|
102
|
+
*/
|
|
103
|
+
disableDefaultScope?: boolean | undefined;
|
|
104
|
+
/**
|
|
105
|
+
* The redirect URL for your application. This is where the provider will
|
|
106
|
+
* redirect the user after the sign in process. Make sure this URL is
|
|
107
|
+
* whitelisted in the provider's dashboard.
|
|
108
|
+
*/
|
|
109
|
+
redirectURI?: string | undefined;
|
|
110
|
+
/**
|
|
111
|
+
* Custom authorization endpoint URL.
|
|
112
|
+
* Use this to override the default authorization endpoint of the provider.
|
|
113
|
+
* Useful for testing with local OAuth servers or using sandbox environments.
|
|
114
|
+
*/
|
|
115
|
+
authorizationEndpoint?: string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* The client key of your application
|
|
118
|
+
* Tiktok Social Provider uses this field instead of clientId
|
|
119
|
+
*/
|
|
120
|
+
clientKey?: string | undefined;
|
|
121
|
+
/**
|
|
122
|
+
* Disable provider from allowing users to sign in
|
|
123
|
+
* with this provider with an id token sent from the
|
|
124
|
+
* client.
|
|
125
|
+
*/
|
|
126
|
+
disableIdTokenSignIn?: boolean | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* verifyIdToken function to verify the id token
|
|
129
|
+
*/
|
|
130
|
+
verifyIdToken?: ((token: string, nonce?: string) => Promise<boolean>) | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* Custom function to get user info from the provider
|
|
133
|
+
*/
|
|
134
|
+
getUserInfo?: ((token: OAuth2Tokens) => Promise<{
|
|
135
|
+
user: {
|
|
136
|
+
id: string;
|
|
137
|
+
name?: string;
|
|
138
|
+
email?: string | null;
|
|
139
|
+
image?: string;
|
|
140
|
+
emailVerified: boolean;
|
|
141
|
+
[key: string]: any;
|
|
142
|
+
};
|
|
143
|
+
data: any;
|
|
144
|
+
} | null>) | undefined;
|
|
145
|
+
/**
|
|
146
|
+
* Custom function to refresh a token
|
|
147
|
+
*/
|
|
148
|
+
refreshAccessToken?: ((refreshToken: string) => Promise<OAuth2Tokens>) | undefined;
|
|
149
|
+
/**
|
|
150
|
+
* Custom function to map the provider profile to a
|
|
151
|
+
* user.
|
|
152
|
+
*/
|
|
153
|
+
mapProfileToUser?: ((profile: Profile) => {
|
|
154
|
+
id?: string;
|
|
155
|
+
name?: string;
|
|
156
|
+
email?: string | null;
|
|
157
|
+
image?: string;
|
|
158
|
+
emailVerified?: boolean;
|
|
159
|
+
[key: string]: any;
|
|
160
|
+
} | Promise<{
|
|
161
|
+
id?: string;
|
|
162
|
+
name?: string;
|
|
163
|
+
email?: string | null;
|
|
164
|
+
image?: string;
|
|
165
|
+
emailVerified?: boolean;
|
|
166
|
+
[key: string]: any;
|
|
167
|
+
}>) | undefined;
|
|
168
|
+
/**
|
|
169
|
+
* Disable implicit sign up for new users. When set to true for the provider,
|
|
170
|
+
* sign-in need to be called with with requestSignUp as true to create new users.
|
|
171
|
+
*/
|
|
172
|
+
disableImplicitSignUp?: boolean | undefined;
|
|
173
|
+
/**
|
|
174
|
+
* Disable sign up for new users.
|
|
175
|
+
*/
|
|
176
|
+
disableSignUp?: boolean | undefined;
|
|
177
|
+
/**
|
|
178
|
+
* The prompt to use for the authorization code request
|
|
179
|
+
*/
|
|
180
|
+
prompt?: ("select_account" | "consent" | "login" | "none" | "select_account consent") | undefined;
|
|
181
|
+
/**
|
|
182
|
+
* The response mode to use for the authorization code request
|
|
183
|
+
*/
|
|
184
|
+
responseMode?: ("query" | "form_post") | undefined;
|
|
185
|
+
/**
|
|
186
|
+
* If enabled, the user info will be overridden with the provider user info
|
|
187
|
+
* This is useful if you want to use the provider user info to update the user info
|
|
188
|
+
*
|
|
189
|
+
* @default false
|
|
190
|
+
*/
|
|
191
|
+
overrideUserInfoOnSignIn?: boolean | undefined;
|
|
192
|
+
};
|
|
193
|
+
//#endregion
|
|
194
|
+
export { OAuth2Tokens, OAuth2UserInfo, OAuthProvider, ProviderOptions };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { OAuth2Tokens, ProviderOptions } from "./oauth-provider.mjs";
|
|
2
|
+
|
|
3
|
+
//#region src/oauth2/refresh-access-token.d.ts
|
|
4
|
+
declare function createRefreshAccessTokenRequest({
|
|
5
|
+
refreshToken,
|
|
6
|
+
options,
|
|
7
|
+
authentication,
|
|
8
|
+
extraParams,
|
|
9
|
+
resource
|
|
10
|
+
}: {
|
|
11
|
+
refreshToken: string;
|
|
12
|
+
options: Partial<ProviderOptions>;
|
|
13
|
+
authentication?: ("basic" | "post") | undefined;
|
|
14
|
+
extraParams?: Record<string, string> | undefined;
|
|
15
|
+
resource?: (string | string[]) | undefined;
|
|
16
|
+
}): {
|
|
17
|
+
body: URLSearchParams;
|
|
18
|
+
headers: Record<string, any>;
|
|
19
|
+
};
|
|
20
|
+
declare function refreshAccessToken({
|
|
21
|
+
refreshToken,
|
|
22
|
+
options,
|
|
23
|
+
tokenEndpoint,
|
|
24
|
+
authentication,
|
|
25
|
+
extraParams
|
|
26
|
+
}: {
|
|
27
|
+
refreshToken: string;
|
|
28
|
+
options: Partial<ProviderOptions>;
|
|
29
|
+
tokenEndpoint: string;
|
|
30
|
+
authentication?: ("basic" | "post") | undefined;
|
|
31
|
+
extraParams?: Record<string, string> | undefined;
|
|
32
|
+
/** @deprecated always "refresh_token" */
|
|
33
|
+
grantType?: string | undefined;
|
|
34
|
+
}): Promise<OAuth2Tokens>;
|
|
35
|
+
//#endregion
|
|
36
|
+
export { createRefreshAccessTokenRequest, refreshAccessToken };
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { base64 } from "@better-auth/utils/base64";
|
|
2
|
+
import { betterFetch } from "@better-fetch/fetch";
|
|
3
|
+
|
|
4
|
+
//#region src/oauth2/refresh-access-token.ts
|
|
5
|
+
function createRefreshAccessTokenRequest({ refreshToken, options, authentication, extraParams, resource }) {
|
|
6
|
+
const body = new URLSearchParams();
|
|
7
|
+
const headers = {
|
|
8
|
+
"content-type": "application/x-www-form-urlencoded",
|
|
9
|
+
accept: "application/json"
|
|
10
|
+
};
|
|
11
|
+
body.set("grant_type", "refresh_token");
|
|
12
|
+
body.set("refresh_token", refreshToken);
|
|
13
|
+
if (authentication === "basic") {
|
|
14
|
+
const primaryClientId = Array.isArray(options.clientId) ? options.clientId[0] : options.clientId;
|
|
15
|
+
if (primaryClientId) headers["authorization"] = "Basic " + base64.encode(`${primaryClientId}:${options.clientSecret ?? ""}`);
|
|
16
|
+
else headers["authorization"] = "Basic " + base64.encode(`:${options.clientSecret ?? ""}`);
|
|
17
|
+
} else {
|
|
18
|
+
const primaryClientId = Array.isArray(options.clientId) ? options.clientId[0] : options.clientId;
|
|
19
|
+
body.set("client_id", primaryClientId);
|
|
20
|
+
if (options.clientSecret) body.set("client_secret", options.clientSecret);
|
|
21
|
+
}
|
|
22
|
+
if (resource) if (typeof resource === "string") body.append("resource", resource);
|
|
23
|
+
else for (const _resource of resource) body.append("resource", _resource);
|
|
24
|
+
if (extraParams) for (const [key, value] of Object.entries(extraParams)) body.set(key, value);
|
|
25
|
+
return {
|
|
26
|
+
body,
|
|
27
|
+
headers
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
async function refreshAccessToken({ refreshToken, options, tokenEndpoint, authentication, extraParams }) {
|
|
31
|
+
const { body, headers } = createRefreshAccessTokenRequest({
|
|
32
|
+
refreshToken,
|
|
33
|
+
options,
|
|
34
|
+
authentication,
|
|
35
|
+
extraParams
|
|
36
|
+
});
|
|
37
|
+
const { data, error } = await betterFetch(tokenEndpoint, {
|
|
38
|
+
method: "POST",
|
|
39
|
+
body,
|
|
40
|
+
headers
|
|
41
|
+
});
|
|
42
|
+
if (error) throw error;
|
|
43
|
+
const tokens = {
|
|
44
|
+
accessToken: data.access_token,
|
|
45
|
+
refreshToken: data.refresh_token,
|
|
46
|
+
tokenType: data.token_type,
|
|
47
|
+
scopes: data.scope?.split(" "),
|
|
48
|
+
idToken: data.id_token
|
|
49
|
+
};
|
|
50
|
+
if (data.expires_in) {
|
|
51
|
+
const now = /* @__PURE__ */ new Date();
|
|
52
|
+
tokens.accessTokenExpiresAt = new Date(now.getTime() + data.expires_in * 1e3);
|
|
53
|
+
}
|
|
54
|
+
return tokens;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
//#endregion
|
|
58
|
+
export { createRefreshAccessTokenRequest, refreshAccessToken };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { OAuth2Tokens } from "./oauth-provider.mjs";
|
|
2
|
+
|
|
3
|
+
//#region src/oauth2/utils.d.ts
|
|
4
|
+
declare function getOAuth2Tokens(data: Record<string, any>): OAuth2Tokens;
|
|
5
|
+
declare function generateCodeChallenge(codeVerifier: string): Promise<string>;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { generateCodeChallenge, getOAuth2Tokens };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { base64Url } from "@better-auth/utils/base64";
|
|
2
|
+
|
|
3
|
+
//#region src/oauth2/utils.ts
|
|
4
|
+
function getOAuth2Tokens(data) {
|
|
5
|
+
const getDate = (seconds) => {
|
|
6
|
+
const now = /* @__PURE__ */ new Date();
|
|
7
|
+
return new Date(now.getTime() + seconds * 1e3);
|
|
8
|
+
};
|
|
9
|
+
return {
|
|
10
|
+
tokenType: data.token_type,
|
|
11
|
+
accessToken: data.access_token,
|
|
12
|
+
refreshToken: data.refresh_token,
|
|
13
|
+
accessTokenExpiresAt: data.expires_in ? getDate(data.expires_in) : void 0,
|
|
14
|
+
refreshTokenExpiresAt: data.refresh_token_expires_in ? getDate(data.refresh_token_expires_in) : void 0,
|
|
15
|
+
scopes: data?.scope ? typeof data.scope === "string" ? data.scope.split(" ") : data.scope : [],
|
|
16
|
+
idToken: data.id_token,
|
|
17
|
+
raw: data
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
async function generateCodeChallenge(codeVerifier) {
|
|
21
|
+
const data = new TextEncoder().encode(codeVerifier);
|
|
22
|
+
const hash = await crypto.subtle.digest("SHA-256", data);
|
|
23
|
+
return base64Url.encode(new Uint8Array(hash), { padding: false });
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
//#endregion
|
|
27
|
+
export { generateCodeChallenge, getOAuth2Tokens };
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { OAuth2Tokens, ProviderOptions } from "./oauth-provider.mjs";
|
|
2
|
+
import "./index.mjs";
|
|
3
|
+
import * as jose0 from "jose";
|
|
4
|
+
|
|
5
|
+
//#region src/oauth2/validate-authorization-code.d.ts
|
|
6
|
+
declare function createAuthorizationCodeRequest({
|
|
7
|
+
code,
|
|
8
|
+
codeVerifier,
|
|
9
|
+
redirectURI,
|
|
10
|
+
options,
|
|
11
|
+
authentication,
|
|
12
|
+
deviceId,
|
|
13
|
+
headers,
|
|
14
|
+
additionalParams,
|
|
15
|
+
resource
|
|
16
|
+
}: {
|
|
17
|
+
code: string;
|
|
18
|
+
redirectURI: string;
|
|
19
|
+
options: Partial<ProviderOptions>;
|
|
20
|
+
codeVerifier?: string | undefined;
|
|
21
|
+
deviceId?: string | undefined;
|
|
22
|
+
authentication?: ("basic" | "post") | undefined;
|
|
23
|
+
headers?: Record<string, string> | undefined;
|
|
24
|
+
additionalParams?: Record<string, string> | undefined;
|
|
25
|
+
resource?: (string | string[]) | undefined;
|
|
26
|
+
}): {
|
|
27
|
+
body: URLSearchParams;
|
|
28
|
+
headers: Record<string, any>;
|
|
29
|
+
};
|
|
30
|
+
declare function validateAuthorizationCode({
|
|
31
|
+
code,
|
|
32
|
+
codeVerifier,
|
|
33
|
+
redirectURI,
|
|
34
|
+
options,
|
|
35
|
+
tokenEndpoint,
|
|
36
|
+
authentication,
|
|
37
|
+
deviceId,
|
|
38
|
+
headers,
|
|
39
|
+
additionalParams,
|
|
40
|
+
resource
|
|
41
|
+
}: {
|
|
42
|
+
code: string;
|
|
43
|
+
redirectURI: string;
|
|
44
|
+
options: Partial<ProviderOptions>;
|
|
45
|
+
codeVerifier?: string | undefined;
|
|
46
|
+
deviceId?: string | undefined;
|
|
47
|
+
tokenEndpoint: string;
|
|
48
|
+
authentication?: ("basic" | "post") | undefined;
|
|
49
|
+
headers?: Record<string, string> | undefined;
|
|
50
|
+
additionalParams?: Record<string, string> | undefined;
|
|
51
|
+
resource?: (string | string[]) | undefined;
|
|
52
|
+
}): Promise<OAuth2Tokens>;
|
|
53
|
+
declare function validateToken(token: string, jwksEndpoint: string): Promise<jose0.JWTVerifyResult<jose0.JWTPayload>>;
|
|
54
|
+
//#endregion
|
|
55
|
+
export { createAuthorizationCodeRequest, validateAuthorizationCode, validateToken };
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { getOAuth2Tokens } from "./utils.mjs";
|
|
2
|
+
import "./index.mjs";
|
|
3
|
+
import { base64 } from "@better-auth/utils/base64";
|
|
4
|
+
import { betterFetch } from "@better-fetch/fetch";
|
|
5
|
+
import { jwtVerify } from "jose";
|
|
6
|
+
|
|
7
|
+
//#region src/oauth2/validate-authorization-code.ts
|
|
8
|
+
function createAuthorizationCodeRequest({ code, codeVerifier, redirectURI, options, authentication, deviceId, headers, additionalParams = {}, resource }) {
|
|
9
|
+
const body = new URLSearchParams();
|
|
10
|
+
const requestHeaders = {
|
|
11
|
+
"content-type": "application/x-www-form-urlencoded",
|
|
12
|
+
accept: "application/json",
|
|
13
|
+
...headers
|
|
14
|
+
};
|
|
15
|
+
body.set("grant_type", "authorization_code");
|
|
16
|
+
body.set("code", code);
|
|
17
|
+
codeVerifier && body.set("code_verifier", codeVerifier);
|
|
18
|
+
options.clientKey && body.set("client_key", options.clientKey);
|
|
19
|
+
deviceId && body.set("device_id", deviceId);
|
|
20
|
+
body.set("redirect_uri", options.redirectURI || redirectURI);
|
|
21
|
+
if (resource) if (typeof resource === "string") body.append("resource", resource);
|
|
22
|
+
else for (const _resource of resource) body.append("resource", _resource);
|
|
23
|
+
if (authentication === "basic") {
|
|
24
|
+
const primaryClientId = Array.isArray(options.clientId) ? options.clientId[0] : options.clientId;
|
|
25
|
+
requestHeaders["authorization"] = `Basic ${base64.encode(`${primaryClientId}:${options.clientSecret ?? ""}`)}`;
|
|
26
|
+
} else {
|
|
27
|
+
const primaryClientId = Array.isArray(options.clientId) ? options.clientId[0] : options.clientId;
|
|
28
|
+
body.set("client_id", primaryClientId);
|
|
29
|
+
if (options.clientSecret) body.set("client_secret", options.clientSecret);
|
|
30
|
+
}
|
|
31
|
+
for (const [key, value] of Object.entries(additionalParams)) if (!body.has(key)) body.append(key, value);
|
|
32
|
+
return {
|
|
33
|
+
body,
|
|
34
|
+
headers: requestHeaders
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
async function validateAuthorizationCode({ code, codeVerifier, redirectURI, options, tokenEndpoint, authentication, deviceId, headers, additionalParams = {}, resource }) {
|
|
38
|
+
const { body, headers: requestHeaders } = createAuthorizationCodeRequest({
|
|
39
|
+
code,
|
|
40
|
+
codeVerifier,
|
|
41
|
+
redirectURI,
|
|
42
|
+
options,
|
|
43
|
+
authentication,
|
|
44
|
+
deviceId,
|
|
45
|
+
headers,
|
|
46
|
+
additionalParams,
|
|
47
|
+
resource
|
|
48
|
+
});
|
|
49
|
+
const { data, error } = await betterFetch(tokenEndpoint, {
|
|
50
|
+
method: "POST",
|
|
51
|
+
body,
|
|
52
|
+
headers: requestHeaders
|
|
53
|
+
});
|
|
54
|
+
if (error) throw error;
|
|
55
|
+
return getOAuth2Tokens(data);
|
|
56
|
+
}
|
|
57
|
+
async function validateToken(token, jwksEndpoint) {
|
|
58
|
+
const { data, error } = await betterFetch(jwksEndpoint, {
|
|
59
|
+
method: "GET",
|
|
60
|
+
headers: { accept: "application/json" }
|
|
61
|
+
});
|
|
62
|
+
if (error) throw error;
|
|
63
|
+
const keys = data["keys"];
|
|
64
|
+
const header = JSON.parse(atob(token.split(".")[0]));
|
|
65
|
+
const key = keys.find((key$1) => key$1.kid === header.kid);
|
|
66
|
+
if (!key) throw new Error("Key not found");
|
|
67
|
+
return await jwtVerify(token, key);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
//#endregion
|
|
71
|
+
export { createAuthorizationCodeRequest, validateAuthorizationCode, validateToken };
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { JSONWebKeySet, JWTPayload, JWTVerifyOptions } from "jose";
|
|
2
|
+
|
|
3
|
+
//#region src/oauth2/verify.d.ts
|
|
4
|
+
interface VerifyAccessTokenRemote {
|
|
5
|
+
/** Full url of the introspect endpoint. Should end with `/oauth2/introspect` */
|
|
6
|
+
introspectUrl: string;
|
|
7
|
+
/** Client Secret */
|
|
8
|
+
clientId: string;
|
|
9
|
+
/** Client Secret */
|
|
10
|
+
clientSecret: string;
|
|
11
|
+
/**
|
|
12
|
+
* Forces remote verification of a token.
|
|
13
|
+
* This ensures attached session (if applicable)
|
|
14
|
+
* is also still active.
|
|
15
|
+
*/
|
|
16
|
+
force?: boolean;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Performs local verification of an access token for your APIs.
|
|
20
|
+
*
|
|
21
|
+
* Can also be configured for remote verification.
|
|
22
|
+
*/
|
|
23
|
+
declare function verifyJwsAccessToken(token: string, opts: {
|
|
24
|
+
/** Jwks url or promise of a Jwks */
|
|
25
|
+
jwksFetch: string | (() => Promise<JSONWebKeySet | undefined>);
|
|
26
|
+
/** Verify options */
|
|
27
|
+
verifyOptions: JWTVerifyOptions & Required<Pick<JWTVerifyOptions, "audience" | "issuer">>;
|
|
28
|
+
}): Promise<JWTPayload>;
|
|
29
|
+
declare function getJwks(token: string, opts: {
|
|
30
|
+
/** Jwks url or promise of a Jwks */
|
|
31
|
+
jwksFetch: string | (() => Promise<JSONWebKeySet | undefined>);
|
|
32
|
+
}): Promise<JSONWebKeySet>;
|
|
33
|
+
/**
|
|
34
|
+
* Performs local verification of an access token for your API.
|
|
35
|
+
*
|
|
36
|
+
* Can also be configured for remote verification.
|
|
37
|
+
*/
|
|
38
|
+
declare function verifyAccessToken(token: string, opts: {
|
|
39
|
+
/** Verify options */
|
|
40
|
+
verifyOptions: JWTVerifyOptions & Required<Pick<JWTVerifyOptions, "audience" | "issuer">>;
|
|
41
|
+
/** Scopes to additionally verify. Token must include all but not exact. */
|
|
42
|
+
scopes?: string[];
|
|
43
|
+
/** Required to verify access token locally */
|
|
44
|
+
jwksUrl?: string;
|
|
45
|
+
/** If provided, can verify a token remotely */
|
|
46
|
+
remoteVerify?: VerifyAccessTokenRemote;
|
|
47
|
+
}): Promise<JWTPayload>;
|
|
48
|
+
//#endregion
|
|
49
|
+
export { getJwks, verifyAccessToken, verifyJwsAccessToken };
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { logger } from "../env/logger.mjs";
|
|
2
|
+
import "../env/index.mjs";
|
|
3
|
+
import { betterFetch } from "@better-fetch/fetch";
|
|
4
|
+
import { UnsecuredJWT, createLocalJWKSet, decodeProtectedHeader, jwtVerify } from "jose";
|
|
5
|
+
import { APIError } from "better-call";
|
|
6
|
+
|
|
7
|
+
//#region src/oauth2/verify.ts
|
|
8
|
+
/** Last fetched jwks used locally in getJwks @internal */
|
|
9
|
+
let jwks;
|
|
10
|
+
/**
|
|
11
|
+
* Performs local verification of an access token for your APIs.
|
|
12
|
+
*
|
|
13
|
+
* Can also be configured for remote verification.
|
|
14
|
+
*/
|
|
15
|
+
async function verifyJwsAccessToken(token, opts) {
|
|
16
|
+
try {
|
|
17
|
+
const jwt = await jwtVerify(token, createLocalJWKSet(await getJwks(token, opts)), opts.verifyOptions);
|
|
18
|
+
if (jwt.payload.azp) jwt.payload.client_id = jwt.payload.azp;
|
|
19
|
+
return jwt.payload;
|
|
20
|
+
} catch (error) {
|
|
21
|
+
if (error instanceof Error) throw error;
|
|
22
|
+
throw new Error(error);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
async function getJwks(token, opts) {
|
|
26
|
+
let jwtHeaders;
|
|
27
|
+
try {
|
|
28
|
+
jwtHeaders = decodeProtectedHeader(token);
|
|
29
|
+
} catch (error) {
|
|
30
|
+
if (error instanceof Error) throw error;
|
|
31
|
+
throw new Error(error);
|
|
32
|
+
}
|
|
33
|
+
if (!jwtHeaders.kid) throw new Error("Missing jwt kid");
|
|
34
|
+
if (!jwks || !jwks.keys.find((jwk) => jwk.kid === jwtHeaders.kid)) {
|
|
35
|
+
jwks = typeof opts.jwksFetch === "string" ? await betterFetch(opts.jwksFetch, { headers: { Accept: "application/json" } }).then(async (res) => {
|
|
36
|
+
if (res.error) throw new Error(`Jwks failed: ${res.error.message ?? res.error.statusText}`);
|
|
37
|
+
return res.data;
|
|
38
|
+
}) : await opts.jwksFetch();
|
|
39
|
+
if (!jwks) throw new Error("No jwks found");
|
|
40
|
+
}
|
|
41
|
+
return jwks;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Performs local verification of an access token for your API.
|
|
45
|
+
*
|
|
46
|
+
* Can also be configured for remote verification.
|
|
47
|
+
*/
|
|
48
|
+
async function verifyAccessToken(token, opts) {
|
|
49
|
+
let payload;
|
|
50
|
+
if (opts.jwksUrl && !opts?.remoteVerify?.force) try {
|
|
51
|
+
payload = await verifyJwsAccessToken(token, {
|
|
52
|
+
jwksFetch: opts.jwksUrl,
|
|
53
|
+
verifyOptions: opts.verifyOptions
|
|
54
|
+
});
|
|
55
|
+
} catch (error) {
|
|
56
|
+
if (error instanceof Error) if (error.name === "TypeError" || error.name === "JWSInvalid") {} else if (error.name === "JWTExpired") throw new APIError("UNAUTHORIZED", { message: "token expired" });
|
|
57
|
+
else if (error.name === "JWTInvalid") throw new APIError("UNAUTHORIZED", { message: "token invalid" });
|
|
58
|
+
else throw error;
|
|
59
|
+
else throw new Error(error);
|
|
60
|
+
}
|
|
61
|
+
if (opts?.remoteVerify) {
|
|
62
|
+
const { data: introspect, error: introspectError } = await betterFetch(opts.remoteVerify.introspectUrl, {
|
|
63
|
+
method: "POST",
|
|
64
|
+
headers: {
|
|
65
|
+
Accept: "application/json",
|
|
66
|
+
"Content-Type": "application/x-www-form-urlencoded"
|
|
67
|
+
},
|
|
68
|
+
body: new URLSearchParams({
|
|
69
|
+
client_id: opts.remoteVerify.clientId,
|
|
70
|
+
client_secret: opts.remoteVerify.clientSecret,
|
|
71
|
+
token,
|
|
72
|
+
token_type_hint: "access_token"
|
|
73
|
+
}).toString()
|
|
74
|
+
});
|
|
75
|
+
if (introspectError) logger.error(`Introspection failed: ${introspectError.message ?? introspectError.statusText}`);
|
|
76
|
+
if (!introspect) throw new APIError("INTERNAL_SERVER_ERROR", { message: "introspection failed" });
|
|
77
|
+
if (!introspect.active) throw new APIError("UNAUTHORIZED", { message: "token inactive" });
|
|
78
|
+
try {
|
|
79
|
+
const unsecuredJwt = new UnsecuredJWT(introspect).encode();
|
|
80
|
+
const { audience: _audience, ...verifyOptions } = opts.verifyOptions;
|
|
81
|
+
payload = (introspect.aud ? UnsecuredJWT.decode(unsecuredJwt, opts.verifyOptions) : UnsecuredJWT.decode(unsecuredJwt, verifyOptions)).payload;
|
|
82
|
+
} catch (error) {
|
|
83
|
+
throw new Error(error);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
if (!payload) throw new APIError("UNAUTHORIZED", { message: `no token payload` });
|
|
87
|
+
if (opts.scopes) {
|
|
88
|
+
const validScopes = new Set(payload.scope?.split(" "));
|
|
89
|
+
for (const sc of opts.scopes) if (!validScopes.has(sc)) throw new APIError("FORBIDDEN", { message: `invalid scope ${sc}` });
|
|
90
|
+
}
|
|
91
|
+
return payload;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
//#endregion
|
|
95
|
+
export { getJwks, verifyAccessToken, verifyJwsAccessToken };
|