@seamless-auth/express 0.0.2-beta.7 → 0.0.2-beta.8
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/LICENSE +79 -0
- package/LICENSE.md +26 -0
- package/README.md +99 -123
- package/dist/index.d.ts +36 -56
- package/dist/index.js +393 -464
- package/package.json +29 -13
package/LICENSE
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 19 November 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc.
|
|
5
|
+
<https://fsf.org/>
|
|
6
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
7
|
+
of this license document, but changing it is not allowed.
|
|
8
|
+
|
|
9
|
+
This license is identical to the GNU General Public License, except that it also
|
|
10
|
+
ensures that software running as a network service makes its source code
|
|
11
|
+
available to users.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
TERMS AND CONDITIONS
|
|
16
|
+
|
|
17
|
+
0. Definitions.
|
|
18
|
+
|
|
19
|
+
“This License” refers to version 3 of the GNU Affero General Public License.
|
|
20
|
+
|
|
21
|
+
“Copyright” also means copyright-like laws that apply to other kinds of works,
|
|
22
|
+
such as semiconductor masks.
|
|
23
|
+
|
|
24
|
+
The “Program” refers to any copyrightable work licensed under this License.
|
|
25
|
+
Each licensee is addressed as “you”.
|
|
26
|
+
|
|
27
|
+
To “modify” a work means to copy from or adapt all or part of the work in a
|
|
28
|
+
fashion requiring copyright permission, other than the making of an exact copy.
|
|
29
|
+
|
|
30
|
+
To “propagate” a work means to do anything with it that, without permission,
|
|
31
|
+
would make you directly or secondarily liable for infringement under applicable
|
|
32
|
+
copyright law, except executing it on a computer or modifying a private copy.
|
|
33
|
+
|
|
34
|
+
To “convey” a work means any kind of propagation that enables other parties to
|
|
35
|
+
make or receive copies.
|
|
36
|
+
|
|
37
|
+
An interactive user interface displays “Appropriate Legal Notices” to the extent
|
|
38
|
+
that it includes a convenient and prominently visible feature that displays an
|
|
39
|
+
appropriate copyright notice, and tells the user that there is no warranty for
|
|
40
|
+
the work (except to the extent that warranties are provided), that licensees may
|
|
41
|
+
convey the work under this License, and how to view a copy of this License.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
13. Remote Network Interaction; Use with the GNU General Public License.
|
|
46
|
+
|
|
47
|
+
Notwithstanding any other provision of this License, if you modify the Program,
|
|
48
|
+
your modified version must prominently offer all users interacting with it
|
|
49
|
+
remotely through a computer network an opportunity to receive the Corresponding
|
|
50
|
+
Source of your version by providing access to the Corresponding Source from a
|
|
51
|
+
network server at no charge, through some standard or customary means of
|
|
52
|
+
facilitating copying of software.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
15. Disclaimer of Warranty.
|
|
57
|
+
|
|
58
|
+
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
|
59
|
+
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER
|
|
60
|
+
PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER
|
|
61
|
+
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
62
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
16. Limitation of Liability.
|
|
67
|
+
|
|
68
|
+
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY
|
|
69
|
+
COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS
|
|
70
|
+
PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
|
|
71
|
+
INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE
|
|
72
|
+
THE PROGRAM.
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
END OF TERMS AND CONDITIONS
|
|
77
|
+
|
|
78
|
+
You should have received a copy of the GNU Affero General Public License along
|
|
79
|
+
with this program. If not, see <https://www.gnu.org/licenses/>.
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# License
|
|
2
|
+
|
|
3
|
+
Seamless Auth Server - Express ("@seamlessauth/express") is licensed under the **GNU Affero General Public License v3.0 (AGPL-3.0-only)**.
|
|
4
|
+
|
|
5
|
+
- SPDX: `AGPL-3.0-only`
|
|
6
|
+
|
|
7
|
+
## What this means (high level)
|
|
8
|
+
|
|
9
|
+
- You are free to **use**, **modify**, and **self-host** this software.
|
|
10
|
+
- If you **modify** this software and **run it as a network service** (for example, hosting it for others to use), you must **make the complete corresponding source code of your modified version available** to users of that service, under the AGPL.
|
|
11
|
+
|
|
12
|
+
This summary is not legal advice and does not replace the license text.
|
|
13
|
+
|
|
14
|
+
## Full license text
|
|
15
|
+
|
|
16
|
+
The full license text is available here:
|
|
17
|
+
|
|
18
|
+
- https://www.gnu.org/licenses/agpl-3.0.html
|
|
19
|
+
|
|
20
|
+
You should include a copy of the AGPLv3 license in your distribution. If this repository does not contain the full license text yet, add it as `LICENSE` or `LICENSE.txt` (recommended), and keep this `LICENSE.md` as the human-friendly summary.
|
|
21
|
+
|
|
22
|
+
## Commercial licensing
|
|
23
|
+
|
|
24
|
+
If you would like to embed Seamless Auth API into a proprietary product, redistribute it under different terms, or offer it as a managed service without AGPL obligations, commercial licensing may be available.
|
|
25
|
+
|
|
26
|
+
Contact: support@seamlessauth.com
|
package/README.md
CHANGED
|
@@ -1,78 +1,92 @@
|
|
|
1
|
-
# @seamless-auth/
|
|
1
|
+
# @seamless-auth/express
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@seamless-auth/express)
|
|
4
|
+
[](#testing)
|
|
5
|
+
[](#license)
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
### Seamless Auth – Express Adapter
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
A secure, passwordless **server-side adapter** for Express that connects your API to a private **Seamless Auth Server**.
|
|
10
|
+
|
|
11
|
+
This package:
|
|
12
|
+
|
|
13
|
+
- Proxies authentication flows
|
|
14
|
+
- Manages signed, HttpOnly session cookies
|
|
15
|
+
- Enforces authentication and authorization in your API
|
|
16
|
+
- Handles all API ↔ Auth Server communication via short-lived service tokens
|
|
8
17
|
|
|
9
18
|
> **npm:** https://www.npmjs.com/package/@seamless-auth/express
|
|
10
19
|
> **Docs:** https://docs.seamlessauth.com
|
|
11
20
|
> **Repo:** https://github.com/fells-code/seamless-auth-server
|
|
12
21
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
> Or get a full starter application with https://github.com/fells-code/create-seamless
|
|
22
|
+
Pair this with:
|
|
16
23
|
|
|
17
|
-
|
|
24
|
+
- **React SDK:** https://github.com/fells-code/seamless-auth-react
|
|
25
|
+
- **Starter app:** https://github.com/fells-code/create-seamless
|
|
18
26
|
|
|
19
27
|
---
|
|
20
28
|
|
|
21
29
|
## Installation
|
|
22
30
|
|
|
23
31
|
```bash
|
|
24
|
-
npm install @seamless-auth/
|
|
32
|
+
npm install @seamless-auth/express
|
|
25
33
|
# or
|
|
26
|
-
yarn add @seamless-auth/
|
|
34
|
+
yarn add @seamless-auth/express
|
|
27
35
|
```
|
|
28
36
|
|
|
29
|
-
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## Quick Start
|
|
30
40
|
|
|
31
41
|
```ts
|
|
32
42
|
import express from "express";
|
|
33
43
|
import cookieParser from "cookie-parser";
|
|
34
|
-
import
|
|
44
|
+
import {
|
|
45
|
+
createSeamlessAuthServer,
|
|
35
46
|
requireAuth,
|
|
36
47
|
requireRole,
|
|
37
|
-
} from "@seamless-auth/
|
|
48
|
+
} from "@seamless-auth/express";
|
|
38
49
|
|
|
39
50
|
const app = express();
|
|
51
|
+
app.use(express.json());
|
|
40
52
|
app.use(cookieParser());
|
|
41
53
|
|
|
42
|
-
//
|
|
54
|
+
// Mount Seamless Auth routes
|
|
43
55
|
app.use(
|
|
44
56
|
"/auth",
|
|
45
|
-
createSeamlessAuthServer({
|
|
57
|
+
createSeamlessAuthServer({
|
|
58
|
+
authServerUrl: process.env.AUTH_SERVER_URL!,
|
|
59
|
+
}),
|
|
46
60
|
);
|
|
47
61
|
|
|
48
|
-
// Everything
|
|
62
|
+
// Everything below requires authentication
|
|
49
63
|
app.use(requireAuth());
|
|
50
64
|
|
|
51
|
-
app.get("/api/me", (req, res) =>
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
65
|
+
app.get("/api/me", (req, res) => {
|
|
66
|
+
res.json({ user: req.user });
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
app.get("/admin", requireRole("admin"), (req, res) => {
|
|
70
|
+
res.json({ message: "Welcome admin!" });
|
|
71
|
+
});
|
|
55
72
|
|
|
56
|
-
app.listen(5000, () => console.log("
|
|
73
|
+
app.listen(5000, () => console.log("API running on http://localhost:3000"));
|
|
57
74
|
```
|
|
58
75
|
|
|
59
76
|
---
|
|
60
77
|
|
|
61
|
-
# Full Documentation
|
|
62
|
-
|
|
63
78
|
## Overview
|
|
64
79
|
|
|
65
|
-
`@seamless-auth/express` lets your backend API act as
|
|
80
|
+
`@seamless-auth/express` lets your backend API act as the **security boundary** for authentication and authorization.
|
|
66
81
|
|
|
67
|
-
|
|
82
|
+
Your API:
|
|
68
83
|
|
|
69
|
-
-
|
|
70
|
-
-
|
|
71
|
-
-
|
|
72
|
-
-
|
|
73
|
-
- Internal Auth Server communication (JWKS + service tokens)
|
|
84
|
+
- owns user session cookies
|
|
85
|
+
- verifies identity locally
|
|
86
|
+
- asserts identity upstream using service tokens
|
|
87
|
+
- never forwards browser cookies to the Auth Server
|
|
74
88
|
|
|
75
|
-
|
|
89
|
+
This keeps trust boundaries clean and auditable.
|
|
76
90
|
|
|
77
91
|
---
|
|
78
92
|
|
|
@@ -84,9 +98,9 @@ Everything happens securely between your API and a private Seamless Auth Server.
|
|
|
84
98
|
▼
|
|
85
99
|
[Your Express API]
|
|
86
100
|
├─ createSeamlessAuthServer() ← mounts /auth routes
|
|
87
|
-
├─ requireAuth() ← verifies
|
|
88
|
-
├─ requireRole(
|
|
89
|
-
└─ getSeamlessUser() ←
|
|
101
|
+
├─ requireAuth() ← verifies access cookie
|
|
102
|
+
├─ requireRole("admin") ← role-based guard
|
|
103
|
+
└─ getSeamlessUser() ← optional user hydration
|
|
90
104
|
│
|
|
91
105
|
▼
|
|
92
106
|
[Private Seamless Auth Server]
|
|
@@ -96,12 +110,14 @@ Everything happens securely between your API and a private Seamless Auth Server.
|
|
|
96
110
|
|
|
97
111
|
## Environment Variables
|
|
98
112
|
|
|
99
|
-
| Variable
|
|
100
|
-
|
|
|
101
|
-
| `AUTH_SERVER_URL`
|
|
102
|
-
| `
|
|
103
|
-
| `
|
|
104
|
-
| `
|
|
113
|
+
| Variable | Description | Example |
|
|
114
|
+
| -------------------- | ----------------------------------------- | ------------------------------------------------------ |
|
|
115
|
+
| `AUTH_SERVER_URL` | Base URL of your Seamless Auth Server | `https://auth.client.com` |
|
|
116
|
+
| `COOKIE_SIGNING_KEY` | Secret for signing API session cookies | `local-dev-secret` |
|
|
117
|
+
| `API_SERVICE_TOKEN` | API → Auth Server service secret | `shared-m2m-value` |
|
|
118
|
+
| `APP_ORIGIN` | Your site URL (or localhost in demo mode) | `https://myapp.com` |
|
|
119
|
+
| `DATABASE_URL` | Database URL for your API | `postgres://myuser:mypassword@localhost:5432/seamless` |
|
|
120
|
+
| `DB_NAME` | Name of your database | `seamless` |
|
|
105
121
|
|
|
106
122
|
---
|
|
107
123
|
|
|
@@ -109,35 +125,35 @@ Everything happens securely between your API and a private Seamless Auth Server.
|
|
|
109
125
|
|
|
110
126
|
### `createSeamlessAuthServer(options)`
|
|
111
127
|
|
|
112
|
-
Mounts an Express router
|
|
128
|
+
Mounts an Express router that exposes the full Seamless Auth flow under `/auth`.
|
|
129
|
+
|
|
130
|
+
Routes include:
|
|
113
131
|
|
|
114
132
|
- `/auth/login/start`
|
|
115
133
|
- `/auth/login/finish`
|
|
116
|
-
- `/auth/webauthn
|
|
117
|
-
- `/auth/registration
|
|
118
|
-
- `/auth/me`
|
|
134
|
+
- `/auth/webauthn/*`
|
|
135
|
+
- `/auth/registration/*`
|
|
136
|
+
- `/auth/users/me`
|
|
119
137
|
- `/auth/logout`
|
|
120
138
|
|
|
121
139
|
**Options**
|
|
122
140
|
|
|
123
141
|
```ts
|
|
124
142
|
{
|
|
125
|
-
authServerUrl: string;
|
|
126
|
-
cookieDomain?: string;
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
};
|
|
143
|
+
authServerUrl: string; // required
|
|
144
|
+
cookieDomain?: string; // optional (defaults to host)
|
|
145
|
+
accessCookieName?: string;
|
|
146
|
+
registrationCookieName?: string;
|
|
147
|
+
refreshCookieName?: string;
|
|
148
|
+
preAuthCookieName?: string;
|
|
132
149
|
}
|
|
133
150
|
```
|
|
134
151
|
|
|
135
152
|
---
|
|
136
153
|
|
|
137
|
-
### `requireAuth(
|
|
154
|
+
### `requireAuth(options?)`
|
|
138
155
|
|
|
139
|
-
|
|
140
|
-
and attaches the decoded user payload to `req.user`.
|
|
156
|
+
Express middleware that verifies a signed access cookie and attaches the decoded user payload to `req.user`.
|
|
141
157
|
|
|
142
158
|
```ts
|
|
143
159
|
app.get("/api/profile", requireAuth(), (req, res) => {
|
|
@@ -147,10 +163,11 @@ app.get("/api/profile", requireAuth(), (req, res) => {
|
|
|
147
163
|
|
|
148
164
|
---
|
|
149
165
|
|
|
150
|
-
### `requireRole(role: string
|
|
166
|
+
### `requireRole(role: string)`
|
|
167
|
+
|
|
168
|
+
Role-based authorization middleware.
|
|
151
169
|
|
|
152
|
-
|
|
153
|
-
Blocks non-matching roles with HTTP 403.
|
|
170
|
+
Blocks requests when the authenticated user does not have the required role.
|
|
154
171
|
|
|
155
172
|
```ts
|
|
156
173
|
app.get("/admin", requireRole("admin"), (req, res) => {
|
|
@@ -162,108 +179,67 @@ app.get("/admin", requireRole("admin"), (req, res) => {
|
|
|
162
179
|
|
|
163
180
|
### `getSeamlessUser(req, authServerUrl, cookieName?)`
|
|
164
181
|
|
|
165
|
-
|
|
166
|
-
|
|
182
|
+
Optional helper that calls the Auth Server to retrieve the **fully hydrated user object**.
|
|
183
|
+
|
|
184
|
+
This does **not** enforce authentication.
|
|
167
185
|
|
|
168
186
|
```ts
|
|
169
|
-
const user = await getSeamlessUser(req, process.env.AUTH_SERVER_URL
|
|
187
|
+
const user = await getSeamlessUser(req, process.env.AUTH_SERVER_URL);
|
|
170
188
|
```
|
|
171
189
|
|
|
172
|
-
|
|
190
|
+
Returned shape (example):
|
|
173
191
|
|
|
174
192
|
```ts
|
|
175
193
|
{
|
|
176
194
|
id: string;
|
|
177
195
|
email: string;
|
|
178
196
|
phone: string;
|
|
179
|
-
roles: string[]
|
|
197
|
+
roles: string[];
|
|
180
198
|
}
|
|
181
199
|
```
|
|
182
200
|
|
|
201
|
+
---
|
|
202
|
+
|
|
183
203
|
## End-to-End Flow
|
|
184
204
|
|
|
185
205
|
1. **Frontend** → `/auth/login/start`
|
|
186
|
-
|
|
187
|
-
→ sets short-lived pre-auth cookie.
|
|
206
|
+
API proxies request and sets a short-lived _pre-auth_ cookie.
|
|
188
207
|
|
|
189
208
|
2. **Frontend** → `/auth/webauthn/finish`
|
|
190
|
-
|
|
209
|
+
API verifies response and sets a signed access cookie.
|
|
191
210
|
|
|
192
|
-
3. **
|
|
193
|
-
|
|
194
|
-
→ Role routes use `requireRole()`.
|
|
211
|
+
3. **API routes** → `/api/*`
|
|
212
|
+
`requireAuth()` verifies the cookie and attaches `req.user`.
|
|
195
213
|
|
|
196
214
|
---
|
|
197
215
|
|
|
198
216
|
## Local Development
|
|
199
217
|
|
|
200
|
-
In order to develop with your Seamless Auth server instance, you will need to have:
|
|
201
|
-
|
|
202
|
-
- Created an account @ https://dashboard.seamlessauth.com
|
|
203
|
-
- Created a new Seamless Auth application
|
|
204
|
-
|
|
205
|
-
Example env:
|
|
206
|
-
|
|
207
218
|
```bash
|
|
208
|
-
AUTH_SERVER_URL=
|
|
209
|
-
SEAMLESS_SERVICE_TOKEN=
|
|
210
|
-
|
|
211
|
-
|
|
219
|
+
AUTH_SERVER_URL=http://localhost:5312
|
|
220
|
+
SEAMLESS_SERVICE_TOKEN=generated-secret
|
|
221
|
+
COOKIE_SIGNING_KEY=local-dev-key
|
|
222
|
+
FRONTEND_URL=https://localhost:5001
|
|
212
223
|
```
|
|
213
224
|
|
|
214
225
|
---
|
|
215
226
|
|
|
216
|
-
## Example Middleware Stack
|
|
217
|
-
|
|
218
|
-
```ts
|
|
219
|
-
const AUTH_SERVER_URL = process.env.AUTH_SERVER_URL!;
|
|
220
|
-
app.use(cors({ origin: "https://localhost:5001", credentials: true }));
|
|
221
|
-
app.use(express.json());
|
|
222
|
-
app.use(cookieParser());
|
|
223
|
-
app.use("/auth", createSeamlessAuthServer({ authServerUrl: AUTH_SERVER_URL }));
|
|
224
|
-
app.use(requireAuth());
|
|
225
|
-
```
|
|
226
|
-
|
|
227
|
-
---
|
|
228
|
-
|
|
229
|
-
## Security Model
|
|
230
|
-
|
|
231
|
-
| Layer | Auth Mechanism | Signed By |
|
|
232
|
-
| --------------------- | ------------------------------------- | ------------------ |
|
|
233
|
-
| **Frontend ↔ API** | Signed JWT in HttpOnly cookie (HS256) | Client API |
|
|
234
|
-
| **API ↔ Auth Server** | Bearer Service JWT (RS256) | API’s private key |
|
|
235
|
-
| **Auth Server** | Validates service tokens via JWKS | Seamless Auth JWKS |
|
|
236
|
-
|
|
237
|
-
All tokens and cookies are stateless and cryptographically verifiable.
|
|
238
|
-
|
|
239
|
-
---
|
|
240
|
-
|
|
241
227
|
## Testing
|
|
242
228
|
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
Example:
|
|
229
|
+
This package includes **Express smoke tests** using `supertest`.
|
|
246
230
|
|
|
247
|
-
|
|
248
|
-
import { requireAuth } from "@seamless-auth/server-express";
|
|
249
|
-
app.get("/api/test", requireAuth(), (req, res) => res.json({ ok: true }));
|
|
250
|
-
```
|
|
231
|
+
Core authentication logic is tested separately in `@seamless-auth/core`.
|
|
251
232
|
|
|
252
233
|
---
|
|
253
234
|
|
|
254
|
-
##
|
|
235
|
+
## License
|
|
255
236
|
|
|
256
|
-
|
|
257
|
-
| -------------------------------------------- | ----------- |
|
|
258
|
-
| JWKS-verified response signing | ✅ |
|
|
259
|
-
| OIDC discovery & SSO readiness | planned |
|
|
260
|
-
| Federation (Google / Okta) | future |
|
|
261
|
-
| Multi-framework adapters (Next.js / Fastify) | coming soon |
|
|
237
|
+
**AGPL-3.0-only** © 2026 Fells Code LLC
|
|
262
238
|
|
|
263
|
-
|
|
239
|
+
This license ensures:
|
|
264
240
|
|
|
265
|
-
|
|
241
|
+
- transparency of security-critical code
|
|
242
|
+
- freedom to self-host and modify
|
|
243
|
+
- sustainability of the managed service offering
|
|
266
244
|
|
|
267
|
-
|
|
268
|
-
Part of the **Seamless Auth** ecosystem.
|
|
269
|
-
https://seamlessauth.com
|
|
245
|
+
See [`LICENSE`](./LICENSE) for details.
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { JwtPayload } from 'jsonwebtoken';
|
|
|
4
4
|
interface SeamlessAuthServerOptions {
|
|
5
5
|
authServerUrl: string;
|
|
6
6
|
cookieDomain?: string;
|
|
7
|
-
|
|
7
|
+
accessCookieName?: string;
|
|
8
8
|
registrationCookieName?: string;
|
|
9
9
|
refreshCookieName?: string;
|
|
10
10
|
preAuthCookieName?: string;
|
|
@@ -38,7 +38,7 @@ interface SeamlessAuthServerOptions {
|
|
|
38
38
|
* app.use("/auth", createSeamlessAuthServer({
|
|
39
39
|
* authServerUrl: "https://identifier.seamlessauth.com",
|
|
40
40
|
* cookieDomain: "mycompany.com",
|
|
41
|
-
*
|
|
41
|
+
* accessCookieName: "sa_access",
|
|
42
42
|
* registrationCookieName: "sa_registration",
|
|
43
43
|
* refreshCookieName: "sa_refresh",
|
|
44
44
|
* }));
|
|
@@ -47,7 +47,7 @@ interface SeamlessAuthServerOptions {
|
|
|
47
47
|
* @param opts - Configuration options for the Seamless Auth proxy:
|
|
48
48
|
* - `authServerUrl` — Base URL of your Seamless Auth instance (required)
|
|
49
49
|
* - `cookieDomain` — Domain attribute applied to all auth cookies
|
|
50
|
-
* - `
|
|
50
|
+
* - `accessCookieName` — Name of the session access cookie
|
|
51
51
|
* - `registrationCookieName` — Name of the ephemeral registration cookie
|
|
52
52
|
* - `refreshCookieName` — Name of the refresh token cookie
|
|
53
53
|
* - `preAuthCookieName` — Name of the cookie used during login initiation
|
|
@@ -106,7 +106,22 @@ declare function createSeamlessAuthServer(opts: SeamlessAuthServerOptions): Rout
|
|
|
106
106
|
* @returns An Express middleware function that enforces Seamless Auth
|
|
107
107
|
* authentication on incoming requests.
|
|
108
108
|
*/
|
|
109
|
-
|
|
109
|
+
interface AuthenticatedRequest extends Request {
|
|
110
|
+
user?: JwtPayload;
|
|
111
|
+
}
|
|
112
|
+
interface RequireAuthOptions {
|
|
113
|
+
cookieName?: string;
|
|
114
|
+
cookieSecret: string;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Express middleware that enforces authentication
|
|
118
|
+
* using an already-issued Seamless Auth access cookie.
|
|
119
|
+
*
|
|
120
|
+
* NOTE:
|
|
121
|
+
* - This middleware does NOT attempt token refresh.
|
|
122
|
+
* - Refresh is handled upstream by ensureCookies().
|
|
123
|
+
*/
|
|
124
|
+
declare function requireAuth(opts: RequireAuthOptions): (req: AuthenticatedRequest, res: Response, next: NextFunction) => void;
|
|
110
125
|
|
|
111
126
|
/**
|
|
112
127
|
* Express middleware that enforces role-based authorization for Seamless Auth sessions.
|
|
@@ -156,58 +171,23 @@ declare function requireAuth(cookieName?: string, refreshCookieName?: string, co
|
|
|
156
171
|
*/
|
|
157
172
|
declare function requireRole(role: string, cookieName?: string): RequestHandler;
|
|
158
173
|
|
|
159
|
-
interface
|
|
160
|
-
|
|
174
|
+
interface EnsureCookiesMiddlewareOptions {
|
|
175
|
+
authServerUrl: string;
|
|
176
|
+
cookieDomain?: string;
|
|
177
|
+
accessCookieName: string;
|
|
178
|
+
registrationCookieName: string;
|
|
179
|
+
refreshCookieName: string;
|
|
180
|
+
preAuthCookieName: string;
|
|
181
|
+
cookieSecret: string;
|
|
182
|
+
serviceSecret: string;
|
|
183
|
+
issuer: string;
|
|
184
|
+
audience: string;
|
|
185
|
+
keyId: string;
|
|
161
186
|
}
|
|
187
|
+
declare function createEnsureCookiesMiddleware(opts: EnsureCookiesMiddlewareOptions): (req: Request & {
|
|
188
|
+
cookiePayload?: any;
|
|
189
|
+
}, res: Response, next: NextFunction) => Promise<void>;
|
|
162
190
|
|
|
163
|
-
|
|
164
|
-
* Retrieves the authenticated Seamless Auth user for a request by calling
|
|
165
|
-
* the upstream Seamless Auth Server’s introspection endpoint.
|
|
166
|
-
*
|
|
167
|
-
* This helper is used when server-side code needs the fully hydrated
|
|
168
|
-
* Seamless Auth user object (including roles, metadata, and profile fields),
|
|
169
|
-
* not just the JWT payload extracted from cookies.
|
|
170
|
-
*
|
|
171
|
-
* Unlike `requireAuth`, this helper does **not** enforce authentication.
|
|
172
|
-
* It simply returns:
|
|
173
|
-
* - The resolved user object (if the session is valid)
|
|
174
|
-
* - `null` if the session is invalid, expired, or missing
|
|
175
|
-
*
|
|
176
|
-
* ### Responsibilities
|
|
177
|
-
* - Extracts the access cookie (or refresh cookie when needed)
|
|
178
|
-
* - Calls the Seamless Auth Server’s `/internal/session/introspect` endpoint
|
|
179
|
-
* - Validates whether the session is active
|
|
180
|
-
* - Returns the user object or `null` without throwing
|
|
181
|
-
*
|
|
182
|
-
* ### Use Cases
|
|
183
|
-
* - Fetching the current user in internal APIs
|
|
184
|
-
* - Enriching backend requests with server-authoritative user information
|
|
185
|
-
* - Logging, analytics, auditing
|
|
186
|
-
* - Optional-auth routes that behave differently for signed-in users
|
|
187
|
-
*
|
|
188
|
-
* ### Example
|
|
189
|
-
* ```ts
|
|
190
|
-
* app.get("/portal/me", async (req, res) => {
|
|
191
|
-
* const user = await getSeamlessUser(req, process.env.SA_AUTH_SERVER_URL);
|
|
192
|
-
*
|
|
193
|
-
* if (!user) {
|
|
194
|
-
* return res.json({ user: null });
|
|
195
|
-
* }
|
|
196
|
-
*
|
|
197
|
-
* return res.json({ user });
|
|
198
|
-
* });
|
|
199
|
-
* ```
|
|
200
|
-
*
|
|
201
|
-
* ### Returns
|
|
202
|
-
* - A full Seamless Auth user object (if active)
|
|
203
|
-
* - `null` if not authenticated or session expired
|
|
204
|
-
*
|
|
205
|
-
* @param req - The Express request object containing auth cookies.
|
|
206
|
-
* @param authServerUrl - Base URL of the Seamless Auth instance to introspect against.
|
|
207
|
-
* @param cookieName - Name of the access cookie storing the session JWT (`"seamless-access"` by default).
|
|
208
|
-
*
|
|
209
|
-
* @returns The authenticated user object, or `null` if the session is inactive.
|
|
210
|
-
*/
|
|
211
|
-
declare function getSeamlessUser<T = any>(req: CookieRequest, authServerUrl: string, cookieName?: string): Promise<T | null>;
|
|
191
|
+
declare function getSeamlessUser<T = any>(req: Request, authServerUrl: string, cookieName?: string): Promise<T | null>;
|
|
212
192
|
|
|
213
|
-
export { type SeamlessAuthServerOptions, createSeamlessAuthServer as default, getSeamlessUser, requireAuth, requireRole };
|
|
193
|
+
export { type SeamlessAuthServerOptions, createEnsureCookiesMiddleware, createSeamlessAuthServer as default, getSeamlessUser, requireAuth, requireRole };
|