@c9up/warden 0.1.13 → 0.1.14
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/AuthManager.d.ts +45 -9
- package/dist/AuthManager.d.ts.map +1 -1
- package/dist/AuthManager.js +75 -23
- package/dist/AuthManager.js.map +1 -1
- package/dist/Authenticator.d.ts +128 -0
- package/dist/Authenticator.d.ts.map +1 -0
- package/dist/Authenticator.js +296 -0
- package/dist/Authenticator.js.map +1 -0
- package/dist/WardenProvider.d.ts.map +1 -1
- package/dist/WardenProvider.js +51 -23
- package/dist/WardenProvider.js.map +1 -1
- package/dist/bouncer/AbilitiesBuilder.d.ts +20 -0
- package/dist/bouncer/AbilitiesBuilder.d.ts.map +1 -0
- package/dist/bouncer/AbilitiesBuilder.js +32 -0
- package/dist/bouncer/AbilitiesBuilder.js.map +1 -0
- package/dist/bouncer/AuthorizationResponse.d.ts +18 -8
- package/dist/bouncer/AuthorizationResponse.d.ts.map +1 -1
- package/dist/bouncer/AuthorizationResponse.js +20 -8
- package/dist/bouncer/AuthorizationResponse.js.map +1 -1
- package/dist/bouncer/BasePolicy.d.ts +4 -3
- package/dist/bouncer/BasePolicy.d.ts.map +1 -1
- package/dist/bouncer/BasePolicy.js.map +1 -1
- package/dist/bouncer/Bouncer.d.ts +9 -2
- package/dist/bouncer/Bouncer.d.ts.map +1 -1
- package/dist/bouncer/Bouncer.js +59 -10
- package/dist/bouncer/Bouncer.js.map +1 -1
- package/dist/bouncer/PolicyAuthorizer.d.ts +2 -1
- package/dist/bouncer/PolicyAuthorizer.d.ts.map +1 -1
- package/dist/bouncer/PolicyAuthorizer.js +11 -3
- package/dist/bouncer/PolicyAuthorizer.js.map +1 -1
- package/dist/bouncer/evaluate.d.ts +1 -1
- package/dist/bouncer/evaluate.d.ts.map +1 -1
- package/dist/bouncer/evaluate.js +3 -2
- package/dist/bouncer/evaluate.js.map +1 -1
- package/dist/bouncer/types.d.ts +22 -1
- package/dist/bouncer/types.d.ts.map +1 -1
- package/dist/config.d.ts +34 -3
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +15 -0
- package/dist/config.js.map +1 -1
- package/dist/configure.d.ts.map +1 -1
- package/dist/configure.js +15 -13
- package/dist/configure.js.map +1 -1
- package/dist/errors.d.ts +27 -0
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +37 -1
- package/dist/errors.js.map +1 -1
- package/dist/index.d.ts +7 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/mfa/OtpProvider.d.ts.map +1 -1
- package/dist/mfa/OtpProvider.js +21 -3
- package/dist/mfa/OtpProvider.js.map +1 -1
- package/dist/mfa/WebauthnProvider.d.ts +24 -2
- package/dist/mfa/WebauthnProvider.d.ts.map +1 -1
- package/dist/mfa/WebauthnProvider.js +28 -8
- package/dist/mfa/WebauthnProvider.js.map +1 -1
- package/dist/middleware.d.ts +29 -6
- package/dist/middleware.d.ts.map +1 -1
- package/dist/middleware.js +85 -166
- package/dist/middleware.js.map +1 -1
- package/dist/standalone.d.ts.map +1 -1
- package/dist/standalone.js +21 -13
- package/dist/standalone.js.map +1 -1
- package/dist/strategies/ApiKeyStrategy.d.ts.map +1 -1
- package/dist/strategies/ApiKeyStrategy.js +4 -1
- package/dist/strategies/ApiKeyStrategy.js.map +1 -1
- package/dist/strategies/SessionStrategy.js +2 -2
- package/dist/strategies/SessionStrategy.js.map +1 -1
- package/index.darwin-arm64.node +0 -0
- package/index.darwin-x64.node +0 -0
- package/index.linux-arm64-gnu.node +0 -0
- package/index.linux-x64-gnu.node +0 -0
- package/index.win32-x64-msvc.node +0 -0
- package/package.json +2 -1
- package/src/AuthManager.ts +125 -28
- package/src/Authenticator.ts +385 -0
- package/src/WardenProvider.ts +51 -25
- package/src/bouncer/AbilitiesBuilder.ts +41 -0
- package/src/bouncer/AuthorizationResponse.ts +24 -16
- package/src/bouncer/BasePolicy.ts +4 -2
- package/src/bouncer/Bouncer.ts +77 -14
- package/src/bouncer/PolicyAuthorizer.ts +14 -4
- package/src/bouncer/evaluate.ts +4 -2
- package/src/bouncer/types.ts +24 -1
- package/src/config.ts +47 -3
- package/src/configure.ts +15 -13
- package/src/errors.ts +43 -1
- package/src/index.ts +22 -2
- package/src/mfa/OtpProvider.ts +31 -3
- package/src/mfa/WebauthnProvider.ts +58 -12
- package/src/middleware.ts +112 -207
- package/src/standalone.ts +22 -14
- package/src/strategies/ApiKeyStrategy.ts +4 -1
- package/src/strategies/SessionStrategy.ts +2 -2
package/dist/AuthManager.d.ts
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { RightsResolver } from "./rights/RightsResolver.js";
|
|
7
7
|
import type { EffectivePermissions, Scope } from "./rights/types.js";
|
|
8
|
+
import type { SessionStore } from "./strategies/SessionStrategy.js";
|
|
8
9
|
export interface UserPayload {
|
|
9
10
|
id: string;
|
|
10
11
|
roles?: string[];
|
|
@@ -29,15 +30,32 @@ export interface AuthStrategy {
|
|
|
29
30
|
authenticate(credentials: Record<string, unknown>): Promise<AuthResult>;
|
|
30
31
|
verify(token: string, context?: Record<string, unknown>): Promise<AuthResult>;
|
|
31
32
|
}
|
|
33
|
+
/**
|
|
34
|
+
* AuthManager configuration. Two equivalent forms are accepted:
|
|
35
|
+
*
|
|
36
|
+
* - AdonisJS form (preferred): `{ default, guards }` — `default` names the
|
|
37
|
+
* guard used when none is specified, `guards` maps guard name → strategy.
|
|
38
|
+
* - Legacy form: `{ defaultStrategy, strategies }` — kept working so existing
|
|
39
|
+
* call sites and tests need no change.
|
|
40
|
+
*
|
|
41
|
+
* Exactly one of each pair must be supplied. Internally normalised to the
|
|
42
|
+
* AdonisJS names (`default` / `guards`).
|
|
43
|
+
*/
|
|
32
44
|
export interface AuthConfig {
|
|
33
|
-
|
|
34
|
-
|
|
45
|
+
/** AdonisJS name for the default guard. */
|
|
46
|
+
default?: string;
|
|
47
|
+
/** AdonisJS name for the guard map (name → strategy). */
|
|
48
|
+
guards?: Record<string, AuthStrategy>;
|
|
49
|
+
/** Legacy alias for {@link AuthConfig.default}. */
|
|
50
|
+
defaultStrategy?: string;
|
|
51
|
+
/** Legacy alias for {@link AuthConfig.guards}. */
|
|
52
|
+
strategies?: Record<string, AuthStrategy>;
|
|
35
53
|
/**
|
|
36
54
|
* The rights resolver backing the coarse RBAC helpers (Epic 56). When
|
|
37
55
|
* absent, a default `RightsResolver(new MemoryRightsStore())` is used so
|
|
38
|
-
* `new AuthManager({
|
|
39
|
-
*
|
|
40
|
-
*
|
|
56
|
+
* `new AuthManager({ default, guards })` keeps working — with an empty
|
|
57
|
+
* store, payload roles still fold in (D2) and permissions are empty (token
|
|
58
|
+
* `user.permissions` is not an input — D1).
|
|
41
59
|
*/
|
|
42
60
|
rights?: RightsResolver;
|
|
43
61
|
}
|
|
@@ -45,8 +63,8 @@ export interface AuthConfig {
|
|
|
45
63
|
* Manages authentication strategies and provides guard/permission checks.
|
|
46
64
|
*/
|
|
47
65
|
export declare class AuthManager {
|
|
48
|
-
private
|
|
49
|
-
private
|
|
66
|
+
private guards;
|
|
67
|
+
private default;
|
|
50
68
|
private readonly rights;
|
|
51
69
|
constructor(config: AuthConfig);
|
|
52
70
|
/** Authenticate with credentials using a specific or default strategy. */
|
|
@@ -95,14 +113,32 @@ export declare class AuthManager {
|
|
|
95
113
|
/** Get a registered strategy by name. */
|
|
96
114
|
getStrategy(name?: string): AuthStrategy;
|
|
97
115
|
/**
|
|
98
|
-
* Name of the default
|
|
99
|
-
*
|
|
116
|
+
* Name of the default guard (Adonis's "default guard"). Used by `silentAuth`
|
|
117
|
+
* and the {@link Authenticator} to pick which guard to attempt when a route
|
|
118
|
+
* declares none.
|
|
100
119
|
*/
|
|
101
120
|
get defaultStrategyName(): string;
|
|
102
121
|
/** Register a new strategy at runtime. */
|
|
103
122
|
registerStrategy(name: string, strategy: AuthStrategy): void;
|
|
104
123
|
/** Get all registered strategy names. */
|
|
105
124
|
getStrategyNames(): string[];
|
|
125
|
+
/**
|
|
126
|
+
* Log a user in through a session-capable guard (AdonisJS
|
|
127
|
+
* `auth.use('web').login(user)` parity). Delegates to the guard's own
|
|
128
|
+
* `login()` — for `SessionStrategy` this rotates the session id (session
|
|
129
|
+
* fixation defence) and stores the user id. Throws if the resolved guard
|
|
130
|
+
* cannot log in (e.g. JWT / API-key guards, which are stateless).
|
|
131
|
+
*
|
|
132
|
+
* Fixes the misleading `SessionStrategy.authenticate()` sentinel that
|
|
133
|
+
* pointed at a then-nonexistent `authManager.login()` (bug-3261).
|
|
134
|
+
*/
|
|
135
|
+
login(user: UserPayload, session: SessionStore, strategyName?: string): Promise<void>;
|
|
136
|
+
/**
|
|
137
|
+
* Log a user out of a session-capable guard (AdonisJS `auth.use('web').logout()`
|
|
138
|
+
* parity). Delegates to the guard's `logout()`. Throws if the resolved guard
|
|
139
|
+
* cannot log out.
|
|
140
|
+
*/
|
|
141
|
+
logout(session: SessionStore, strategyName?: string): Promise<void>;
|
|
106
142
|
}
|
|
107
143
|
/** Strip dangerous prototype-pollution keys from user payload. */
|
|
108
144
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthManager.d.ts","sourceRoot":"","sources":["../src/AuthManager.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,KAAK,EAAE,oBAAoB,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"AuthManager.d.ts","sourceRoot":"","sources":["../src/AuthManager.ts"],"names":[],"mappings":"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"}
|
package/dist/AuthManager.js
CHANGED
|
@@ -18,26 +18,35 @@ function isTokenIssuer(strategy) {
|
|
|
18
18
|
* Manages authentication strategies and provides guard/permission checks.
|
|
19
19
|
*/
|
|
20
20
|
export class AuthManager {
|
|
21
|
-
|
|
22
|
-
defaultStrategy
|
|
21
|
+
// AdonisJS names: `guards` (name → strategy) and `default` (the guard used
|
|
22
|
+
// when none is named). Renamed from the previous `strategies`/`defaultStrategy`.
|
|
23
|
+
guards = new Map();
|
|
24
|
+
default;
|
|
23
25
|
rights;
|
|
24
26
|
constructor(config) {
|
|
25
|
-
|
|
27
|
+
// Normalise the two accepted forms — AdonisJS `{ default, guards }` and
|
|
28
|
+
// the legacy `{ defaultStrategy, strategies }` — to the AdonisJS names.
|
|
29
|
+
const guards = config.guards ?? config.strategies;
|
|
30
|
+
const defaultGuard = config.default ?? config.defaultStrategy;
|
|
31
|
+
if (!guards || defaultGuard === undefined) {
|
|
32
|
+
throw new WardenError("INVALID_CONFIG", "AuthManager: config must supply `default` + `guards` (or the legacy `defaultStrategy` + `strategies`).");
|
|
33
|
+
}
|
|
34
|
+
this.default = defaultGuard;
|
|
26
35
|
this.rights = config.rights ?? new RightsResolver(new MemoryRightsStore());
|
|
27
|
-
for (const [name, strategy] of Object.entries(
|
|
28
|
-
this.
|
|
36
|
+
for (const [name, strategy] of Object.entries(guards)) {
|
|
37
|
+
this.guards.set(name, strategy);
|
|
29
38
|
}
|
|
30
|
-
// Fail-fast at construction: an AuthManager with zero
|
|
31
|
-
//
|
|
32
|
-
//
|
|
33
|
-
//
|
|
34
|
-
//
|
|
35
|
-
//
|
|
36
|
-
if (
|
|
37
|
-
throw new WardenError("INVALID_CONFIG", `AuthManager: no authentication
|
|
39
|
+
// Fail-fast at construction: an AuthManager with zero guards is a
|
|
40
|
+
// configuration bug. Previously, an empty `guards: {}` passed the
|
|
41
|
+
// constructor cleanly and the first protected request crashed at
|
|
42
|
+
// runtime when `getStrategy('jwt')` threw — opaque 401 or 500 instead
|
|
43
|
+
// of a boot-time INVALID_CONFIG that points the operator at the missing
|
|
44
|
+
// `config.auth.jwt` (or other guard).
|
|
45
|
+
if (this.guards.size === 0) {
|
|
46
|
+
throw new WardenError("INVALID_CONFIG", `AuthManager: no authentication guards registered. Configure at least one guard (e.g. config.warden.auth.jwt) before booting WardenProvider.`);
|
|
38
47
|
}
|
|
39
|
-
if (!this.
|
|
40
|
-
throw new WardenError("INVALID_CONFIG", `
|
|
48
|
+
if (!this.guards.has(defaultGuard)) {
|
|
49
|
+
throw new WardenError("INVALID_CONFIG", `default guard '${defaultGuard}' is not present in guards`);
|
|
41
50
|
}
|
|
42
51
|
}
|
|
43
52
|
/** Authenticate with credentials using a specific or default strategy. */
|
|
@@ -98,7 +107,7 @@ export class AuthManager {
|
|
|
98
107
|
issueFor(user, strategyName) {
|
|
99
108
|
const strategy = this.getStrategy(strategyName);
|
|
100
109
|
if (!isTokenIssuer(strategy)) {
|
|
101
|
-
throw new WardenError("STRATEGY_CANNOT_ISSUE", `Auth strategy '${strategyName ?? this.
|
|
110
|
+
throw new WardenError("STRATEGY_CANNOT_ISSUE", `Auth strategy '${strategyName ?? this.default}' cannot issue tokens.`, {
|
|
102
111
|
hint: "issueFor() needs a token-minting strategy (e.g. JwtStrategy with signToken). Session / API-key strategies don't mint tokens.",
|
|
103
112
|
});
|
|
104
113
|
}
|
|
@@ -140,8 +149,8 @@ export class AuthManager {
|
|
|
140
149
|
}
|
|
141
150
|
/** Get a registered strategy by name. */
|
|
142
151
|
getStrategy(name) {
|
|
143
|
-
const strategyName = name ?? this.
|
|
144
|
-
const strategy = this.
|
|
152
|
+
const strategyName = name ?? this.default;
|
|
153
|
+
const strategy = this.guards.get(strategyName);
|
|
145
154
|
if (!strategy) {
|
|
146
155
|
throw new WardenError("STRATEGY_NOT_FOUND", `Auth strategy '${strategyName}' not registered`, {
|
|
147
156
|
hint: "Call registerStrategy() before using this strategy name.",
|
|
@@ -150,20 +159,63 @@ export class AuthManager {
|
|
|
150
159
|
return strategy;
|
|
151
160
|
}
|
|
152
161
|
/**
|
|
153
|
-
* Name of the default
|
|
154
|
-
*
|
|
162
|
+
* Name of the default guard (Adonis's "default guard"). Used by `silentAuth`
|
|
163
|
+
* and the {@link Authenticator} to pick which guard to attempt when a route
|
|
164
|
+
* declares none.
|
|
155
165
|
*/
|
|
156
166
|
get defaultStrategyName() {
|
|
157
|
-
return this.
|
|
167
|
+
return this.default;
|
|
158
168
|
}
|
|
159
169
|
/** Register a new strategy at runtime. */
|
|
160
170
|
registerStrategy(name, strategy) {
|
|
161
|
-
this.
|
|
171
|
+
this.guards.set(name, strategy);
|
|
162
172
|
}
|
|
163
173
|
/** Get all registered strategy names. */
|
|
164
174
|
getStrategyNames() {
|
|
165
|
-
return [...this.
|
|
175
|
+
return [...this.guards.keys()];
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* Log a user in through a session-capable guard (AdonisJS
|
|
179
|
+
* `auth.use('web').login(user)` parity). Delegates to the guard's own
|
|
180
|
+
* `login()` — for `SessionStrategy` this rotates the session id (session
|
|
181
|
+
* fixation defence) and stores the user id. Throws if the resolved guard
|
|
182
|
+
* cannot log in (e.g. JWT / API-key guards, which are stateless).
|
|
183
|
+
*
|
|
184
|
+
* Fixes the misleading `SessionStrategy.authenticate()` sentinel that
|
|
185
|
+
* pointed at a then-nonexistent `authManager.login()` (bug-3261).
|
|
186
|
+
*/
|
|
187
|
+
async login(user, session, strategyName) {
|
|
188
|
+
const strategy = this.getStrategy(strategyName);
|
|
189
|
+
if (!isLoginCapable(strategy)) {
|
|
190
|
+
throw new WardenError("STRATEGY_CANNOT_LOGIN", `Auth strategy '${strategyName ?? this.default}' does not support session login.`, {
|
|
191
|
+
hint: "login()/logout() need a stateful guard (e.g. SessionStrategy). JWT / API-key guards are stateless — mint a token with issueFor() instead.",
|
|
192
|
+
});
|
|
193
|
+
}
|
|
194
|
+
await strategy.login(user, session);
|
|
166
195
|
}
|
|
196
|
+
/**
|
|
197
|
+
* Log a user out of a session-capable guard (AdonisJS `auth.use('web').logout()`
|
|
198
|
+
* parity). Delegates to the guard's `logout()`. Throws if the resolved guard
|
|
199
|
+
* cannot log out.
|
|
200
|
+
*/
|
|
201
|
+
async logout(session, strategyName) {
|
|
202
|
+
const strategy = this.getStrategy(strategyName);
|
|
203
|
+
if (!isLoginCapable(strategy)) {
|
|
204
|
+
throw new WardenError("STRATEGY_CANNOT_LOGIN", `Auth strategy '${strategyName ?? this.default}' does not support session logout.`);
|
|
205
|
+
}
|
|
206
|
+
await strategy.logout(session);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* Capability check for {@link AuthManager.login}/{@link AuthManager.logout}.
|
|
211
|
+
* `login`/`logout` are not on the base `AuthStrategy` contract (only stateful
|
|
212
|
+
* guards implement them), so narrow via `in` + `typeof` — no cast.
|
|
213
|
+
*/
|
|
214
|
+
function isLoginCapable(strategy) {
|
|
215
|
+
return ("login" in strategy &&
|
|
216
|
+
typeof strategy.login === "function" &&
|
|
217
|
+
"logout" in strategy &&
|
|
218
|
+
typeof strategy.logout === "function");
|
|
167
219
|
}
|
|
168
220
|
/** Strip dangerous prototype-pollution keys from user payload. */
|
|
169
221
|
/**
|
package/dist/AuthManager.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthManager.js","sourceRoot":"","sources":["../src/AuthManager.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"AuthManager.js","sourceRoot":"","sources":["../src/AuthManager.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Authenticator — a PER-REQUEST authentication contract (AdonisJS
|
|
3
|
+
* `@adonisjs/auth` `Authenticator` parity), attached as `ctx.auth`.
|
|
4
|
+
*
|
|
5
|
+
* Why it exists: before this, `ctx.auth` was a plain data object with no
|
|
6
|
+
* methods, so an INLINE route handler (`router.post('/login', handler)`) had no
|
|
7
|
+
* way to authenticate on demand — only the `@Guard` decorator path worked, and
|
|
8
|
+
* that reads `ctx.route.controller/action`, which inline/functional routes don't
|
|
9
|
+
* expose. This contract makes `await ctx.auth.authenticate()` /
|
|
10
|
+
* `ctx.auth.use('session').login(user)` work anywhere, exactly like Adonis.
|
|
11
|
+
*
|
|
12
|
+
* Warden stays agnostic: the Authenticator is built from the {@link AuthManager}
|
|
13
|
+
* (resolved via `ctx.containerResolver`) + the request `ctx`; it never imports
|
|
14
|
+
* `@c9up/ream`.
|
|
15
|
+
*/
|
|
16
|
+
import { type AuthManager, type AuthResult, type UserPayload } from "./AuthManager.js";
|
|
17
|
+
import type { WardenContext } from "./middleware.js";
|
|
18
|
+
import type { SessionStore } from "./strategies/SessionStrategy.js";
|
|
19
|
+
/**
|
|
20
|
+
* Guard names Warden accepts for the API-key / access-tokens driver. AdonisJS
|
|
21
|
+
* names the driver `access_tokens`; the legacy `api-key` spelling stays valid so
|
|
22
|
+
* existing `@Guard('api-key')` routes and configs keep working.
|
|
23
|
+
*/
|
|
24
|
+
export declare const API_KEY_GUARD_NAMES: readonly string[];
|
|
25
|
+
/** The credentials Warden extracts from a request, independent of guard list. */
|
|
26
|
+
export interface ExtractedCredentials {
|
|
27
|
+
bearerToken: string;
|
|
28
|
+
apiKey: string;
|
|
29
|
+
session: SessionStore | undefined;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Extract the request's credentials once — a Bearer token, an API key (read from
|
|
33
|
+
* the configured header, matched case-insensitively), and the session store.
|
|
34
|
+
* Shared by `wardenMiddleware`, `silentAuth`, and the Authenticator so all three
|
|
35
|
+
* read credentials identically.
|
|
36
|
+
*/
|
|
37
|
+
export declare function extractCredentials(ctx: WardenContext, auth: AuthManager): ExtractedCredentials;
|
|
38
|
+
/** Outcome of {@link tryAuthenticate}. */
|
|
39
|
+
export interface AuthAttempt {
|
|
40
|
+
result: AuthResult | null;
|
|
41
|
+
/** Name of the guard that authenticated (only when `result.authenticated`). */
|
|
42
|
+
viaGuard?: string;
|
|
43
|
+
attemptCount: number;
|
|
44
|
+
crashCount: number;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Try each declared guard in order — session guards via `verifyWithContext()`,
|
|
48
|
+
* others via `verify(token)` with native-first credential fallback.
|
|
49
|
+
* Distinguishes crashes (strategy threw / `strategyCrash`) from credential
|
|
50
|
+
* rejections so the caller can return 500 vs 401.
|
|
51
|
+
*/
|
|
52
|
+
export declare function tryAuthenticate(auth: AuthManager, strategies: string[], creds: {
|
|
53
|
+
bearerToken: string;
|
|
54
|
+
apiKey: string;
|
|
55
|
+
session: SessionStore | undefined;
|
|
56
|
+
hasSessionStrategy: boolean;
|
|
57
|
+
}): Promise<AuthAttempt>;
|
|
58
|
+
/**
|
|
59
|
+
* A named-guard accessor (AdonisJS `auth.use('web')`). Exposes the stateful
|
|
60
|
+
* `login()`/`logout()` for session guards plus per-guard `authenticate()`.
|
|
61
|
+
*/
|
|
62
|
+
export declare class GuardAccessor {
|
|
63
|
+
#private;
|
|
64
|
+
constructor(ctx: WardenContext, auth: AuthManager, name: string, parent: Authenticator);
|
|
65
|
+
/** The user, only if the request authenticated via THIS guard. */
|
|
66
|
+
get user(): UserPayload | undefined;
|
|
67
|
+
get isAuthenticated(): boolean;
|
|
68
|
+
/** Authenticate the request using only this guard (throws on failure). */
|
|
69
|
+
authenticate(): Promise<void>;
|
|
70
|
+
/** Log a user in through this guard (session guards). */
|
|
71
|
+
login(user: UserPayload): Promise<void>;
|
|
72
|
+
/** Log the current user out of this guard (session guards). */
|
|
73
|
+
logout(): Promise<void>;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Per-request Authenticator attached as `ctx.auth`. Mirrors AdonisJS's
|
|
77
|
+
* `Authenticator` surface: `authenticate` / `check` / `authenticateUsing` /
|
|
78
|
+
* `getUserOrFail` / `use`, plus the `user` / `isAuthenticated` /
|
|
79
|
+
* `authenticationAttempted` / `authenticatedViaGuard` getters.
|
|
80
|
+
*/
|
|
81
|
+
export declare class Authenticator {
|
|
82
|
+
#private;
|
|
83
|
+
constructor(ctx: WardenContext, auth: AuthManager);
|
|
84
|
+
/** The authenticated user, or `undefined` for a guest. */
|
|
85
|
+
get user(): UserPayload | undefined;
|
|
86
|
+
/** Whether the request has an authenticated user (AdonisJS name). */
|
|
87
|
+
get isAuthenticated(): boolean;
|
|
88
|
+
/** Whether `authenticate`/`check`/`authenticateUsing` ran this request. */
|
|
89
|
+
get authenticationAttempted(): boolean;
|
|
90
|
+
/** Name of the guard that authenticated the request, if any. */
|
|
91
|
+
get authenticatedViaGuard(): string | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* Roles of the authenticated user (Ream reads `ctx.auth.roles ??
|
|
94
|
+
* ctx.auth.user.roles`). Warden nests them under `user`; this getter mirrors
|
|
95
|
+
* them at the top level for the host's guard readers.
|
|
96
|
+
*/
|
|
97
|
+
get roles(): string[] | undefined;
|
|
98
|
+
/** Permissions of the authenticated user (see {@link Authenticator.roles}). */
|
|
99
|
+
get permissions(): string[] | undefined;
|
|
100
|
+
/** Authenticate via the default guard. Throws `E_UNAUTHORIZED_ACCESS` on failure. */
|
|
101
|
+
authenticate(): Promise<void>;
|
|
102
|
+
/**
|
|
103
|
+
* Like {@link Authenticator.authenticate} but returns a boolean instead of
|
|
104
|
+
* throwing on a credential rejection. A strategy CRASH / config error still
|
|
105
|
+
* propagates (a server incident must not be silently swallowed as "guest").
|
|
106
|
+
*/
|
|
107
|
+
check(): Promise<boolean>;
|
|
108
|
+
/**
|
|
109
|
+
* Authenticate by trying the given guards in order (default: the default
|
|
110
|
+
* guard). Sets the user on the first success; throws `E_UNAUTHORIZED_ACCESS`
|
|
111
|
+
* (401, carrying `redirectTo` for session guards) when all reject, or a
|
|
112
|
+
* `WARDEN_AUTH_STRATEGY_ERROR` (500) when every attempted guard crashed.
|
|
113
|
+
*/
|
|
114
|
+
authenticateUsing(guards?: string[], options?: {
|
|
115
|
+
loginRoute?: string;
|
|
116
|
+
}): Promise<void>;
|
|
117
|
+
/** Return the authenticated user or throw `E_UNAUTHORIZED_ACCESS`. */
|
|
118
|
+
getUserOrFail(): UserPayload;
|
|
119
|
+
/** Access a named guard (AdonisJS `auth.use('web')`). Instances are cached per request. */
|
|
120
|
+
use(name: string): GuardAccessor;
|
|
121
|
+
/**
|
|
122
|
+
* @internal Seed the Authenticator from a result the enforcing middleware
|
|
123
|
+
* already computed, so `ctx.auth` reflects the authenticated user without a
|
|
124
|
+
* second verify pass.
|
|
125
|
+
*/
|
|
126
|
+
adopt(result: AuthResult | null, viaGuard: string | undefined): void;
|
|
127
|
+
}
|
|
128
|
+
//# sourceMappingURL=Authenticator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Authenticator.d.ts","sourceRoot":"","sources":["../src/Authenticator.ts"],"names":[],"mappings":"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"}
|