@better-auth/core 1.3.27 → 1.3.29

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.
Files changed (121) hide show
  1. package/.turbo/turbo-build.log +54 -4
  2. package/build.config.ts +6 -0
  3. package/dist/db/adapter/index.d.cts +13 -23
  4. package/dist/db/adapter/index.d.mts +13 -23
  5. package/dist/db/adapter/index.d.ts +13 -23
  6. package/dist/db/index.cjs +16 -0
  7. package/dist/db/index.d.cts +6 -83
  8. package/dist/db/index.d.mts +6 -83
  9. package/dist/db/index.d.ts +6 -83
  10. package/dist/db/index.mjs +16 -1
  11. package/dist/env/index.cjs +312 -0
  12. package/dist/env/index.d.cts +36 -0
  13. package/dist/env/index.d.mts +36 -0
  14. package/dist/env/index.d.ts +36 -0
  15. package/dist/env/index.mjs +297 -0
  16. package/dist/error/index.cjs +44 -0
  17. package/dist/error/index.d.cts +33 -0
  18. package/dist/error/index.d.mts +33 -0
  19. package/dist/error/index.d.ts +33 -0
  20. package/dist/error/index.mjs +41 -0
  21. package/dist/index.d.cts +156 -101
  22. package/dist/index.d.mts +156 -101
  23. package/dist/index.d.ts +156 -101
  24. package/dist/middleware/index.cjs +25 -0
  25. package/dist/middleware/index.d.cts +13 -0
  26. package/dist/middleware/index.d.mts +13 -0
  27. package/dist/middleware/index.d.ts +13 -0
  28. package/dist/middleware/index.mjs +21 -0
  29. package/dist/oauth2/index.cjs +368 -0
  30. package/dist/oauth2/index.d.cts +100 -0
  31. package/dist/oauth2/index.d.mts +100 -0
  32. package/dist/oauth2/index.d.ts +100 -0
  33. package/dist/oauth2/index.mjs +357 -0
  34. package/dist/shared/core.Bl6TpxyD.d.mts +181 -0
  35. package/dist/shared/core.Bqe5IGAi.d.ts +13 -0
  36. package/dist/shared/core.Bshk2o_x.d.ts +1721 -0
  37. package/dist/shared/core.BwoNUcJQ.d.cts +53 -0
  38. package/dist/shared/core.BwoNUcJQ.d.mts +53 -0
  39. package/dist/shared/core.BwoNUcJQ.d.ts +53 -0
  40. package/dist/shared/core.C6_2xGyf.d.mts +1721 -0
  41. package/dist/shared/{core.CnvFgghY.d.cts → core.CajxAutx.d.cts} +27 -1
  42. package/dist/shared/{core.CnvFgghY.d.mts → core.CajxAutx.d.mts} +27 -1
  43. package/dist/shared/{core.CnvFgghY.d.ts → core.CajxAutx.d.ts} +27 -1
  44. package/dist/shared/core.CfqdiZTu.d.cts +1721 -0
  45. package/dist/shared/core.DkdZ1o38.d.ts +181 -0
  46. package/dist/shared/core.Dl-70uns.d.cts +84 -0
  47. package/dist/shared/core.Dl-70uns.d.mts +84 -0
  48. package/dist/shared/core.Dl-70uns.d.ts +84 -0
  49. package/dist/shared/core.DyEdx0m7.d.cts +181 -0
  50. package/dist/shared/core.E9DfzGLz.d.mts +13 -0
  51. package/dist/shared/core.HqYn20Fi.d.cts +13 -0
  52. package/dist/social-providers/index.cjs +2793 -0
  53. package/dist/social-providers/index.d.cts +3903 -0
  54. package/dist/social-providers/index.d.mts +3903 -0
  55. package/dist/social-providers/index.d.ts +3903 -0
  56. package/dist/social-providers/index.mjs +2743 -0
  57. package/dist/utils/index.cjs +7 -0
  58. package/dist/utils/index.d.cts +10 -0
  59. package/dist/utils/index.d.mts +10 -0
  60. package/dist/utils/index.d.ts +10 -0
  61. package/dist/utils/index.mjs +5 -0
  62. package/package.json +98 -2
  63. package/src/db/adapter/index.ts +424 -0
  64. package/src/db/index.ts +2 -0
  65. package/src/db/schema/rate-limit.ts +21 -0
  66. package/src/db/type.ts +28 -0
  67. package/src/env/color-depth.ts +172 -0
  68. package/src/env/env-impl.ts +124 -0
  69. package/src/env/index.ts +23 -0
  70. package/src/env/logger.test.ts +33 -0
  71. package/src/env/logger.ts +145 -0
  72. package/src/error/codes.ts +31 -0
  73. package/src/error/index.ts +11 -0
  74. package/src/index.ts +0 -2
  75. package/src/middleware/index.ts +33 -0
  76. package/src/oauth2/client-credentials-token.ts +102 -0
  77. package/src/oauth2/create-authorization-url.ts +85 -0
  78. package/src/oauth2/index.ts +22 -0
  79. package/src/oauth2/oauth-provider.ts +194 -0
  80. package/src/oauth2/refresh-access-token.ts +124 -0
  81. package/src/oauth2/utils.ts +36 -0
  82. package/src/oauth2/validate-authorization-code.ts +156 -0
  83. package/src/social-providers/apple.ts +213 -0
  84. package/src/social-providers/atlassian.ts +130 -0
  85. package/src/social-providers/cognito.ts +269 -0
  86. package/src/social-providers/discord.ts +172 -0
  87. package/src/social-providers/dropbox.ts +112 -0
  88. package/src/social-providers/facebook.ts +204 -0
  89. package/src/social-providers/figma.ts +115 -0
  90. package/src/social-providers/github.ts +154 -0
  91. package/src/social-providers/gitlab.ts +152 -0
  92. package/src/social-providers/google.ts +171 -0
  93. package/src/social-providers/huggingface.ts +116 -0
  94. package/src/social-providers/index.ts +118 -0
  95. package/src/social-providers/kakao.ts +178 -0
  96. package/src/social-providers/kick.ts +95 -0
  97. package/src/social-providers/line.ts +169 -0
  98. package/src/social-providers/linear.ts +120 -0
  99. package/src/social-providers/linkedin.ts +110 -0
  100. package/src/social-providers/microsoft-entra-id.ts +243 -0
  101. package/src/social-providers/naver.ts +112 -0
  102. package/src/social-providers/notion.ts +106 -0
  103. package/src/social-providers/paypal.ts +261 -0
  104. package/src/social-providers/reddit.ts +122 -0
  105. package/src/social-providers/roblox.ts +110 -0
  106. package/src/social-providers/salesforce.ts +157 -0
  107. package/src/social-providers/slack.ts +114 -0
  108. package/src/social-providers/spotify.ts +93 -0
  109. package/src/social-providers/tiktok.ts +211 -0
  110. package/src/social-providers/twitch.ts +111 -0
  111. package/src/social-providers/twitter.ts +194 -0
  112. package/src/social-providers/vk.ts +128 -0
  113. package/src/social-providers/zoom.ts +218 -0
  114. package/src/types/context.ts +334 -0
  115. package/src/types/cookie.ts +7 -0
  116. package/src/types/index.ts +19 -1
  117. package/src/types/init-options.ts +1048 -2
  118. package/src/types/plugin-client.ts +69 -0
  119. package/src/types/plugin.ts +134 -0
  120. package/src/utils/error-codes.ts +51 -0
  121. package/src/utils/index.ts +1 -0
@@ -0,0 +1,213 @@
1
+ import { betterFetch } from "@better-fetch/fetch";
2
+ import { APIError } from "better-call";
3
+ import { decodeJwt, decodeProtectedHeader, importJWK, jwtVerify } from "jose";
4
+ import type { OAuthProvider, ProviderOptions } from "@better-auth/core/oauth2";
5
+ import {
6
+ refreshAccessToken,
7
+ createAuthorizationURL,
8
+ validateAuthorizationCode,
9
+ } from "@better-auth/core/oauth2";
10
+ export interface AppleProfile {
11
+ /**
12
+ * The subject registered claim identifies the principal that’s the subject
13
+ * of the identity token. Because this token is for your app, the value is
14
+ * the unique identifier for the user.
15
+ */
16
+ sub: string;
17
+ /**
18
+ * A String value representing the user's email address.
19
+ * The email address is either the user's real email address or the proxy
20
+ * address, depending on their status private email relay service.
21
+ */
22
+ email: string;
23
+ /**
24
+ * A string or Boolean value that indicates whether the service verifies
25
+ * the email. The value can either be a string ("true" or "false") or a
26
+ * Boolean (true or false). The system may not verify email addresses for
27
+ * Sign in with Apple at Work & School users, and this claim is "false" or
28
+ * false for those users.
29
+ */
30
+ email_verified: true | "true";
31
+ /**
32
+ * A string or Boolean value that indicates whether the email that the user
33
+ * shares is the proxy address. The value can either be a string ("true" or
34
+ * "false") or a Boolean (true or false).
35
+ */
36
+ is_private_email: boolean;
37
+ /**
38
+ * An Integer value that indicates whether the user appears to be a real
39
+ * person. Use the value of this claim to mitigate fraud. The possible
40
+ * values are: 0 (or Unsupported), 1 (or Unknown), 2 (or LikelyReal). For
41
+ * more information, see ASUserDetectionStatus. This claim is present only
42
+ * in iOS 14 and later, macOS 11 and later, watchOS 7 and later, tvOS 14
43
+ * and later. The claim isn’t present or supported for web-based apps.
44
+ */
45
+ real_user_status: number;
46
+ /**
47
+ * The user’s full name in the format provided during the authorization
48
+ * process.
49
+ */
50
+ name: string;
51
+ /**
52
+ * The URL to the user's profile picture.
53
+ */
54
+ picture: string;
55
+ user?: AppleNonConformUser;
56
+ }
57
+
58
+ /**
59
+ * This is the shape of the `user` query parameter that Apple sends the first
60
+ * time the user consents to the app.
61
+ * @see https://developer.apple.com/documentation/signinwithapplerestapi/request-an-authorization-to-the-sign-in-with-apple-server./
62
+ */
63
+ export interface AppleNonConformUser {
64
+ name: {
65
+ firstName: string;
66
+ lastName: string;
67
+ };
68
+ email: string;
69
+ }
70
+
71
+ export interface AppleOptions extends ProviderOptions<AppleProfile> {
72
+ clientId: string;
73
+ appBundleIdentifier?: string;
74
+ audience?: string | string[];
75
+ }
76
+
77
+ export const apple = (options: AppleOptions) => {
78
+ const tokenEndpoint = "https://appleid.apple.com/auth/token";
79
+ return {
80
+ id: "apple",
81
+ name: "Apple",
82
+ async createAuthorizationURL({ state, scopes, redirectURI }) {
83
+ const _scope = options.disableDefaultScope ? [] : ["email", "name"];
84
+ options.scope && _scope.push(...options.scope);
85
+ scopes && _scope.push(...scopes);
86
+ const url = await createAuthorizationURL({
87
+ id: "apple",
88
+ options,
89
+ authorizationEndpoint: "https://appleid.apple.com/auth/authorize",
90
+ scopes: _scope,
91
+ state,
92
+ redirectURI,
93
+ responseMode: "form_post",
94
+ responseType: "code id_token",
95
+ });
96
+ return url;
97
+ },
98
+ validateAuthorizationCode: async ({ code, codeVerifier, redirectURI }) => {
99
+ return validateAuthorizationCode({
100
+ code,
101
+ codeVerifier,
102
+ redirectURI,
103
+ options,
104
+ tokenEndpoint,
105
+ });
106
+ },
107
+ async verifyIdToken(token, nonce) {
108
+ if (options.disableIdTokenSignIn) {
109
+ return false;
110
+ }
111
+ if (options.verifyIdToken) {
112
+ return options.verifyIdToken(token, nonce);
113
+ }
114
+ const decodedHeader = decodeProtectedHeader(token);
115
+ const { kid, alg: jwtAlg } = decodedHeader;
116
+ if (!kid || !jwtAlg) return false;
117
+ const publicKey = await getApplePublicKey(kid);
118
+ const { payload: jwtClaims } = await jwtVerify(token, publicKey, {
119
+ algorithms: [jwtAlg],
120
+ issuer: "https://appleid.apple.com",
121
+ audience:
122
+ options.audience && options.audience.length
123
+ ? options.audience
124
+ : options.appBundleIdentifier
125
+ ? options.appBundleIdentifier
126
+ : options.clientId,
127
+ maxTokenAge: "1h",
128
+ });
129
+ ["email_verified", "is_private_email"].forEach((field) => {
130
+ if (jwtClaims[field] !== undefined) {
131
+ jwtClaims[field] = Boolean(jwtClaims[field]);
132
+ }
133
+ });
134
+ if (nonce && jwtClaims.nonce !== nonce) {
135
+ return false;
136
+ }
137
+ return !!jwtClaims;
138
+ },
139
+ refreshAccessToken: options.refreshAccessToken
140
+ ? options.refreshAccessToken
141
+ : async (refreshToken) => {
142
+ return refreshAccessToken({
143
+ refreshToken,
144
+ options: {
145
+ clientId: options.clientId,
146
+ clientKey: options.clientKey,
147
+ clientSecret: options.clientSecret,
148
+ },
149
+ tokenEndpoint: "https://appleid.apple.com/auth/token",
150
+ });
151
+ },
152
+ async getUserInfo(token) {
153
+ if (options.getUserInfo) {
154
+ return options.getUserInfo(token);
155
+ }
156
+ if (!token.idToken) {
157
+ return null;
158
+ }
159
+ const profile = decodeJwt<AppleProfile>(token.idToken);
160
+ if (!profile) {
161
+ return null;
162
+ }
163
+ const name = token.user
164
+ ? `${token.user.name?.firstName} ${token.user.name?.lastName}`
165
+ : profile.name || profile.email;
166
+ const emailVerified =
167
+ typeof profile.email_verified === "boolean"
168
+ ? profile.email_verified
169
+ : profile.email_verified === "true";
170
+ const enrichedProfile = {
171
+ ...profile,
172
+ name,
173
+ };
174
+ const userMap = await options.mapProfileToUser?.(enrichedProfile);
175
+ return {
176
+ user: {
177
+ id: profile.sub,
178
+ name: enrichedProfile.name,
179
+ emailVerified: emailVerified,
180
+ email: profile.email,
181
+ ...userMap,
182
+ },
183
+ data: enrichedProfile,
184
+ };
185
+ },
186
+ options,
187
+ } satisfies OAuthProvider<AppleProfile>;
188
+ };
189
+
190
+ export const getApplePublicKey = async (kid: string) => {
191
+ const APPLE_BASE_URL = "https://appleid.apple.com";
192
+ const JWKS_APPLE_URI = "/auth/keys";
193
+ const { data } = await betterFetch<{
194
+ keys: Array<{
195
+ kid: string;
196
+ alg: string;
197
+ kty: string;
198
+ use: string;
199
+ n: string;
200
+ e: string;
201
+ }>;
202
+ }>(`${APPLE_BASE_URL}${JWKS_APPLE_URI}`);
203
+ if (!data?.keys) {
204
+ throw new APIError("BAD_REQUEST", {
205
+ message: "Keys not found",
206
+ });
207
+ }
208
+ const jwk = data.keys.find((key) => key.kid === kid);
209
+ if (!jwk) {
210
+ throw new Error(`JWK with kid ${kid} not found`);
211
+ }
212
+ return await importJWK(jwk, jwk.alg);
213
+ };
@@ -0,0 +1,130 @@
1
+ import { betterFetch } from "@better-fetch/fetch";
2
+ import { BetterAuthError } from "../error";
3
+ import type { OAuthProvider, ProviderOptions } from "@better-auth/core/oauth2";
4
+ import {
5
+ createAuthorizationURL,
6
+ validateAuthorizationCode,
7
+ } from "@better-auth/core/oauth2";
8
+ import { logger } from "@better-auth/core/env";
9
+ import { refreshAccessToken } from "@better-auth/core/oauth2";
10
+
11
+ export interface AtlassianProfile {
12
+ account_type?: string;
13
+ account_id: string;
14
+ email?: string;
15
+ name: string;
16
+ picture?: string;
17
+ nickname?: string;
18
+ locale?: string;
19
+ extended_profile?: {
20
+ job_title?: string;
21
+ organization?: string;
22
+ department?: string;
23
+ location?: string;
24
+ };
25
+ }
26
+ export interface AtlassianOptions extends ProviderOptions<AtlassianProfile> {
27
+ clientId: string;
28
+ }
29
+
30
+ export const atlassian = (options: AtlassianOptions) => {
31
+ return {
32
+ id: "atlassian",
33
+ name: "Atlassian",
34
+
35
+ async createAuthorizationURL({ state, scopes, codeVerifier, redirectURI }) {
36
+ if (!options.clientId || !options.clientSecret) {
37
+ logger.error("Client Id and Secret are required for Atlassian");
38
+ throw new BetterAuthError("CLIENT_ID_AND_SECRET_REQUIRED");
39
+ }
40
+ if (!codeVerifier) {
41
+ throw new BetterAuthError("codeVerifier is required for Atlassian");
42
+ }
43
+
44
+ const _scopes = options.disableDefaultScope
45
+ ? []
46
+ : ["read:jira-user", "offline_access"];
47
+ options.scope && _scopes.push(...options.scope);
48
+ scopes && _scopes.push(...scopes);
49
+
50
+ return createAuthorizationURL({
51
+ id: "atlassian",
52
+ options,
53
+ authorizationEndpoint: "https://auth.atlassian.com/authorize",
54
+ scopes: _scopes,
55
+ state,
56
+ codeVerifier,
57
+ redirectURI,
58
+ additionalParams: {
59
+ audience: "api.atlassian.com",
60
+ },
61
+ prompt: options.prompt,
62
+ });
63
+ },
64
+
65
+ validateAuthorizationCode: async ({ code, codeVerifier, redirectURI }) => {
66
+ return validateAuthorizationCode({
67
+ code,
68
+ codeVerifier,
69
+ redirectURI,
70
+ options,
71
+ tokenEndpoint: "https://auth.atlassian.com/oauth/token",
72
+ });
73
+ },
74
+
75
+ refreshAccessToken: options.refreshAccessToken
76
+ ? options.refreshAccessToken
77
+ : async (refreshToken) => {
78
+ return refreshAccessToken({
79
+ refreshToken,
80
+ options: {
81
+ clientId: options.clientId,
82
+ clientSecret: options.clientSecret,
83
+ },
84
+ tokenEndpoint: "https://auth.atlassian.com/oauth/token",
85
+ });
86
+ },
87
+
88
+ async getUserInfo(token) {
89
+ if (options.getUserInfo) {
90
+ return options.getUserInfo(token);
91
+ }
92
+
93
+ if (!token.accessToken) {
94
+ return null;
95
+ }
96
+
97
+ try {
98
+ const { data: profile } = await betterFetch<{
99
+ account_id: string;
100
+ name: string;
101
+ email?: string;
102
+ picture?: string;
103
+ }>("https://api.atlassian.com/me", {
104
+ headers: { Authorization: `Bearer ${token.accessToken}` },
105
+ });
106
+
107
+ if (!profile) return null;
108
+
109
+ const userMap = await options.mapProfileToUser?.(profile);
110
+
111
+ return {
112
+ user: {
113
+ id: profile.account_id,
114
+ name: profile.name,
115
+ email: profile.email,
116
+ image: profile.picture,
117
+ emailVerified: false,
118
+ ...userMap,
119
+ },
120
+ data: profile,
121
+ };
122
+ } catch (error) {
123
+ logger.error("Failed to fetch user info from Figma:", error);
124
+ return null;
125
+ }
126
+ },
127
+
128
+ options,
129
+ } satisfies OAuthProvider<AtlassianProfile>;
130
+ };
@@ -0,0 +1,269 @@
1
+ import { betterFetch } from "@better-fetch/fetch";
2
+ import { decodeJwt, decodeProtectedHeader, importJWK, jwtVerify } from "jose";
3
+ import { BetterAuthError } from "../error";
4
+ import type { OAuthProvider, ProviderOptions } from "@better-auth/core/oauth2";
5
+ import {
6
+ createAuthorizationURL,
7
+ validateAuthorizationCode,
8
+ } from "@better-auth/core/oauth2";
9
+ import { logger } from "@better-auth/core/env";
10
+ import { refreshAccessToken } from "@better-auth/core/oauth2";
11
+ import { APIError } from "better-call";
12
+
13
+ export interface CognitoProfile {
14
+ sub: string;
15
+ email: string;
16
+ email_verified: boolean;
17
+ name: string;
18
+ given_name?: string;
19
+ family_name?: string;
20
+ picture?: string;
21
+ username?: string;
22
+ locale?: string;
23
+ phone_number?: string;
24
+ phone_number_verified?: boolean;
25
+ aud: string;
26
+ iss: string;
27
+ exp: number;
28
+ iat: number;
29
+ // Custom attributes from Cognito can be added here
30
+ [key: string]: any;
31
+ }
32
+
33
+ export interface CognitoOptions extends ProviderOptions<CognitoProfile> {
34
+ clientId: string;
35
+ /**
36
+ * The Cognito domain (e.g., "your-app.auth.us-east-1.amazoncognito.com")
37
+ */
38
+ domain: string;
39
+ /**
40
+ * AWS region where User Pool is hosted (e.g., "us-east-1")
41
+ */
42
+ region: string;
43
+ userPoolId: string;
44
+ requireClientSecret?: boolean;
45
+ }
46
+
47
+ export const cognito = (options: CognitoOptions) => {
48
+ if (!options.domain || !options.region || !options.userPoolId) {
49
+ logger.error(
50
+ "Domain, region and userPoolId are required for Amazon Cognito. Make sure to provide them in the options.",
51
+ );
52
+ throw new BetterAuthError("DOMAIN_AND_REGION_REQUIRED");
53
+ }
54
+
55
+ const cleanDomain = options.domain.replace(/^https?:\/\//, "");
56
+ const authorizationEndpoint = `https://${cleanDomain}/oauth2/authorize`;
57
+ const tokenEndpoint = `https://${cleanDomain}/oauth2/token`;
58
+ const userInfoEndpoint = `https://${cleanDomain}/oauth2/userinfo`;
59
+
60
+ return {
61
+ id: "cognito",
62
+ name: "Cognito",
63
+ async createAuthorizationURL({ state, scopes, codeVerifier, redirectURI }) {
64
+ if (!options.clientId) {
65
+ logger.error(
66
+ "ClientId is required for Amazon Cognito. Make sure to provide them in the options.",
67
+ );
68
+ throw new BetterAuthError("CLIENT_ID_AND_SECRET_REQUIRED");
69
+ }
70
+
71
+ if (options.requireClientSecret && !options.clientSecret) {
72
+ logger.error(
73
+ "Client Secret is required when requireClientSecret is true. Make sure to provide it in the options.",
74
+ );
75
+ throw new BetterAuthError("CLIENT_SECRET_REQUIRED");
76
+ }
77
+ const _scopes = options.disableDefaultScope
78
+ ? []
79
+ : ["openid", "profile", "email"];
80
+ options.scope && _scopes.push(...options.scope);
81
+ scopes && _scopes.push(...scopes);
82
+
83
+ const url = await createAuthorizationURL({
84
+ id: "cognito",
85
+ options: {
86
+ ...options,
87
+ },
88
+ authorizationEndpoint,
89
+ scopes: _scopes,
90
+ state,
91
+ codeVerifier,
92
+ redirectURI,
93
+ prompt: options.prompt,
94
+ });
95
+ return url;
96
+ },
97
+
98
+ validateAuthorizationCode: async ({ code, codeVerifier, redirectURI }) => {
99
+ return validateAuthorizationCode({
100
+ code,
101
+ codeVerifier,
102
+ redirectURI,
103
+ options,
104
+ tokenEndpoint,
105
+ });
106
+ },
107
+
108
+ refreshAccessToken: options.refreshAccessToken
109
+ ? options.refreshAccessToken
110
+ : async (refreshToken) => {
111
+ return refreshAccessToken({
112
+ refreshToken,
113
+ options: {
114
+ clientId: options.clientId,
115
+ clientKey: options.clientKey,
116
+ clientSecret: options.clientSecret,
117
+ },
118
+ tokenEndpoint,
119
+ });
120
+ },
121
+
122
+ async verifyIdToken(token, nonce) {
123
+ if (options.disableIdTokenSignIn) {
124
+ return false;
125
+ }
126
+ if (options.verifyIdToken) {
127
+ return options.verifyIdToken(token, nonce);
128
+ }
129
+
130
+ try {
131
+ const decodedHeader = decodeProtectedHeader(token);
132
+ const { kid, alg: jwtAlg } = decodedHeader;
133
+ if (!kid || !jwtAlg) return false;
134
+
135
+ const publicKey = await getCognitoPublicKey(
136
+ kid,
137
+ options.region,
138
+ options.userPoolId,
139
+ );
140
+ const expectedIssuer = `https://cognito-idp.${options.region}.amazonaws.com/${options.userPoolId}`;
141
+
142
+ const { payload: jwtClaims } = await jwtVerify(token, publicKey, {
143
+ algorithms: [jwtAlg],
144
+ issuer: expectedIssuer,
145
+ audience: options.clientId,
146
+ maxTokenAge: "1h",
147
+ });
148
+
149
+ if (nonce && jwtClaims.nonce !== nonce) {
150
+ return false;
151
+ }
152
+ return true;
153
+ } catch (error) {
154
+ logger.error("Failed to verify ID token:", error);
155
+ return false;
156
+ }
157
+ },
158
+
159
+ async getUserInfo(token) {
160
+ if (options.getUserInfo) {
161
+ return options.getUserInfo(token);
162
+ }
163
+
164
+ if (token.idToken) {
165
+ try {
166
+ const profile = decodeJwt<CognitoProfile>(token.idToken);
167
+ if (!profile) {
168
+ return null;
169
+ }
170
+ const name =
171
+ profile.name ||
172
+ profile.given_name ||
173
+ profile.username ||
174
+ profile.email;
175
+ const enrichedProfile = {
176
+ ...profile,
177
+ name,
178
+ };
179
+ const userMap = await options.mapProfileToUser?.(enrichedProfile);
180
+
181
+ return {
182
+ user: {
183
+ id: profile.sub,
184
+ name: enrichedProfile.name,
185
+ email: profile.email,
186
+ image: profile.picture,
187
+ emailVerified: profile.email_verified,
188
+ ...userMap,
189
+ },
190
+ data: enrichedProfile,
191
+ };
192
+ } catch (error) {
193
+ logger.error("Failed to decode ID token:", error);
194
+ }
195
+ }
196
+
197
+ if (token.accessToken) {
198
+ try {
199
+ const { data: userInfo } = await betterFetch<CognitoProfile>(
200
+ userInfoEndpoint,
201
+ {
202
+ headers: {
203
+ Authorization: `Bearer ${token.accessToken}`,
204
+ },
205
+ },
206
+ );
207
+
208
+ if (userInfo) {
209
+ const userMap = await options.mapProfileToUser?.(userInfo);
210
+ return {
211
+ user: {
212
+ id: userInfo.sub,
213
+ name: userInfo.name || userInfo.given_name || userInfo.username,
214
+ email: userInfo.email,
215
+ image: userInfo.picture,
216
+ emailVerified: userInfo.email_verified,
217
+ ...userMap,
218
+ },
219
+ data: userInfo,
220
+ };
221
+ }
222
+ } catch (error) {
223
+ logger.error("Failed to fetch user info from Cognito:", error);
224
+ }
225
+ }
226
+
227
+ return null;
228
+ },
229
+
230
+ options,
231
+ } satisfies OAuthProvider<CognitoProfile>;
232
+ };
233
+
234
+ export const getCognitoPublicKey = async (
235
+ kid: string,
236
+ region: string,
237
+ userPoolId: string,
238
+ ) => {
239
+ const COGNITO_JWKS_URI = `https://cognito-idp.${region}.amazonaws.com/${userPoolId}/.well-known/jwks.json`;
240
+
241
+ try {
242
+ const { data } = await betterFetch<{
243
+ keys: Array<{
244
+ kid: string;
245
+ alg: string;
246
+ kty: string;
247
+ use: string;
248
+ n: string;
249
+ e: string;
250
+ }>;
251
+ }>(COGNITO_JWKS_URI);
252
+
253
+ if (!data?.keys) {
254
+ throw new APIError("BAD_REQUEST", {
255
+ message: "Keys not found",
256
+ });
257
+ }
258
+
259
+ const jwk = data.keys.find((key) => key.kid === kid);
260
+ if (!jwk) {
261
+ throw new Error(`JWK with kid ${kid} not found`);
262
+ }
263
+
264
+ return await importJWK(jwk, jwk.alg);
265
+ } catch (error) {
266
+ logger.error("Failed to fetch Cognito public key:", error);
267
+ throw error;
268
+ }
269
+ };