-
Notifications
You must be signed in to change notification settings - Fork 980
/
Copy pathgen-auth-api-spec.ts
659 lines (617 loc) · 20.2 KB
/
gen-auth-api-spec.ts
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
/**
* gen-auth-api-specs generates the OpenAPI v3 specification file for the Auth
* Emulator `../src/emulator/auth/apiSpec.ts` by converting and combining
* production Google API Discovery documents for all services it emulates.
*
* The resulting file can be used with OpenAPI tooling, such as exegesis, a
* library that does validation and route wiring for the Auth Emulator.
*
* It also writes a `schema.ts` file in the same directory for type-checking.
*/
/* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/ban-ts-comment */
import * as https from "https";
import { resolve } from "path";
import { writeFileSync } from "fs";
import * as prettier from "prettier";
import * as swagger2openapi from "swagger2openapi";
import { merge, isErrorResult } from "openapi-merge";
import openapiTS from "openapi-typescript";
// Convert Google API Discovery format to OpenAPI using this library in order
// to use OpenAPI tooling, recommended by https://googleapis.github.io/#openapi.
// The coverter is not perfect and requires some specific hacks shown below.
// @ts-ignore
import * as googleDiscoveryToSwagger from "google-discovery-to-swagger";
async function main(): Promise<void> {
const [v1Disc, v2Disc, tokenDisc] = await Promise.all([
fetchJson("https://identitytoolkit.googleapis.com/$discovery/rest?version=v1"),
fetchJson("https://identitytoolkit.googleapis.com/$discovery/rest?version=v2"),
fetchJson("https://securetoken.googleapis.com/$discovery/rest?version=v1"),
]);
// This method is not supported in the emulator and its response is untyped,
// which confuses the converter. Let's just drop it.
delete v1Disc.resources.v1.methods.getPublicKeys;
const tokenOas = await toOpenapi3(tokenDisc);
pushServersDownToEachPath(tokenOas);
// Re-tag secureToken APIs with "secureToken" so they are nicely separated.
tokenOas.tags = [{ name: "secureToken" }];
forEachOperation(tokenOas, (op) => {
op.tags = ["secureToken"];
// Also support URL-encoded to conform with the OAuth 2.0 specification.
op.requestBody.content["application/x-www-form-urlencoded"] =
op.requestBody.content["application/json"];
});
const merged = merge([
{ oas: await toOpenapi3(v1Disc) },
{ oas: await toOpenapi3(v2Disc) },
{ oas: tokenOas },
]);
if (isErrorResult(merged)) {
throw new Error(`Failed to merge APIs: ${merged.type}: ${merged.message}`);
}
addEmulatorOperations(merged.output);
const header =
"/* DO NOT EDIT! This file is automatically generated by scripts/gen-auth-api-spec.ts. */\n" +
"/* See README.md (Section: Autogenerated files) for how to read / review this file. */\n" +
"/* eslint-disable */\n\n";
const specContent = header + "export default " + JSON.stringify(merged.output);
const specFile = resolve(__dirname, "../src/emulator/auth/apiSpec.ts");
const prettierOptions = await prettier.resolveConfig(specFile);
writeFileSync(specFile, prettier.format(specContent, { ...prettierOptions, filepath: specFile }));
// Also generate TypeScript definitions for use in implementation.
const prettierConfig = resolve(__dirname, "../.prettierrc.js");
const output = await openapiTS(merged.output as any, { prettierConfig });
const defsContent = header + output;
writeFileSync(resolve(__dirname, "../src/emulator/auth/schema.ts"), defsContent);
}
function fetchJson(url: string): any {
return new Promise<string>((resolve, reject) => {
let json = "";
https
.get(url, (res) => {
if (res.statusCode !== 200) {
reject(new Error(`HTTP ${res.statusCode} received.`));
}
res.on("data", (d) => {
json += d;
});
res.on("end", () => {
resolve(json);
});
})
.on("error", reject);
}).then((json) => {
return sortKeys(JSON.parse(json));
});
}
const OPENAPI_HTTP_METHODS = ["get", "put", "post", "delete", "options", "head", "patch", "trace"];
async function toOpenapi3(discovery: Discovery): Promise<any> {
// Error format query param, not supported in emulator and pollutes defs.
delete discovery.parameters["$.xgafv"];
// This will be covered as an additional security scheme below.
const apiKeyDescription = discovery.parameters.key.description;
delete discovery.parameters.key;
// Preprocess and replace paths with flatPaths
replaceWithFlatPath(discovery.resources);
// We first convert the discovery document to Swagger (a.k.a. OpenAPI 2.0) and
// then to OpenAPI 3.0 because there is tool that does direct conversion. Some
// tools offer one single API call for the entire conversion, but perform
// indirect conversion under the hood. We'll just do it explicitly and that
// also gives us more control (such as .setStrict above) and less deps.
const swagger: any = await googleDiscoveryToSwagger.convert(discovery);
const result = await swagger2openapi.convertObj(swagger, {});
const openapi3 = result.openapi;
openapi3.servers?.forEach((server: { url: string }) => {
// Server URL should not end with slash since it is prefixed to paths.
server.url = server.url.replace(/\/$/, "");
});
patchSecurity(openapi3, apiKeyDescription!);
return openapi3;
}
interface Discovery {
kind: string;
name: string;
version: string;
title: string;
description: string;
protocol: string;
rootUrl: string;
servicePath: string;
parameters: Parameters;
resources: Resources;
}
interface Parameters {
[paramName: string]: Parameter;
}
interface Parameter {
type: string;
required: boolean;
location: string;
description?: string;
pattern?: string;
}
interface Methods {
[methodName: string]: Method;
}
interface Method {
id: string;
path: string;
flatPath: string;
httpMethod: string;
description: string;
response: { $ref: string };
parameters: Parameters;
parameterOrder: string[];
scopes: string[];
}
interface Resource {
methods: Methods;
resources?: Resources;
}
interface Resources {
[resourceName: string]: Resource | Resources;
}
const pathParamsForFlatPathParam = new Map([
["{projectsId}", "{targetProjectId}"],
["{tenantsId}", "{tenantId}"],
]);
const paramPattern = /{([^}]+)}/g;
function replaceWithFlatPath(discovery: Resource | Resources): void {
if (discovery.methods) {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
Object.entries(discovery.methods).forEach(([_, method]) => {
// Replace flat path param names with path param names
// e.g. for endpoint identitytoolkit.projects.defaultSupportedIdpConfigs.get:
// path = v2/{name}
// flatPath = v2/projects/{projectsId}/defaultSupportedIdpConfigs/{defaultSupportedIdpConfigsId}
//
// transform v2/projects/{projectsId}/defaultSupportedIdpConfigs/{defaultSupportedIdpConfigsId}
// --> v2/projects/{targetProjectId}/defaultSupportedIdpConfigs/{defaultSupportedIdpConfigsId}
let flatPath = method.flatPath;
pathParamsForFlatPathParam.forEach((pathParam, flatPathParam) => {
flatPath = flatPath.replace(flatPathParam, pathParam);
});
const cleanedParams: Parameters = {};
// Get all param names in path
// e.g. ["projectsId", "defaultSupportedIdpConfigsId"]
const paramsInPath = [...flatPath.matchAll(paramPattern)].map((match) => match[1]);
// Remove method path parameters that don't appear in the path
// e.g. remove parameter "name" that appears in original path
const params = method.parameters;
Object.entries(params).forEach(([name, paramObj]) => {
// Compiler complains that paramObj is unknown, cast explicitly
if ((paramObj as Parameter).location !== "path" || paramsInPath.includes(name)) {
cleanedParams[name] = paramObj as Parameter;
}
});
// Add params that are in path but are not in the parameters object
// e.g. add "targetProjectId" and "defaultSupportedIdpConfigsId"
paramsInPath.forEach((param) => {
if (!Object.keys(cleanedParams).some((name) => name === param)) {
cleanedParams[param] = {
location: "path",
required: true,
type: "string",
};
}
});
method.parameters = cleanedParams;
method.parameterOrder = paramsInPath;
method.path = flatPath;
});
if (discovery.resources) {
replaceWithFlatPath(discovery.resources);
}
return;
}
Object.values(discovery).forEach((val) => replaceWithFlatPath(val));
}
function patchSecurity(openapi3: any, apiKeyDescription: string): void {
// OpenAPI v3 now supports putting multiple flows in one single OAuth object,
// so let's remove the "Oauth2c" workaround and merge it into "Oauth2".
let securitySchemes = openapi3.components.securitySchemes;
if (securitySchemes) {
Object.assign(securitySchemes.Oauth2.flows, securitySchemes.Oauth2c.flows);
delete securitySchemes.Oauth2c;
} else {
securitySchemes = openapi3.components.securitySchemes = {};
}
// Add the missing apiKeyQuery and apiKeyHeader schemes here.
// https://cloud.google.com/docs/authentication/api-keys#using-with-rest
securitySchemes.apiKeyQuery = {
type: "apiKey",
name: "key",
in: "query",
description: apiKeyDescription,
};
securitySchemes.apiKeyHeader = {
type: "apiKey",
name: "x-goog-api-key",
in: "header",
description: apiKeyDescription,
};
forEachOperation(openapi3, (operation) => {
if (!operation.security) {
operation.security = [];
}
operation.security.forEach((alt: { Oauth2c?: unknown }) => {
// google-discovery-to-swagger puts both Oauth2 and Oauth2c in the
// same object, wrongly implying BOTH are required at the same time.
// Luckily, we have unified them above so let's remove the extra one.
delete alt.Oauth2c;
});
// Add alternative auth schemes (query OR header) for API key. Note that
// some operations may not support it, but those can be handled within impl.
operation.security.push({ apiKeyQuery: [] }, { apiKeyHeader: [] });
});
}
function forEachOperation(openapi3: any, callback: (operation: any) => void): void {
Object.keys(openapi3.paths).forEach((path) => {
if (!path.startsWith("/")) {
return;
}
OPENAPI_HTTP_METHODS.forEach((method) => {
const operation = openapi3.paths[path][method];
if (operation) {
callback(operation);
}
});
});
}
/**
* Pushes the global "servers" setting down to each path in the spec.
*
* This is needed for API specs that has a different server than the main one
* (e.g. securetokens.googleapis.com) so its server is preserved after merge.
*
* @param openapi3 the API spec to patch.
*/
function pushServersDownToEachPath(openapi3: any): void {
Object.keys(openapi3.paths).forEach((path) => {
if (!path.startsWith("/")) return;
openapi3.paths[path].servers = openapi3.servers;
});
}
function addEmulatorOperations(openapi3: any): void {
openapi3.tags.push({ name: "emulator" });
openapi3.paths["/emulator/v1/projects/{targetProjectId}/accounts"] = {
parameters: [
{
name: "targetProjectId",
in: "path",
description: "The ID of the Google Cloud project that the accounts belong to.",
required: true,
schema: {
type: "string",
},
},
],
servers: [{ url: "" }],
delete: {
description: "Remove all accounts in the project, regardless of state.",
operationId: "emulator.projects.accounts.delete",
responses: {
"200": {
description: "Successful response",
content: {
"application/json": {
schema: {
type: "object",
},
},
},
},
},
security: [],
tags: ["emulator"],
},
};
openapi3.paths["/emulator/v1/projects/{targetProjectId}/tenants/{tenantId}/accounts"] = {
parameters: [
{
name: "targetProjectId",
in: "path",
description: "The ID of the Google Cloud project that the accounts belong to.",
required: true,
schema: {
type: "string",
},
},
{
name: "tenantId",
in: "path",
description:
"The ID of the Identity Platform tenant the accounts belongs to. If not specified, accounts on the Identity Platform project are returned.",
required: true,
schema: { type: "string" },
},
],
servers: [{ url: "" }],
delete: {
description: "Remove all accounts in the project, regardless of state.",
operationId: "emulator.projects.accounts.delete",
responses: {
"200": {
description: "Successful response",
content: {
"application/json": {
schema: {
type: "object",
},
},
},
},
},
security: [],
tags: ["emulator"],
},
};
openapi3.paths["/emulator/v1/projects/{targetProjectId}/config"] = {
parameters: [
{
name: "targetProjectId",
in: "path",
description: "The ID of the Google Cloud project that the config belongs to.",
required: true,
schema: {
type: "string",
},
},
],
servers: [{ url: "" }],
get: {
description: "Get emulator-specific configuration for the project.",
operationId: "emulator.projects.config.get",
responses: {
"200": {
description: "Successful response",
content: {
"application/json": {
schema: {
$ref: "#/components/schemas/EmulatorV1ProjectsConfig",
},
},
},
},
},
security: [],
tags: ["emulator"],
},
patch: {
description: "Update emulator-specific configuration for the project.",
operationId: "emulator.projects.config.update",
requestBody: {
content: {
"application/json": {
schema: {
$ref: "#/components/schemas/EmulatorV1ProjectsConfig",
},
},
},
},
responses: {
"200": {
description: "Successful response",
content: {
"application/json": {
schema: {
$ref: "#/components/schemas/EmulatorV1ProjectsConfig",
},
},
},
},
},
security: [],
tags: ["emulator"],
},
};
openapi3.components.schemas.EmulatorV1ProjectsConfig = {
type: "object",
description: "Emulator-specific configuration.",
properties: {
signIn: {
properties: {
allowDuplicateEmails: { type: "boolean" },
},
type: "object",
},
},
};
openapi3.paths["/emulator/v1/projects/{targetProjectId}/oobCodes"] = {
parameters: [
{
name: "targetProjectId",
in: "path",
description: "The ID of the Google Cloud project that the confirmation codes belongs to.",
required: true,
schema: {
type: "string",
},
},
],
servers: [{ url: "" }],
get: {
description: "List all pending confirmation codes for the project.",
operationId: "emulator.projects.oobCodes.list",
responses: {
"200": {
description: "Successful response",
content: {
"application/json": {
schema: {
$ref: "#/components/schemas/EmulatorV1ProjectsOobCodes",
},
},
},
},
},
security: [],
tags: ["emulator"],
},
};
openapi3.paths["/emulator/v1/projects/{targetProjectId}/tenants/{tenantId}/oobCodes"] = {
parameters: [
{
name: "targetProjectId",
in: "path",
description: "The ID of the Google Cloud project that the confirmation codes belongs to.",
required: true,
schema: {
type: "string",
},
},
{
name: "tenantId",
in: "path",
description:
"The ID of the Identity Platform tenant the accounts belongs to. If not specified, accounts on the Identity Platform project are returned.",
required: true,
schema: { type: "string" },
},
],
servers: [{ url: "" }],
get: {
description: "List all pending confirmation codes for the project.",
operationId: "emulator.projects.oobCodes.list",
responses: {
"200": {
description: "Successful response",
content: {
"application/json": {
schema: {
$ref: "#/components/schemas/EmulatorV1ProjectsOobCodes",
},
},
},
},
},
security: [],
tags: ["emulator"],
},
};
openapi3.components.schemas.EmulatorV1ProjectsOobCodes = {
type: "object",
description: "Details of all pending confirmation codes.",
properties: {
oobCodes: {
type: "array",
items: {
type: "object",
properties: {
email: { type: "string" },
oobCode: { type: "string" },
oobLink: { type: "string" },
requestType: { type: "string" },
},
},
},
},
};
openapi3.paths["/emulator/v1/projects/{targetProjectId}/verificationCodes"] = {
parameters: [
{
name: "targetProjectId",
in: "path",
description: "The ID of the Google Cloud project that the verification codes belongs to.",
required: true,
schema: {
type: "string",
},
},
],
servers: [{ url: "" }],
get: {
description: "List all pending phone verification codes for the project.",
operationId: "emulator.projects.verificationCodes.list",
responses: {
"200": {
description: "Successful response",
content: {
"application/json": {
schema: {
$ref: "#/components/schemas/EmulatorV1ProjectsOobCodes",
},
},
},
},
},
security: [],
tags: ["emulator"],
},
};
openapi3.paths["/emulator/v1/projects/{targetProjectId}/tenants/{tenantId}/verificationCodes"] = {
parameters: [
{
name: "targetProjectId",
in: "path",
description: "The ID of the Google Cloud project that the verification codes belongs to.",
required: true,
schema: {
type: "string",
},
},
{
name: "tenantId",
in: "path",
description:
"The ID of the Identity Platform tenant the accounts belongs to. If not specified, accounts on the Identity Platform project are returned.",
required: true,
schema: { type: "string" },
},
],
servers: [{ url: "" }],
get: {
description: "List all pending phone verification codes for the project.",
operationId: "emulator.projects.verificationCodes.list",
responses: {
"200": {
description: "Successful response",
content: {
"application/json": {
schema: {
$ref: "#/components/schemas/EmulatorV1ProjectsOobCodes",
},
},
},
},
},
security: [],
tags: ["emulator"],
},
};
openapi3.components.schemas.EmulatorV1ProjectsVerificationCodes = {
type: "object",
description: "Details of all pending verification codes.",
properties: {
verificationCodes: {
type: "array",
items: {
type: "object",
properties: {
code: { type: "string" },
phoneNumber: { type: "string" },
sessionInfo: { type: "string" },
},
},
},
},
};
}
// The JSONs returned by APIs above keep the same structure unless there is a
// change to the APIs. However, the JSON key order may change with each call.
// Let's sort the keys to make this script produce deterministic output.
function sortKeys<T>(obj: T): T {
if (obj == null || typeof obj !== "object") {
return obj;
}
if (Array.isArray(obj)) {
return obj.map(sortKeys) as unknown as T;
}
const sortedObj: T = {} as T;
(Object.keys(obj) as [keyof T]).sort().forEach((key) => {
sortedObj[key] = sortKeys(obj[key]);
});
return sortedObj;
}
if (module.parent === null) {
main();
}