@draftlab/auth 0.15.0 → 0.16.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/esm/allow.js +26 -0
- package/dist/esm/client.js +254 -0
- package/dist/esm/core.js +597 -0
- package/dist/esm/css.d.js +0 -0
- package/dist/esm/error.js +88 -0
- package/dist/esm/index.js +5 -0
- package/dist/esm/keys.js +126 -0
- package/dist/esm/mutex.js +53 -0
- package/dist/esm/pkce.js +87 -0
- package/dist/esm/provider/apple.js +15 -0
- package/dist/esm/provider/code.js +62 -0
- package/dist/esm/provider/discord.js +15 -0
- package/dist/esm/provider/facebook.js +15 -0
- package/dist/esm/provider/github.js +15 -0
- package/dist/esm/provider/gitlab.js +15 -0
- package/dist/esm/provider/google.js +16 -0
- package/dist/esm/provider/linkedin.js +15 -0
- package/dist/esm/provider/magiclink.js +83 -0
- package/dist/esm/provider/microsoft.js +15 -0
- package/dist/esm/provider/oauth2.js +130 -0
- package/dist/esm/provider/password.js +331 -0
- package/dist/esm/provider/provider.js +18 -0
- package/dist/esm/provider/reddit.js +15 -0
- package/dist/esm/provider/slack.js +15 -0
- package/dist/esm/provider/spotify.js +15 -0
- package/dist/esm/provider/twitch.js +15 -0
- package/dist/esm/provider/vercel.js +17 -0
- package/dist/esm/random.js +40 -0
- package/dist/esm/revocation.js +27 -0
- package/dist/esm/storage/memory.js +110 -0
- package/dist/esm/storage/storage.js +56 -0
- package/dist/esm/storage/turso.js +93 -0
- package/dist/esm/storage/unstorage.js +78 -0
- package/dist/esm/subject.js +7 -0
- package/dist/esm/themes/theme.js +115 -0
- package/dist/esm/toolkit/client.js +119 -0
- package/dist/esm/toolkit/index.js +25 -0
- package/dist/esm/toolkit/providers/facebook.js +11 -0
- package/dist/esm/toolkit/providers/github.js +11 -0
- package/dist/esm/toolkit/providers/google.js +11 -0
- package/dist/esm/toolkit/providers/strategy.js +0 -0
- package/dist/esm/toolkit/storage.js +81 -0
- package/dist/esm/toolkit/utils.js +18 -0
- package/dist/esm/types.js +0 -0
- package/dist/esm/ui/base.js +478 -0
- package/dist/esm/ui/code.js +186 -0
- package/dist/esm/ui/form.js +46 -0
- package/dist/esm/ui/icon.js +242 -0
- package/dist/esm/ui/magiclink.js +158 -0
- package/dist/esm/ui/password.js +435 -0
- package/dist/esm/ui/select.js +102 -0
- package/dist/esm/util.js +59 -0
- package/dist/{allow.d.mts → types/allow.d.ts} +9 -11
- package/dist/types/allow.d.ts.map +1 -0
- package/dist/types/client.d.ts +462 -0
- package/dist/types/client.d.ts.map +1 -0
- package/dist/types/core.d.ts +113 -0
- package/dist/types/core.d.ts.map +1 -0
- package/dist/{error.d.mts → types/error.d.ts} +95 -97
- package/dist/types/error.d.ts.map +1 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/{keys.d.mts → types/keys.d.ts} +20 -24
- package/dist/types/keys.d.ts.map +1 -0
- package/dist/types/mutex.d.ts +42 -0
- package/dist/types/mutex.d.ts.map +1 -0
- package/dist/{pkce.d.mts → types/pkce.d.ts} +10 -11
- package/dist/types/pkce.d.ts.map +1 -0
- package/dist/types/provider/apple.d.ts +197 -0
- package/dist/types/provider/apple.d.ts.map +1 -0
- package/dist/types/provider/code.d.ts +288 -0
- package/dist/types/provider/code.d.ts.map +1 -0
- package/dist/types/provider/discord.d.ts +206 -0
- package/dist/types/provider/discord.d.ts.map +1 -0
- package/dist/types/provider/facebook.d.ts +200 -0
- package/dist/types/provider/facebook.d.ts.map +1 -0
- package/dist/types/provider/github.d.ts +220 -0
- package/dist/types/provider/github.d.ts.map +1 -0
- package/dist/types/provider/gitlab.d.ts +180 -0
- package/dist/types/provider/gitlab.d.ts.map +1 -0
- package/dist/types/provider/google.d.ts +158 -0
- package/dist/types/provider/google.d.ts.map +1 -0
- package/dist/types/provider/linkedin.d.ts +190 -0
- package/dist/types/provider/linkedin.d.ts.map +1 -0
- package/dist/types/provider/magiclink.d.ts +141 -0
- package/dist/types/provider/magiclink.d.ts.map +1 -0
- package/dist/types/provider/microsoft.d.ts +247 -0
- package/dist/types/provider/microsoft.d.ts.map +1 -0
- package/dist/types/provider/oauth2.d.ts +229 -0
- package/dist/types/provider/oauth2.d.ts.map +1 -0
- package/dist/types/provider/password.d.ts +408 -0
- package/dist/types/provider/password.d.ts.map +1 -0
- package/dist/types/provider/provider.d.ts +226 -0
- package/dist/types/provider/provider.d.ts.map +1 -0
- package/dist/types/provider/reddit.d.ts +159 -0
- package/dist/types/provider/reddit.d.ts.map +1 -0
- package/dist/types/provider/slack.d.ts +171 -0
- package/dist/types/provider/slack.d.ts.map +1 -0
- package/dist/types/provider/spotify.d.ts +168 -0
- package/dist/types/provider/spotify.d.ts.map +1 -0
- package/dist/types/provider/twitch.d.ts +163 -0
- package/dist/types/provider/twitch.d.ts.map +1 -0
- package/dist/types/provider/vercel.d.ts +294 -0
- package/dist/types/provider/vercel.d.ts.map +1 -0
- package/dist/{random.d.mts → types/random.d.ts} +4 -6
- package/dist/types/random.d.ts.map +1 -0
- package/dist/types/revocation.d.ts +76 -0
- package/dist/types/revocation.d.ts.map +1 -0
- package/dist/{storage/memory.d.mts → types/storage/memory.d.ts} +17 -21
- package/dist/types/storage/memory.d.ts.map +1 -0
- package/dist/types/storage/storage.d.ts +177 -0
- package/dist/types/storage/storage.d.ts.map +1 -0
- package/dist/{storage/turso.d.mts → types/storage/turso.d.ts} +4 -8
- package/dist/types/storage/turso.d.ts.map +1 -0
- package/dist/{storage/unstorage.d.mts → types/storage/unstorage.d.ts} +12 -11
- package/dist/types/storage/unstorage.d.ts.map +1 -0
- package/dist/types/subject.d.ts +115 -0
- package/dist/types/subject.d.ts.map +1 -0
- package/dist/types/themes/theme.d.ts +207 -0
- package/dist/types/themes/theme.d.ts.map +1 -0
- package/dist/types/toolkit/client.d.ts +235 -0
- package/dist/types/toolkit/client.d.ts.map +1 -0
- package/dist/types/toolkit/index.d.ts +45 -0
- package/dist/types/toolkit/index.d.ts.map +1 -0
- package/dist/types/toolkit/providers/facebook.d.ts +8 -0
- package/dist/types/toolkit/providers/facebook.d.ts.map +1 -0
- package/dist/types/toolkit/providers/github.d.ts +8 -0
- package/dist/types/toolkit/providers/github.d.ts.map +1 -0
- package/dist/types/toolkit/providers/google.d.ts +8 -0
- package/dist/types/toolkit/providers/google.d.ts.map +1 -0
- package/dist/types/toolkit/providers/strategy.d.ts +38 -0
- package/dist/types/toolkit/providers/strategy.d.ts.map +1 -0
- package/dist/{toolkit/storage.d.mts → types/toolkit/storage.d.ts} +37 -39
- package/dist/types/toolkit/storage.d.ts.map +1 -0
- package/dist/{toolkit/utils.d.mts → types/toolkit/utils.d.ts} +2 -4
- package/dist/types/toolkit/utils.d.ts.map +1 -0
- package/dist/types/types.d.ts +92 -0
- package/dist/types/types.d.ts.map +1 -0
- package/dist/types/ui/base.d.ts +18 -0
- package/dist/types/ui/base.d.ts.map +1 -0
- package/dist/types/ui/code.d.ts +43 -0
- package/dist/types/ui/code.d.ts.map +1 -0
- package/dist/types/ui/form.d.ts +24 -0
- package/dist/types/ui/form.d.ts.map +1 -0
- package/dist/types/ui/icon.d.ts +60 -0
- package/dist/types/ui/icon.d.ts.map +1 -0
- package/dist/types/ui/magiclink.d.ts +41 -0
- package/dist/types/ui/magiclink.d.ts.map +1 -0
- package/dist/types/ui/password.d.ts +43 -0
- package/dist/types/ui/password.d.ts.map +1 -0
- package/dist/types/ui/select.d.ts +33 -0
- package/dist/types/ui/select.d.ts.map +1 -0
- package/dist/{util.d.mts → types/util.d.ts} +11 -13
- package/dist/types/util.d.ts.map +1 -0
- package/package.json +10 -16
- package/dist/adapters/node.d.mts +0 -18
- package/dist/adapters/node.mjs +0 -69
- package/dist/allow.mjs +0 -63
- package/dist/client.d.mts +0 -456
- package/dist/client.mjs +0 -283
- package/dist/core.d.mts +0 -110
- package/dist/core.mjs +0 -595
- package/dist/error.mjs +0 -237
- package/dist/index.d.mts +0 -2
- package/dist/index.mjs +0 -3
- package/dist/keys.mjs +0 -146
- package/dist/mutex.d.mts +0 -44
- package/dist/mutex.mjs +0 -110
- package/dist/pkce.mjs +0 -157
- package/dist/provider/apple.d.mts +0 -111
- package/dist/provider/apple.mjs +0 -164
- package/dist/provider/code.d.mts +0 -228
- package/dist/provider/code.mjs +0 -246
- package/dist/provider/discord.d.mts +0 -146
- package/dist/provider/discord.mjs +0 -156
- package/dist/provider/facebook.d.mts +0 -142
- package/dist/provider/facebook.mjs +0 -150
- package/dist/provider/github.d.mts +0 -140
- package/dist/provider/github.mjs +0 -169
- package/dist/provider/gitlab.d.mts +0 -106
- package/dist/provider/gitlab.mjs +0 -147
- package/dist/provider/google.d.mts +0 -112
- package/dist/provider/google.mjs +0 -109
- package/dist/provider/linkedin.d.mts +0 -132
- package/dist/provider/linkedin.mjs +0 -142
- package/dist/provider/magiclink.d.mts +0 -89
- package/dist/provider/magiclink.mjs +0 -143
- package/dist/provider/microsoft.d.mts +0 -178
- package/dist/provider/microsoft.mjs +0 -177
- package/dist/provider/oauth2.d.mts +0 -176
- package/dist/provider/oauth2.mjs +0 -222
- package/dist/provider/passkey.d.mts +0 -104
- package/dist/provider/passkey.mjs +0 -320
- package/dist/provider/password.d.mts +0 -412
- package/dist/provider/password.mjs +0 -363
- package/dist/provider/provider.d.mts +0 -227
- package/dist/provider/provider.mjs +0 -44
- package/dist/provider/reddit.d.mts +0 -107
- package/dist/provider/reddit.mjs +0 -127
- package/dist/provider/slack.d.mts +0 -114
- package/dist/provider/slack.mjs +0 -138
- package/dist/provider/spotify.d.mts +0 -113
- package/dist/provider/spotify.mjs +0 -135
- package/dist/provider/totp.d.mts +0 -112
- package/dist/provider/totp.mjs +0 -191
- package/dist/provider/twitch.d.mts +0 -108
- package/dist/provider/twitch.mjs +0 -131
- package/dist/provider/vercel.d.mts +0 -177
- package/dist/provider/vercel.mjs +0 -230
- package/dist/random.mjs +0 -86
- package/dist/revocation.d.mts +0 -55
- package/dist/revocation.mjs +0 -63
- package/dist/router/context.d.mts +0 -21
- package/dist/router/context.mjs +0 -193
- package/dist/router/cookies.d.mts +0 -8
- package/dist/router/cookies.mjs +0 -13
- package/dist/router/index.d.mts +0 -21
- package/dist/router/index.mjs +0 -107
- package/dist/router/matcher.d.mts +0 -15
- package/dist/router/matcher.mjs +0 -76
- package/dist/router/middleware/cors.d.mts +0 -15
- package/dist/router/middleware/cors.mjs +0 -114
- package/dist/router/safe-request.d.mts +0 -52
- package/dist/router/safe-request.mjs +0 -160
- package/dist/router/types.d.mts +0 -67
- package/dist/router/types.mjs +0 -1
- package/dist/router/variables.d.mts +0 -12
- package/dist/router/variables.mjs +0 -20
- package/dist/storage/memory.mjs +0 -125
- package/dist/storage/storage.d.mts +0 -179
- package/dist/storage/storage.mjs +0 -104
- package/dist/storage/turso.mjs +0 -117
- package/dist/storage/unstorage.mjs +0 -103
- package/dist/subject.d.mts +0 -62
- package/dist/subject.mjs +0 -36
- package/dist/themes/theme.d.mts +0 -209
- package/dist/themes/theme.mjs +0 -120
- package/dist/toolkit/client.d.mts +0 -169
- package/dist/toolkit/client.mjs +0 -209
- package/dist/toolkit/index.d.mts +0 -9
- package/dist/toolkit/index.mjs +0 -9
- package/dist/toolkit/providers/facebook.d.mts +0 -12
- package/dist/toolkit/providers/facebook.mjs +0 -16
- package/dist/toolkit/providers/github.d.mts +0 -12
- package/dist/toolkit/providers/github.mjs +0 -16
- package/dist/toolkit/providers/google.d.mts +0 -12
- package/dist/toolkit/providers/google.mjs +0 -20
- package/dist/toolkit/providers/strategy.d.mts +0 -40
- package/dist/toolkit/providers/strategy.mjs +0 -1
- package/dist/toolkit/storage.mjs +0 -157
- package/dist/toolkit/utils.mjs +0 -30
- package/dist/types.d.mts +0 -94
- package/dist/types.mjs +0 -1
- package/dist/ui/base.d.mts +0 -30
- package/dist/ui/base.mjs +0 -407
- package/dist/ui/code.d.mts +0 -43
- package/dist/ui/code.mjs +0 -173
- package/dist/ui/form.d.mts +0 -32
- package/dist/ui/form.mjs +0 -49
- package/dist/ui/icon.d.mts +0 -58
- package/dist/ui/icon.mjs +0 -247
- package/dist/ui/magiclink.d.mts +0 -41
- package/dist/ui/magiclink.mjs +0 -152
- package/dist/ui/passkey.d.mts +0 -27
- package/dist/ui/passkey.mjs +0 -323
- package/dist/ui/password.d.mts +0 -42
- package/dist/ui/password.mjs +0 -402
- package/dist/ui/select.d.mts +0 -34
- package/dist/ui/select.mjs +0 -98
- package/dist/ui/totp.d.mts +0 -34
- package/dist/ui/totp.mjs +0 -270
- package/dist/util.mjs +0 -128
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
import { OAuthStrategy } from "./providers/strategy.mjs";
|
|
2
|
-
import { AuthStorage } from "./storage.mjs";
|
|
3
|
-
|
|
4
|
-
//#region src/toolkit/client.d.ts
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* Configuration for a single OAuth provider.
|
|
8
|
-
*/
|
|
9
|
-
interface ProviderConfig<TStrategy extends OAuthStrategy> {
|
|
10
|
-
/** OAuth strategy defining endpoints and defaults */
|
|
11
|
-
readonly strategy: TStrategy;
|
|
12
|
-
/** OAuth client ID from provider */
|
|
13
|
-
readonly clientId: string;
|
|
14
|
-
/** OAuth client secret from provider */
|
|
15
|
-
readonly clientSecret: string;
|
|
16
|
-
/** Redirect URI registered with provider */
|
|
17
|
-
readonly redirectUri: string;
|
|
18
|
-
/** Optional default scopes for this provider */
|
|
19
|
-
readonly scopes?: string[];
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Options for initiating OAuth authorization flow.
|
|
23
|
-
*/
|
|
24
|
-
interface AuthorizeOptions {
|
|
25
|
-
/** Optional scopes to request (overrides provider defaults) */
|
|
26
|
-
readonly scopes?: string[];
|
|
27
|
-
/** Optional additional parameters to include in authorization URL */
|
|
28
|
-
readonly params?: Record<string, string>;
|
|
29
|
-
/** Optional nonce for additional security */
|
|
30
|
-
readonly nonce?: string;
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Result of successful OAuth callback handling.
|
|
34
|
-
*/
|
|
35
|
-
interface CallbackResult {
|
|
36
|
-
/** OAuth provider that was used */
|
|
37
|
-
readonly provider: string;
|
|
38
|
-
/** Access token from provider */
|
|
39
|
-
readonly accessToken: string;
|
|
40
|
-
/** Optional refresh token from provider */
|
|
41
|
-
readonly refreshToken?: string;
|
|
42
|
-
/** Token expiration time in seconds */
|
|
43
|
-
readonly expiresIn?: number;
|
|
44
|
-
/** Token type (usually "Bearer") */
|
|
45
|
-
readonly tokenType?: string;
|
|
46
|
-
/** Optional ID token (OpenID Connect) */
|
|
47
|
-
readonly idToken?: string;
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* OAuth 2.0 client configuration.
|
|
51
|
-
*/
|
|
52
|
-
interface OAuthClientConfig<TProviders extends Record<string, ProviderConfig<OAuthStrategy>>> {
|
|
53
|
-
/** Provider configurations keyed by provider name */
|
|
54
|
-
readonly providers: TProviders;
|
|
55
|
-
/** Storage adapter for PKCE state (defaults to sessionStorage in browser) */
|
|
56
|
-
readonly storage?: AuthStorage;
|
|
57
|
-
}
|
|
58
|
-
/**
|
|
59
|
-
* OAuth 2.0 client for managing authentication flows.
|
|
60
|
-
*/
|
|
61
|
-
interface OAuthClient<TProviders extends Record<string, ProviderConfig<OAuthStrategy>>> {
|
|
62
|
-
/**
|
|
63
|
-
* Initiate OAuth authorization flow.
|
|
64
|
-
*
|
|
65
|
-
* @param provider - Provider name (key from providers config)
|
|
66
|
-
* @param options - Authorization options
|
|
67
|
-
* @returns Authorization URL to redirect user to
|
|
68
|
-
*
|
|
69
|
-
* @example
|
|
70
|
-
* ```ts
|
|
71
|
-
* // Basic usage
|
|
72
|
-
* const { url } = await client.authorize('github')
|
|
73
|
-
* window.location.href = url
|
|
74
|
-
*
|
|
75
|
-
* // With custom scopes
|
|
76
|
-
* const { url } = await client.authorize('google', {
|
|
77
|
-
* scopes: ['openid', 'email', 'profile']
|
|
78
|
-
* })
|
|
79
|
-
*
|
|
80
|
-
* // With additional params
|
|
81
|
-
* const { url } = await client.authorize('github', {
|
|
82
|
-
* params: { prompt: 'consent' }
|
|
83
|
-
* })
|
|
84
|
-
* ```
|
|
85
|
-
*/
|
|
86
|
-
authorize(provider: (string & {}) | keyof TProviders, options?: AuthorizeOptions): Promise<{
|
|
87
|
-
url: string;
|
|
88
|
-
state: string;
|
|
89
|
-
}>;
|
|
90
|
-
/**
|
|
91
|
-
* Handle OAuth callback and exchange code for tokens.
|
|
92
|
-
*
|
|
93
|
-
* @param callbackUrl - Full callback URL with query parameters
|
|
94
|
-
* @returns Token exchange result
|
|
95
|
-
*
|
|
96
|
-
* @throws {Error} If callback URL is invalid, state mismatch, or token exchange fails
|
|
97
|
-
*
|
|
98
|
-
* @example
|
|
99
|
-
* ```ts
|
|
100
|
-
* // Client-side
|
|
101
|
-
* const result = await client.handleCallback(window.location.href)
|
|
102
|
-
* console.log(result.accessToken, result.provider)
|
|
103
|
-
*
|
|
104
|
-
* // Server-side (Next.js)
|
|
105
|
-
* export async function GET(req: Request) {
|
|
106
|
-
* const result = await client.handleCallback(req.url)
|
|
107
|
-
* // Store tokens, create session, etc.
|
|
108
|
-
* return Response.redirect('/')
|
|
109
|
-
* }
|
|
110
|
-
* ```
|
|
111
|
-
*/
|
|
112
|
-
handleCallback(callbackUrl: string): Promise<CallbackResult>;
|
|
113
|
-
/**
|
|
114
|
-
* Get user info from OAuth provider using access token.
|
|
115
|
-
*
|
|
116
|
-
* @param provider - Provider name
|
|
117
|
-
* @param accessToken - Access token from provider
|
|
118
|
-
* @returns User info from provider
|
|
119
|
-
*
|
|
120
|
-
* @example
|
|
121
|
-
* ```ts
|
|
122
|
-
* const userInfo = await client.getUserInfo('github', accessToken)
|
|
123
|
-
* console.log(userInfo.email, userInfo.name)
|
|
124
|
-
* ```
|
|
125
|
-
*/
|
|
126
|
-
getUserInfo(provider: (string & {}) | keyof TProviders, accessToken: string): Promise<Record<string, unknown>>;
|
|
127
|
-
}
|
|
128
|
-
/**
|
|
129
|
-
* Creates an OAuth 2.0 client for managing authentication flows.
|
|
130
|
-
*
|
|
131
|
-
* Supports PKCE (Proof Key for Code Exchange) for enhanced security.
|
|
132
|
-
* Works in both client-side (browser) and server-side (Node.js) environments.
|
|
133
|
-
*
|
|
134
|
-
* @param config - OAuth client configuration
|
|
135
|
-
* @returns OAuth client instance
|
|
136
|
-
*
|
|
137
|
-
* @example
|
|
138
|
-
* ```ts
|
|
139
|
-
* import { createOAuthClient } from '@draftlab/auth/toolkit/client'
|
|
140
|
-
* import { GitHubStrategy, GoogleStrategy } from '@draftlab/auth/toolkit/providers'
|
|
141
|
-
*
|
|
142
|
-
* const client = createOAuthClient({
|
|
143
|
-
* providers: {
|
|
144
|
-
* github: {
|
|
145
|
-
* strategy: GitHubStrategy,
|
|
146
|
-
* clientId: 'YOUR_CLIENT_ID',
|
|
147
|
-
* clientSecret: 'YOUR_CLIENT_SECRET',
|
|
148
|
-
* redirectUri: 'http://localhost:3000/auth/callback'
|
|
149
|
-
* },
|
|
150
|
-
* google: {
|
|
151
|
-
* strategy: GoogleStrategy,
|
|
152
|
-
* clientId: 'YOUR_CLIENT_ID',
|
|
153
|
-
* clientSecret: 'YOUR_CLIENT_SECRET',
|
|
154
|
-
* redirectUri: 'http://localhost:3000/auth/callback',
|
|
155
|
-
* scopes: ['openid', 'email', 'profile']
|
|
156
|
-
* }
|
|
157
|
-
* }
|
|
158
|
-
* })
|
|
159
|
-
*
|
|
160
|
-
* // Initiate login
|
|
161
|
-
* const { url } = await client.authorize('github')
|
|
162
|
-
*
|
|
163
|
-
* // Handle callback
|
|
164
|
-
* const result = await client.handleCallback(callbackUrl)
|
|
165
|
-
* ```
|
|
166
|
-
*/
|
|
167
|
-
declare const createOAuthClient: <TProviders extends Record<string, ProviderConfig<OAuthStrategy>>>(config: OAuthClientConfig<TProviders>) => OAuthClient<TProviders>;
|
|
168
|
-
//#endregion
|
|
169
|
-
export { AuthorizeOptions, CallbackResult, OAuthClient, OAuthClientConfig, ProviderConfig, createOAuthClient };
|
package/dist/toolkit/client.mjs
DELETED
|
@@ -1,209 +0,0 @@
|
|
|
1
|
-
import { generatePKCE } from "../pkce.mjs";
|
|
2
|
-
import { createSessionStorage } from "./storage.mjs";
|
|
3
|
-
import { generateSecureRandom } from "./utils.mjs";
|
|
4
|
-
|
|
5
|
-
//#region src/toolkit/client.ts
|
|
6
|
-
/**
|
|
7
|
-
* Lightweight OAuth 2.0 client toolkit for DraftAuth.
|
|
8
|
-
*
|
|
9
|
-
* Provides a simple, framework-agnostic way to implement OAuth 2.0 authentication
|
|
10
|
-
* with PKCE support. Works in both client-side (SPA) and server-side (Next.js, Remix) environments.
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```ts
|
|
14
|
-
* // Client-side SPA (React, Vue, Solid, etc.)
|
|
15
|
-
* import { createOAuthClient } from '@draftlab/auth/toolkit/client'
|
|
16
|
-
* import { GitHubStrategy, GoogleStrategy } from '@draftlab/auth/toolkit/providers'
|
|
17
|
-
* import { createSessionStorage } from '@draftlab/auth/toolkit/storage'
|
|
18
|
-
*
|
|
19
|
-
* const client = createOAuthClient({
|
|
20
|
-
* providers: {
|
|
21
|
-
* github: {
|
|
22
|
-
* strategy: GitHubStrategy,
|
|
23
|
-
* clientId: 'YOUR_CLIENT_ID',
|
|
24
|
-
* clientSecret: 'YOUR_CLIENT_SECRET',
|
|
25
|
-
* redirectUri: 'http://localhost:3000/auth/callback'
|
|
26
|
-
* },
|
|
27
|
-
* google: {
|
|
28
|
-
* strategy: GoogleStrategy,
|
|
29
|
-
* clientId: 'YOUR_CLIENT_ID',
|
|
30
|
-
* clientSecret: 'YOUR_CLIENT_SECRET',
|
|
31
|
-
* redirectUri: 'http://localhost:3000/auth/callback'
|
|
32
|
-
* }
|
|
33
|
-
* },
|
|
34
|
-
* storage: createSessionStorage()
|
|
35
|
-
* })
|
|
36
|
-
*
|
|
37
|
-
* // Initiate login
|
|
38
|
-
* const { url } = await client.authorize('github', { scopes: ['user:email'] })
|
|
39
|
-
* window.location.href = url
|
|
40
|
-
*
|
|
41
|
-
* // Handle callback
|
|
42
|
-
* const result = await client.handleCallback(window.location.href)
|
|
43
|
-
* console.log(result.accessToken, result.provider)
|
|
44
|
-
* ```
|
|
45
|
-
*
|
|
46
|
-
* @example
|
|
47
|
-
* ```ts
|
|
48
|
-
* // Server-side (Next.js App Router)
|
|
49
|
-
* import { createOAuthClient } from '@draftlab/auth/toolkit/client'
|
|
50
|
-
* import { GitHubStrategy } from '@draftlab/auth/toolkit/providers'
|
|
51
|
-
* import { createCookieStorage } from '@draftlab/auth/toolkit/storage'
|
|
52
|
-
* import { cookies } from 'next/headers'
|
|
53
|
-
*
|
|
54
|
-
* export async function GET(req: Request) {
|
|
55
|
-
* const client = createOAuthClient({
|
|
56
|
-
* providers: {
|
|
57
|
-
* github: {
|
|
58
|
-
* strategy: GitHubStrategy,
|
|
59
|
-
* clientId: process.env.GITHUB_CLIENT_ID!,
|
|
60
|
-
* clientSecret: process.env.GITHUB_CLIENT_SECRET!,
|
|
61
|
-
* redirectUri: 'https://myapp.com/auth/callback'
|
|
62
|
-
* }
|
|
63
|
-
* },
|
|
64
|
-
* storage: createCookieStorage({
|
|
65
|
-
* getCookie: (name) => cookies().get(name)?.value ?? null,
|
|
66
|
-
* setCookie: (name, value, opts) => cookies().set(name, value, opts),
|
|
67
|
-
* deleteCookie: (name) => cookies().delete(name)
|
|
68
|
-
* })
|
|
69
|
-
* })
|
|
70
|
-
*
|
|
71
|
-
* const { url } = await client.authorize('github')
|
|
72
|
-
* return Response.redirect(url)
|
|
73
|
-
* }
|
|
74
|
-
* ```
|
|
75
|
-
*/
|
|
76
|
-
/**
|
|
77
|
-
* Creates an OAuth 2.0 client for managing authentication flows.
|
|
78
|
-
*
|
|
79
|
-
* Supports PKCE (Proof Key for Code Exchange) for enhanced security.
|
|
80
|
-
* Works in both client-side (browser) and server-side (Node.js) environments.
|
|
81
|
-
*
|
|
82
|
-
* @param config - OAuth client configuration
|
|
83
|
-
* @returns OAuth client instance
|
|
84
|
-
*
|
|
85
|
-
* @example
|
|
86
|
-
* ```ts
|
|
87
|
-
* import { createOAuthClient } from '@draftlab/auth/toolkit/client'
|
|
88
|
-
* import { GitHubStrategy, GoogleStrategy } from '@draftlab/auth/toolkit/providers'
|
|
89
|
-
*
|
|
90
|
-
* const client = createOAuthClient({
|
|
91
|
-
* providers: {
|
|
92
|
-
* github: {
|
|
93
|
-
* strategy: GitHubStrategy,
|
|
94
|
-
* clientId: 'YOUR_CLIENT_ID',
|
|
95
|
-
* clientSecret: 'YOUR_CLIENT_SECRET',
|
|
96
|
-
* redirectUri: 'http://localhost:3000/auth/callback'
|
|
97
|
-
* },
|
|
98
|
-
* google: {
|
|
99
|
-
* strategy: GoogleStrategy,
|
|
100
|
-
* clientId: 'YOUR_CLIENT_ID',
|
|
101
|
-
* clientSecret: 'YOUR_CLIENT_SECRET',
|
|
102
|
-
* redirectUri: 'http://localhost:3000/auth/callback',
|
|
103
|
-
* scopes: ['openid', 'email', 'profile']
|
|
104
|
-
* }
|
|
105
|
-
* }
|
|
106
|
-
* })
|
|
107
|
-
*
|
|
108
|
-
* // Initiate login
|
|
109
|
-
* const { url } = await client.authorize('github')
|
|
110
|
-
*
|
|
111
|
-
* // Handle callback
|
|
112
|
-
* const result = await client.handleCallback(callbackUrl)
|
|
113
|
-
* ```
|
|
114
|
-
*/
|
|
115
|
-
const createOAuthClient = (config) => {
|
|
116
|
-
const storage = config.storage || (typeof sessionStorage !== "undefined" ? createSessionStorage() : null);
|
|
117
|
-
if (!storage) throw new Error("No storage adapter provided. Please provide a storage adapter for server-side environments.");
|
|
118
|
-
return {
|
|
119
|
-
async authorize(provider, options) {
|
|
120
|
-
const providerConfig = config.providers[provider];
|
|
121
|
-
if (!providerConfig) throw new Error(`Provider '${String(provider)}' not configured`);
|
|
122
|
-
const pkce = await generatePKCE();
|
|
123
|
-
const state = generateSecureRandom(16);
|
|
124
|
-
await storage.set({
|
|
125
|
-
state,
|
|
126
|
-
verifier: pkce.verifier,
|
|
127
|
-
provider: String(provider),
|
|
128
|
-
nonce: options?.nonce
|
|
129
|
-
});
|
|
130
|
-
const scopes = options?.scopes || providerConfig.scopes || providerConfig.strategy.scopes;
|
|
131
|
-
const params = new URLSearchParams({
|
|
132
|
-
client_id: providerConfig.clientId,
|
|
133
|
-
redirect_uri: providerConfig.redirectUri,
|
|
134
|
-
response_type: "code",
|
|
135
|
-
scope: Array.isArray(scopes) ? scopes.join(" ") : scopes,
|
|
136
|
-
state,
|
|
137
|
-
code_challenge: pkce.challenge,
|
|
138
|
-
code_challenge_method: pkce.method,
|
|
139
|
-
...options?.params
|
|
140
|
-
});
|
|
141
|
-
return {
|
|
142
|
-
url: `${providerConfig.strategy.authorizationEndpoint}?${params.toString()}`,
|
|
143
|
-
state
|
|
144
|
-
};
|
|
145
|
-
},
|
|
146
|
-
async handleCallback(callbackUrl) {
|
|
147
|
-
const url = new URL(callbackUrl);
|
|
148
|
-
const code = url.searchParams.get("code");
|
|
149
|
-
const state = url.searchParams.get("state");
|
|
150
|
-
const error = url.searchParams.get("error");
|
|
151
|
-
const errorDescription = url.searchParams.get("error_description");
|
|
152
|
-
if (error) throw new Error(`OAuth error: ${error}${errorDescription ? ` - ${errorDescription}` : ""}`);
|
|
153
|
-
if (!code || !state) throw new Error("Invalid callback URL: missing code or state parameter");
|
|
154
|
-
const storedState = await storage.get();
|
|
155
|
-
await storage.clear();
|
|
156
|
-
if (!storedState) throw new Error("No stored PKCE state found. OAuth flow may have expired or been tampered with.");
|
|
157
|
-
if (state !== storedState.state) throw new Error("State mismatch. Possible CSRF attack detected.");
|
|
158
|
-
const providerConfig = config.providers[storedState.provider];
|
|
159
|
-
if (!providerConfig) throw new Error(`Provider '${storedState.provider}' from callback not configured`);
|
|
160
|
-
const tokenParams = new URLSearchParams({
|
|
161
|
-
grant_type: "authorization_code",
|
|
162
|
-
code,
|
|
163
|
-
redirect_uri: providerConfig.redirectUri,
|
|
164
|
-
client_id: providerConfig.clientId,
|
|
165
|
-
client_secret: providerConfig.clientSecret,
|
|
166
|
-
code_verifier: storedState.verifier
|
|
167
|
-
});
|
|
168
|
-
const tokenResponse = await fetch(providerConfig.strategy.tokenEndpoint, {
|
|
169
|
-
method: "POST",
|
|
170
|
-
headers: {
|
|
171
|
-
"Content-Type": "application/x-www-form-urlencoded",
|
|
172
|
-
Accept: "application/json"
|
|
173
|
-
},
|
|
174
|
-
body: tokenParams
|
|
175
|
-
});
|
|
176
|
-
if (!tokenResponse.ok) {
|
|
177
|
-
const errorText = await tokenResponse.text();
|
|
178
|
-
throw new Error(`Token exchange failed (${tokenResponse.status}): ${errorText}`);
|
|
179
|
-
}
|
|
180
|
-
const tokenData = await tokenResponse.json();
|
|
181
|
-
if (!tokenData.access_token) throw new Error("No access token in provider response");
|
|
182
|
-
return {
|
|
183
|
-
provider: storedState.provider,
|
|
184
|
-
accessToken: tokenData.access_token,
|
|
185
|
-
refreshToken: tokenData.refresh_token,
|
|
186
|
-
expiresIn: tokenData.expires_in,
|
|
187
|
-
tokenType: tokenData.token_type,
|
|
188
|
-
idToken: tokenData.id_token
|
|
189
|
-
};
|
|
190
|
-
},
|
|
191
|
-
async getUserInfo(provider, accessToken) {
|
|
192
|
-
const providerConfig = config.providers[provider];
|
|
193
|
-
if (!providerConfig) throw new Error(`Provider '${String(provider)}' not configured`);
|
|
194
|
-
if (!providerConfig.strategy.userInfoEndpoint) throw new Error(`Provider '${String(provider)}' does not support user info endpoint`);
|
|
195
|
-
const response = await fetch(providerConfig.strategy.userInfoEndpoint, { headers: {
|
|
196
|
-
Authorization: `Bearer ${accessToken}`,
|
|
197
|
-
Accept: "application/json"
|
|
198
|
-
} });
|
|
199
|
-
if (!response.ok) {
|
|
200
|
-
const errorText = await response.text();
|
|
201
|
-
throw new Error(`Failed to fetch user info (${response.status}): ${errorText}`);
|
|
202
|
-
}
|
|
203
|
-
return response.json();
|
|
204
|
-
}
|
|
205
|
-
};
|
|
206
|
-
};
|
|
207
|
-
|
|
208
|
-
//#endregion
|
|
209
|
-
export { createOAuthClient };
|
package/dist/toolkit/index.d.mts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { generatePKCE } from "../pkce.mjs";
|
|
2
|
-
import { OAuth2TokenResponse, OAuthStrategy } from "./providers/strategy.mjs";
|
|
3
|
-
import { AuthStorage, PKCEState, createCookieStorage, createLocalStorage, createMemoryStorage, createSessionStorage } from "./storage.mjs";
|
|
4
|
-
import { AuthorizeOptions, CallbackResult, OAuthClient, OAuthClientConfig, ProviderConfig, createOAuthClient } from "./client.mjs";
|
|
5
|
-
import { FacebookStrategy } from "./providers/facebook.mjs";
|
|
6
|
-
import { GitHubStrategy } from "./providers/github.mjs";
|
|
7
|
-
import { GoogleStrategy } from "./providers/google.mjs";
|
|
8
|
-
import { generateSecureRandom } from "./utils.mjs";
|
|
9
|
-
export { type AuthStorage, type AuthorizeOptions, type CallbackResult, FacebookStrategy, GitHubStrategy, GoogleStrategy, type OAuth2TokenResponse, type OAuthClient, type OAuthClientConfig, type OAuthStrategy, type PKCEState, type ProviderConfig, createCookieStorage, createLocalStorage, createMemoryStorage, createOAuthClient, createSessionStorage, generatePKCE, generateSecureRandom };
|
package/dist/toolkit/index.mjs
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { generatePKCE } from "../pkce.mjs";
|
|
2
|
-
import { createCookieStorage, createLocalStorage, createMemoryStorage, createSessionStorage } from "./storage.mjs";
|
|
3
|
-
import { generateSecureRandom } from "./utils.mjs";
|
|
4
|
-
import { createOAuthClient } from "./client.mjs";
|
|
5
|
-
import { FacebookStrategy } from "./providers/facebook.mjs";
|
|
6
|
-
import { GitHubStrategy } from "./providers/github.mjs";
|
|
7
|
-
import { GoogleStrategy } from "./providers/google.mjs";
|
|
8
|
-
|
|
9
|
-
export { FacebookStrategy, GitHubStrategy, GoogleStrategy, createCookieStorage, createLocalStorage, createMemoryStorage, createOAuthClient, createSessionStorage, generatePKCE, generateSecureRandom };
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { OAuthStrategy } from "./strategy.mjs";
|
|
2
|
-
|
|
3
|
-
//#region src/toolkit/providers/facebook.d.ts
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Facebook OAuth 2.0 strategy.
|
|
7
|
-
*
|
|
8
|
-
* @see https://developers.facebook.com/docs/facebook-login/guides/advanced/manual-flow
|
|
9
|
-
*/
|
|
10
|
-
declare const FacebookStrategy: OAuthStrategy;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { FacebookStrategy };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
//#region src/toolkit/providers/facebook.ts
|
|
2
|
-
/**
|
|
3
|
-
* Facebook OAuth 2.0 strategy.
|
|
4
|
-
*
|
|
5
|
-
* @see https://developers.facebook.com/docs/facebook-login/guides/advanced/manual-flow
|
|
6
|
-
*/
|
|
7
|
-
const FacebookStrategy = {
|
|
8
|
-
name: "facebook",
|
|
9
|
-
authorizationEndpoint: "https://www.facebook.com/v23.0/dialog/oauth",
|
|
10
|
-
tokenEndpoint: "https://graph.facebook.com/v23.0/oauth/access_token",
|
|
11
|
-
userInfoEndpoint: "https://graph.facebook.com/me?fields=id,name,email",
|
|
12
|
-
scopes: ["public_profile", "email"]
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
//#endregion
|
|
16
|
-
export { FacebookStrategy };
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { OAuthStrategy } from "./strategy.mjs";
|
|
2
|
-
|
|
3
|
-
//#region src/toolkit/providers/github.d.ts
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* GitHub OAuth 2.0 strategy.
|
|
7
|
-
*
|
|
8
|
-
* @see https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/authorizing-oauth-apps
|
|
9
|
-
*/
|
|
10
|
-
declare const GitHubStrategy: OAuthStrategy;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { GitHubStrategy };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
//#region src/toolkit/providers/github.ts
|
|
2
|
-
/**
|
|
3
|
-
* GitHub OAuth 2.0 strategy.
|
|
4
|
-
*
|
|
5
|
-
* @see https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/authorizing-oauth-apps
|
|
6
|
-
*/
|
|
7
|
-
const GitHubStrategy = {
|
|
8
|
-
name: "github",
|
|
9
|
-
authorizationEndpoint: "https://github.com/login/oauth/authorize",
|
|
10
|
-
tokenEndpoint: "https://github.com/login/oauth/access_token",
|
|
11
|
-
userInfoEndpoint: "https://api.github.com/user",
|
|
12
|
-
scopes: ["read:user", "user:email"]
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
//#endregion
|
|
16
|
-
export { GitHubStrategy };
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { OAuthStrategy } from "./strategy.mjs";
|
|
2
|
-
|
|
3
|
-
//#region src/toolkit/providers/google.d.ts
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Google OAuth 2.0 / OpenID Connect strategy.
|
|
7
|
-
*
|
|
8
|
-
* @see https://developers.google.com/identity/protocols/oauth2
|
|
9
|
-
*/
|
|
10
|
-
declare const GoogleStrategy: OAuthStrategy;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { GoogleStrategy };
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
//#region src/toolkit/providers/google.ts
|
|
2
|
-
/**
|
|
3
|
-
* Google OAuth 2.0 / OpenID Connect strategy.
|
|
4
|
-
*
|
|
5
|
-
* @see https://developers.google.com/identity/protocols/oauth2
|
|
6
|
-
*/
|
|
7
|
-
const GoogleStrategy = {
|
|
8
|
-
name: "google",
|
|
9
|
-
authorizationEndpoint: "https://accounts.google.com/o/oauth2/v2/auth",
|
|
10
|
-
tokenEndpoint: "https://oauth2.googleapis.com/token",
|
|
11
|
-
userInfoEndpoint: "https://www.googleapis.com/oauth2/v3/userinfo",
|
|
12
|
-
scopes: [
|
|
13
|
-
"openid",
|
|
14
|
-
"email",
|
|
15
|
-
"profile"
|
|
16
|
-
]
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
//#endregion
|
|
20
|
-
export { GoogleStrategy };
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
//#region src/toolkit/providers/strategy.d.ts
|
|
2
|
-
/**
|
|
3
|
-
* OAuth 2.0 strategy interface and types for provider configurations.
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* OAuth 2.0 token response from provider's token endpoint.
|
|
7
|
-
* Based on RFC 6749 Section 5.1.
|
|
8
|
-
*/
|
|
9
|
-
interface OAuth2TokenResponse {
|
|
10
|
-
/** The access token issued by the authorization server */
|
|
11
|
-
access_token: string;
|
|
12
|
-
/** The type of token (usually "Bearer") */
|
|
13
|
-
token_type?: string;
|
|
14
|
-
/** The lifetime in seconds of the access token */
|
|
15
|
-
expires_in?: number;
|
|
16
|
-
/** The refresh token for obtaining new access tokens */
|
|
17
|
-
refresh_token?: string;
|
|
18
|
-
/** The scope of the access token (space-separated list) */
|
|
19
|
-
scope?: string;
|
|
20
|
-
/** OpenID Connect ID token (JWT) */
|
|
21
|
-
id_token?: string;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* OAuth 2.0 provider strategy definition.
|
|
25
|
-
* Defines the endpoints and default configuration for an OAuth provider.
|
|
26
|
-
*/
|
|
27
|
-
interface OAuthStrategy {
|
|
28
|
-
/** Provider name (e.g., "github", "google") */
|
|
29
|
-
readonly name: string;
|
|
30
|
-
/** OAuth authorization endpoint URL */
|
|
31
|
-
readonly authorizationEndpoint: string;
|
|
32
|
-
/** OAuth token exchange endpoint URL */
|
|
33
|
-
readonly tokenEndpoint: string;
|
|
34
|
-
/** Optional user info endpoint URL (for OpenID Connect) */
|
|
35
|
-
readonly userInfoEndpoint?: string;
|
|
36
|
-
/** Default scopes to request */
|
|
37
|
-
readonly scopes: string[];
|
|
38
|
-
}
|
|
39
|
-
//#endregion
|
|
40
|
-
export { OAuth2TokenResponse, OAuthStrategy };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { };
|