forked from npmx-dev/npmx.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmock-app.ts
More file actions
472 lines (389 loc) · 13.2 KB
/
mock-app.ts
File metadata and controls
472 lines (389 loc) · 13.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
/**
* Mock connector H3 application. Same API as the real server (server.ts)
* but backed by in-memory state. Used by the mock CLI and E2E tests.
*/
import type { MockConnectorStateManager } from './mock-state.ts'
import type {
OperationType,
ApiResponse,
ConnectorEndpoints,
AssertEndpointsImplemented,
} from './types.ts'
import type { CorsOptions } from 'h3-next'
import { H3, HTTPError, handleCors, type H3Event } from 'h3-next'
import { serve, type Server } from 'srvx'
// Endpoint completeness check — errors if this list diverges from ConnectorEndpoints.
// oxlint-disable-next-line no-unused-vars
const _endpointCheck: AssertEndpointsImplemented<
| 'POST /connect'
| 'GET /state'
| 'POST /operations'
| 'POST /operations/batch'
| 'DELETE /operations'
| 'DELETE /operations/all'
| 'POST /approve'
| 'POST /approve-all'
| 'POST /retry'
| 'POST /execute'
| 'GET /org/:org/users'
| 'GET /org/:org/teams'
| 'GET /team/:scopeTeam/users'
| 'GET /package/:pkg/collaborators'
| 'GET /user/packages'
| 'GET /user/orgs'
> = true
void _endpointCheck
const corsOptions: CorsOptions = {
origin: '*',
methods: ['GET', 'POST', 'DELETE', 'OPTIONS'],
allowHeaders: ['Content-Type', 'Authorization'],
}
function createMockConnectorApp(stateManager: MockConnectorStateManager) {
const app = new H3()
app.use((event: H3Event) => {
const corsResult = handleCors(event, corsOptions)
if (corsResult !== false) {
return corsResult
}
})
function requireAuth(event: H3Event): void {
const authHeader = event.req.headers.get('authorization')
if (!authHeader || !authHeader.startsWith('Bearer ')) {
throw new HTTPError({ statusCode: 401, message: 'Authorization required' })
}
const token = authHeader.slice(7)
if (token !== stateManager.token) {
throw new HTTPError({ statusCode: 401, message: 'Invalid token' })
}
if (!stateManager.isConnected()) {
throw new HTTPError({ statusCode: 401, message: 'Not connected' })
}
}
// POST /connect
app.post('/connect', async (event: H3Event) => {
const body = (await event.req.json()) as { token?: string }
const token = body?.token
if (!token || token !== stateManager.token) {
throw new HTTPError({ statusCode: 401, message: 'Invalid token' })
}
stateManager.connect(token)
return {
success: true,
data: {
npmUser: stateManager.config.npmUser,
avatar: stateManager.config.avatar ?? null,
connectedAt: stateManager.state.connectedAt ?? Date.now(),
},
} satisfies ApiResponse<ConnectorEndpoints['POST /connect']['data']>
})
// GET /state
app.get('/state', (event: H3Event) => {
requireAuth(event)
return {
success: true,
data: {
npmUser: stateManager.config.npmUser,
avatar: stateManager.config.avatar ?? null,
operations: stateManager.getOperations(),
},
} satisfies ApiResponse<ConnectorEndpoints['GET /state']['data']>
})
// POST /operations
app.post('/operations', async (event: H3Event) => {
requireAuth(event)
const body = (await event.req.json()) as {
type?: string
params?: Record<string, string>
description?: string
command?: string
dependsOn?: string
}
if (!body?.type || !body.description || !body.command) {
throw new HTTPError({ statusCode: 400, message: 'Missing required fields' })
}
const operation = stateManager.addOperation({
type: body.type as OperationType,
params: body.params ?? {},
description: body.description,
command: body.command,
dependsOn: body.dependsOn,
})
return {
success: true,
data: operation,
} satisfies ApiResponse<ConnectorEndpoints['POST /operations']['data']>
})
// POST /operations/batch
app.post('/operations/batch', async (event: H3Event) => {
requireAuth(event)
const body = await event.req.json()
if (!Array.isArray(body)) {
throw new HTTPError({ statusCode: 400, message: 'Expected array of operations' })
}
const operations = stateManager.addOperations(body)
return {
success: true,
data: operations,
} satisfies ApiResponse<ConnectorEndpoints['POST /operations/batch']['data']>
})
// DELETE /operations?id=<id>
app.delete('/operations', (event: H3Event) => {
requireAuth(event)
const id = new URL(event.req.url).searchParams.get('id')
if (!id) {
throw new HTTPError({ statusCode: 400, message: 'Missing operation id' })
}
const removed = stateManager.removeOperation(id)
if (!removed) {
throw new HTTPError({ statusCode: 404, message: 'Operation not found or cannot be removed' })
}
return { success: true } satisfies ApiResponse<ConnectorEndpoints['DELETE /operations']['data']>
})
// DELETE /operations/all
app.delete('/operations/all', (event: H3Event) => {
requireAuth(event)
const removed = stateManager.clearOperations()
return {
success: true,
data: { removed },
} satisfies ApiResponse<ConnectorEndpoints['DELETE /operations/all']['data']>
})
// POST /approve?id=<id>
app.post('/approve', (event: H3Event) => {
requireAuth(event)
const id = new URL(event.req.url).searchParams.get('id')
if (!id) {
throw new HTTPError({ statusCode: 400, message: 'Missing operation id' })
}
const operation = stateManager.approveOperation(id)
if (!operation) {
throw new HTTPError({ statusCode: 404, message: 'Operation not found or not pending' })
}
return {
success: true,
data: operation,
} satisfies ApiResponse<ConnectorEndpoints['POST /approve']['data']>
})
// POST /approve-all
app.post('/approve-all', (event: H3Event) => {
requireAuth(event)
const approved = stateManager.approveAll()
return {
success: true,
data: { approved },
} satisfies ApiResponse<ConnectorEndpoints['POST /approve-all']['data']>
})
// POST /retry?id=<id>
app.post('/retry', (event: H3Event) => {
requireAuth(event)
const id = new URL(event.req.url).searchParams.get('id')
if (!id) {
throw new HTTPError({ statusCode: 400, message: 'Missing operation id' })
}
const operation = stateManager.retryOperation(id)
if (!operation) {
throw new HTTPError({ statusCode: 404, message: 'Operation not found or not failed' })
}
return {
success: true,
data: operation,
} satisfies ApiResponse<ConnectorEndpoints['POST /retry']['data']>
})
// POST /execute
app.post('/execute', async (event: H3Event) => {
requireAuth(event)
const body = await event.req.json().catch(() => ({}))
const { otp } = body as { otp?: string; interactive?: boolean; openUrls?: boolean }
const { results, otpRequired, authFailure, urls } = stateManager.executeOperations({ otp })
return {
success: true,
data: {
results,
otpRequired,
authFailure,
urls,
},
} satisfies ApiResponse<ConnectorEndpoints['POST /execute']['data']>
})
// GET /org/:org/users
app.get('/org/:org/users', (event: H3Event) => {
requireAuth(event)
const org = event.context.params?.org
if (!org) {
throw new HTTPError({ statusCode: 400, message: 'Missing org parameter' })
}
const normalizedOrg = org.startsWith('@') ? org : `@${org}`
const users = stateManager.getOrgUsers(normalizedOrg)
if (users === null) {
return { success: true, data: {} } satisfies ApiResponse<
ConnectorEndpoints['GET /org/:org/users']['data']
>
}
return { success: true, data: users } satisfies ApiResponse<
ConnectorEndpoints['GET /org/:org/users']['data']
>
})
// GET /org/:org/teams
app.get('/org/:org/teams', (event: H3Event) => {
requireAuth(event)
const org = event.context.params?.org
if (!org) {
throw new HTTPError({ statusCode: 400, message: 'Missing org parameter' })
}
const normalizedOrg = org.startsWith('@') ? org : `@${org}`
const orgName = normalizedOrg.slice(1)
const teams = stateManager.getOrgTeams(normalizedOrg)
const formattedTeams = teams ? teams.map(t => `${orgName}:${t}`) : []
return { success: true, data: formattedTeams } satisfies ApiResponse<
ConnectorEndpoints['GET /org/:org/teams']['data']
>
})
// GET /team/:scopeTeam/users
app.get('/team/:scopeTeam/users', (event: H3Event) => {
requireAuth(event)
const scopeTeam = event.context.params?.scopeTeam
if (!scopeTeam) {
throw new HTTPError({ statusCode: 400, message: 'Missing scopeTeam parameter' })
}
if (!scopeTeam.startsWith('@') || !scopeTeam.includes(':')) {
throw new HTTPError({
statusCode: 400,
message: 'Invalid scope:team format (expected @scope:team)',
})
}
const [scope, team] = scopeTeam.split(':')
if (!scope || !team) {
throw new HTTPError({ statusCode: 400, message: 'Invalid scope:team format' })
}
const users = stateManager.getTeamUsers(scope, team)
return { success: true, data: users ?? [] } satisfies ApiResponse<
ConnectorEndpoints['GET /team/:scopeTeam/users']['data']
>
})
// GET /package/:pkg/collaborators
app.get('/package/:pkg/collaborators', (event: H3Event) => {
requireAuth(event)
const pkg = event.context.params?.pkg
if (!pkg) {
throw new HTTPError({ statusCode: 400, message: 'Missing package parameter' })
}
const collaborators = stateManager.getPackageCollaborators(decodeURIComponent(pkg))
return { success: true, data: collaborators ?? {} } satisfies ApiResponse<
ConnectorEndpoints['GET /package/:pkg/collaborators']['data']
>
})
// GET /user/packages
app.get('/user/packages', (event: H3Event) => {
requireAuth(event)
const packages = stateManager.getUserPackages()
return { success: true, data: packages } satisfies ApiResponse<
ConnectorEndpoints['GET /user/packages']['data']
>
})
// GET /user/orgs
app.get('/user/orgs', (event: H3Event) => {
requireAuth(event)
const orgs = stateManager.getUserOrgs()
return { success: true, data: orgs } satisfies ApiResponse<
ConnectorEndpoints['GET /user/orgs']['data']
>
})
// -- Test-only endpoints --
// POST /__test__/reset
app.post('/__test__/reset', () => {
stateManager.reset()
return { success: true }
})
// POST /__test__/org
app.post('/__test__/org', async (event: H3Event) => {
const body = (await event.req.json()) as {
org?: string
users?: Record<string, 'developer' | 'admin' | 'owner'>
teams?: string[]
teamMembers?: Record<string, string[]>
}
if (!body?.org) {
throw new HTTPError({ statusCode: 400, message: 'Missing org parameter' })
}
stateManager.setOrgData(body.org, {
users: body.users,
teams: body.teams,
teamMembers: body.teamMembers,
})
return { success: true }
})
// POST /__test__/user-orgs
app.post('/__test__/user-orgs', async (event: H3Event) => {
const body = (await event.req.json()) as { orgs?: string[] }
if (!body?.orgs) {
throw new HTTPError({ statusCode: 400, message: 'Missing orgs parameter' })
}
stateManager.setUserOrgs(body.orgs)
return { success: true }
})
// POST /__test__/user-packages
app.post('/__test__/user-packages', async (event: H3Event) => {
const body = (await event.req.json()) as {
packages?: Record<string, 'read-only' | 'read-write'>
}
if (!body?.packages) {
throw new HTTPError({ statusCode: 400, message: 'Missing packages parameter' })
}
stateManager.setUserPackages(body.packages)
return { success: true }
})
// POST /__test__/package
app.post('/__test__/package', async (event: H3Event) => {
const body = (await event.req.json()) as {
package?: string
collaborators?: Record<string, 'read-only' | 'read-write'>
}
if (!body?.package) {
throw new HTTPError({ statusCode: 400, message: 'Missing package parameter' })
}
stateManager.setPackageData(body.package, {
collaborators: body.collaborators ?? {},
})
return { success: true }
})
return app
}
/** Wraps the mock H3 app in an HTTP server via srvx. */
export class MockConnectorServer {
private server: Server | null = null
private stateManager: MockConnectorStateManager
constructor(stateManager: MockConnectorStateManager) {
this.stateManager = stateManager
}
async start(): Promise<void> {
if (this.server) {
throw new Error('Mock connector server is already running')
}
const app = createMockConnectorApp(this.stateManager)
this.server = serve({
port: this.stateManager.port,
hostname: '127.0.0.1',
fetch: app.fetch,
})
await this.server.ready()
console.log(`[Mock Connector] Started on http://127.0.0.1:${this.stateManager.port}`)
}
async stop(): Promise<void> {
if (!this.server) return
await this.server.close()
console.log('[Mock Connector] Stopped')
this.server = null
}
get state(): MockConnectorStateManager {
return this.stateManager
}
get port(): number {
return this.stateManager.port
}
get token(): string {
return this.stateManager.token
}
reset(): void {
this.stateManager.reset()
}
}