-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathbackend.ts
More file actions
687 lines (641 loc) · 22.4 KB
/
backend.ts
File metadata and controls
687 lines (641 loc) · 22.4 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
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
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
import * as clc from "colorette";
import * as poller from "../operation-poller";
import * as apphosting from "../gcp/apphosting";
import * as githubConnections from "./githubConnections";
import { logBullet, logSuccess, logWarning, sleep } from "../utils";
import {
apphostingOrigin,
artifactRegistryDomain,
cloudRunApiOrigin,
cloudbuildOrigin,
consoleOrigin,
developerConnectOrigin,
iamOrigin,
secretManagerOrigin,
} from "../api";
import { Backend, BackendOutputOnlyFields, API_VERSION } from "../gcp/apphosting";
import { addServiceAccountToRoles } from "../gcp/resourceManager";
import * as iam from "../gcp/iam";
import { FirebaseError, getErrStatus, getError } from "../error";
import { input, confirm, select, checkbox, search, Choice } from "../prompt";
import { DEFAULT_LOCATION } from "./constants";
import { ensure } from "../ensureApiEnabled";
import * as deploymentTool from "../deploymentTool";
import { DeepOmit } from "../metaprogramming";
import { webApps } from "./app";
import { GitRepositoryLink } from "../gcp/devConnect";
import * as ora from "ora";
import fetch from "node-fetch";
import { orchestrateRollout } from "./rollout";
import * as fuzzy from "fuzzy";
import { isEnabled } from "../experiments";
import { DEFAULT_RUNTIME, promptRuntime, promptAutomaticBaseImageUpdates } from "./prompts";
const DEFAULT_COMPUTE_SERVICE_ACCOUNT_NAME = "firebase-app-hosting-compute";
const apphostingPollerOptions: Omit<poller.OperationPollerOptions, "operationResourceName"> = {
apiOrigin: apphostingOrigin(),
apiVersion: API_VERSION,
masterTimeout: 25 * 60 * 1_000,
maxBackoff: 10_000,
};
async function tlsReady(url: string): Promise<boolean> {
// Note, we do not use the helper libraries because they impose additional logic on content type and parsing.
try {
await fetch(url);
return true;
} catch (err) {
// At the time of this writing, the error code is ERR_SSL_SSLV3_ALERT_HANDSHAKE_FAILURE.
// I've chosen to use a regexp in an attempt to be forwards compatible with new versions of
// SSL.
const maybeNodeError = err as { cause: { code: string }; code: string };
if (
/HANDSHAKE_FAILURE/.test(maybeNodeError?.cause?.code) ||
"EPROTO" === maybeNodeError?.code
) {
return false;
}
return true;
}
}
async function awaitTlsReady(url: string): Promise<void> {
let ready;
do {
ready = await tlsReady(url);
if (!ready) {
await sleep(1000 /* ms */);
}
} while (!ready);
}
/**
* Set up a new App Hosting backend.
*/
export async function doSetup(
projectId: string,
nonInteractive: boolean,
webAppName?: string,
backendId?: string,
serviceAccount?: string,
primaryRegion?: string,
rootDir?: string,
runtime?: string,
automaticBaseImageUpdatesDisabled?: boolean,
): Promise<void> {
await ensureRequiredApisEnabled(projectId);
// Hack: Because IAM can take ~45 seconds to propagate, we provision the service account as soon as
// possible to reduce the likelihood that the subsequent Cloud Build fails. See b/336862200.
await ensureAppHostingComputeServiceAccount(projectId, serviceAccount ? serviceAccount : null);
// TODO(https://github.com/firebase/firebase-tools/issues/8283): The "primary region"
// is still "locations" in the V1 API. This will change in the V2 API and we may need to update
// the variables and API methods we're calling under the hood when fetching "primary region".
let location = primaryRegion;
let gitRepositoryLink: GitRepositoryLink | undefined;
let branch: string | undefined;
if (nonInteractive) {
if (!backendId || !primaryRegion) {
throw new FirebaseError("nonInteractive mode requires a backendId and primaryRegion");
}
} else {
if (!location) {
location = await promptLocation(projectId, "Select a primary region to host your backend:\n");
}
if (!backendId) {
logBullet(`${clc.yellow("===")} Set up your backend`);
backendId = await promptNewBackendId(projectId, location);
logSuccess(`Name set to ${backendId}\n`);
}
if (!rootDir) {
rootDir = await input({
default: "/",
message: "Specify your app's root directory relative to your repository",
});
}
gitRepositoryLink = await githubConnections.linkGitHubRepository(projectId, location);
// TODO: Once tag patterns are implemented, prompt which method the user
// prefers. We could reduce the number of questions asked by letting people
// enter tag:<pattern>?
branch = await githubConnections.promptGitHubBranch(gitRepositoryLink);
logSuccess(`Repo linked successfully!\n`);
}
// Confirm both backendId and location are set at this point
if (!location || !backendId) {
// This should not happen based on the logic above, but it satisfies the type checker.
throw new FirebaseError("Internal error: location or backendId is not defined.");
}
if (runtime === undefined && isEnabled("abiu")) {
if (nonInteractive) {
runtime = DEFAULT_RUNTIME;
} else {
runtime = await promptRuntime(projectId, location);
}
}
if (automaticBaseImageUpdatesDisabled === undefined && isEnabled("abiu")) {
if (!nonInteractive) {
automaticBaseImageUpdatesDisabled = !(await promptAutomaticBaseImageUpdates());
}
}
const webApp = await webApps.getOrCreateWebApp(
projectId,
webAppName ? webAppName : null,
backendId,
);
if (!webApp) {
logWarning(`Firebase web app not set`);
}
const createBackendSpinner = ora("Creating your new backend...").start();
const backend = await createBackend(
projectId,
location,
backendId,
serviceAccount ? serviceAccount : null,
gitRepositoryLink,
webApp?.id,
rootDir,
runtime,
automaticBaseImageUpdatesDisabled,
);
createBackendSpinner.succeed(`Successfully created backend!\n\t${backend.name}\n`);
// In non-interactive mode, we never connected the backend to a github repo. Return
// early and skip the rollout and setting default traffic policy.
if (nonInteractive) {
return;
}
if (!branch) {
throw new FirebaseError("Branch was not set while connecting to a github repo.");
}
await setDefaultTrafficPolicy(projectId, location, backendId, branch);
const confirmRollout = await confirm({
default: true,
message: "Do you want to deploy now?",
});
if (!confirmRollout) {
logSuccess(`Your backend will be deployed at:\n\thttps://${backend.uri}`);
return;
}
const url = `https://${backend.uri}`;
logBullet(
`You may also track this rollout at:\n\t${consoleOrigin()}/project/${projectId}/apphosting`,
);
// TODO: Previous versions of this command printed the URL before the rollout started so that
// if a user does exit they will know where to go later. Should this be re-added?
const createRolloutSpinner = ora(
"Starting a new rollout; this may take a few minutes. It's safe to exit now.",
).start();
await orchestrateRollout({
projectId,
location,
backendId,
buildInput: {
source: {
codebase: {
branch,
},
},
},
isFirstRollout: true,
});
createRolloutSpinner.succeed("Rollout complete");
if (!(await tlsReady(url))) {
const tlsSpinner = ora(
"Finalizing your backend's TLS certificate; this may take a few minutes.",
).start();
await awaitTlsReady(url);
tlsSpinner.succeed("TLS certificate ready");
}
logSuccess(`Your backend is now deployed at:\n\thttps://${backend.uri}`);
}
/**
* Setup up a new App Hosting backend to deploy from source.
*/
export async function doSetupSourceDeploy(
projectId: string,
backendId: string,
): Promise<{ backend: Backend; location: string }> {
const location = await promptLocation(
projectId,
"Select a primary region to host your backend:\n",
);
const webAppSpinner = ora("Creating a new web app...\n").start();
const webApp = await webApps.getOrCreateWebApp(projectId, null, backendId);
if (!webApp) {
logWarning(`Firebase web app not set`);
}
webAppSpinner.stop();
const createBackendSpinner = ora("Creating your new backend...").start();
const backend = await createBackend(projectId, location, backendId, null, undefined, webApp?.id);
createBackendSpinner.succeed(`Successfully created backend!\n\t${backend.name}\n`);
return {
backend,
location,
};
}
/**
* Check that all GCP APIs required for App Hosting are enabled.
*/
export async function ensureRequiredApisEnabled(projectId: string): Promise<void> {
await Promise.all([
ensure(projectId, developerConnectOrigin(), "apphosting", true),
ensure(projectId, cloudbuildOrigin(), "apphosting", true),
ensure(projectId, secretManagerOrigin(), "apphosting", true),
ensure(projectId, cloudRunApiOrigin(), "apphosting", true),
ensure(projectId, artifactRegistryDomain(), "apphosting", true),
ensure(projectId, iamOrigin(), "apphosting", true),
]);
}
/**
* Set up a new App Hosting-type Developer Connect GitRepoLink, optionally with a specific connection ID
*/
export async function createGitRepoLink(
projectId: string,
location: string | null,
connectionId?: string,
): Promise<void> {
await Promise.all([
ensure(projectId, developerConnectOrigin(), "apphosting", true),
ensure(projectId, secretManagerOrigin(), "apphosting", true),
ensure(projectId, iamOrigin(), "apphosting", true),
]);
const allowedLocations = (await apphosting.listLocations(projectId)).map((loc) => loc.locationId);
if (location) {
if (!allowedLocations.includes(location)) {
throw new FirebaseError(
`Invalid location ${location}. Valid choices are ${allowedLocations.join(", ")}`,
);
}
}
location =
location ||
(await promptLocation(projectId, "Select a location for your GitRepoLink's connection:\n"));
await githubConnections.linkGitHubRepository(projectId, location, connectionId);
}
/**
* Ensures the service account is present the user has permissions to use it by
* checking the `iam.serviceAccounts.actAs` permission. If the permissions
* check fails, this returns an error. Otherwise, it attempts to provision the
* service account.
*/
export async function ensureAppHostingComputeServiceAccount(
projectId: string,
serviceAccount: string | null,
): Promise<void> {
const sa = serviceAccount || defaultComputeServiceAccountEmail(projectId);
const name = `projects/${projectId}/serviceAccounts/${sa}`;
try {
await iam.testResourceIamPermissions(
iamOrigin(),
"v1",
name,
["iam.serviceAccounts.actAs"],
`${projectId}`,
);
} catch (err: unknown) {
if (!(err instanceof FirebaseError)) {
throw err;
}
if (err.status === 403) {
throw new FirebaseError(
`Failed to create backend due to missing delegation permissions for ${sa}. Make sure you have the iam.serviceAccounts.actAs permission.`,
{ original: err },
);
} else if (err.status !== 404) {
throw new FirebaseError(
"Unexpected error occurred while testing for IAM service account permissions",
{ original: err },
);
}
}
await provisionDefaultComputeServiceAccount(projectId);
}
/**
* Prompts the user for a backend id and verifies that it doesn't match a pre-existing backend.
*/
export async function promptNewBackendId(projectId: string, location: string): Promise<string> {
while (true) {
const backendId = await input({
default: "my-web-app",
message: "Provide a name for your backend [1-30 characters]",
validate: (s) => s.length >= 1 && s.length <= 30,
});
try {
await apphosting.getBackend(projectId, location, backendId);
} catch (err: unknown) {
if (getErrStatus(err) === 404) {
return backendId;
}
throw new FirebaseError(
`Failed to check if backend with id ${backendId} already exists in ${location}`,
{ original: getError(err) },
);
}
logWarning(`Backend with id ${backendId} already exists in ${location}`);
}
}
function defaultComputeServiceAccountEmail(projectId: string): string {
return `${DEFAULT_COMPUTE_SERVICE_ACCOUNT_NAME}@${projectId}.iam.gserviceaccount.com`;
}
/**
* Creates (and waits for) a new backend. Optionally may create the default compute service account if
* it was requested and doesn't exist.
*/
export async function createBackend(
projectId: string,
location: string,
backendId: string,
serviceAccount: string | null,
repository: GitRepositoryLink | undefined,
webAppId: string | undefined,
rootDir = "/",
runtime?: string,
automaticBaseImageUpdatesDisabled?: boolean,
): Promise<Backend> {
const defaultServiceAccount = defaultComputeServiceAccountEmail(projectId);
const backendReqBody: Omit<Backend, BackendOutputOnlyFields> = {
servingLocality: "GLOBAL_ACCESS",
codebase: repository
? {
repository: `${repository.name}`,
rootDirectory: rootDir,
}
: undefined,
labels: deploymentTool.labels(),
serviceAccount: serviceAccount || defaultServiceAccount,
appId: webAppId,
};
// this is to be extra careful that we do not set the ABIU fields if the experiment is disabled
if (isEnabled("abiu")) {
backendReqBody.runtime = { value: runtime ?? "" };
backendReqBody.automaticBaseImageUpdatesDisabled = automaticBaseImageUpdatesDisabled;
}
async function createBackendAndPoll(): Promise<apphosting.Backend> {
const op = await apphosting.createBackend(projectId, location, backendReqBody, backendId);
return await poller.pollOperation<Backend>({
...apphostingPollerOptions,
pollerName: `create-${projectId}-${location}-${backendId}`,
operationResourceName: op.name,
});
}
return await createBackendAndPoll();
}
async function provisionDefaultComputeServiceAccount(projectId: string): Promise<void> {
try {
await iam.createServiceAccount(
projectId,
DEFAULT_COMPUTE_SERVICE_ACCOUNT_NAME,
"Default service account used to run builds and deploys for Firebase App Hosting",
"Firebase App Hosting compute service account",
);
} catch (err: unknown) {
// 409 Already Exists errors can safely be ignored.
if (getErrStatus(err) !== 409) {
throw err;
}
}
try {
await addServiceAccountToRoles(
projectId,
defaultComputeServiceAccountEmail(projectId),
[
"roles/firebaseapphosting.computeRunner",
"roles/firebase.sdkAdminServiceAgent",
"roles/developerconnect.readTokenAccessor",
"roles/storage.objectViewer",
],
/* skipAccountLookup= */ true,
);
} catch (err: unknown) {
if (getErrStatus(err) === 400) {
logWarning(
"Your App Hosting compute service account is still being provisioned in the background. If you encounter an error, please try again after a few moments.",
);
} else {
throw err;
}
}
}
/**
* Sets the default rollout policy to route 100% of traffic to the latest deploy.
*/
export async function setDefaultTrafficPolicy(
projectId: string,
location: string,
backendId: string,
codebaseBranch: string,
): Promise<void> {
const traffic: DeepOmit<apphosting.Traffic, apphosting.TrafficOutputOnlyFields | "name"> = {
rolloutPolicy: {
codebaseBranch: codebaseBranch,
},
};
const op = await apphosting.updateTraffic(projectId, location, backendId, traffic);
await poller.pollOperation<apphosting.Traffic>({
...apphostingPollerOptions,
pollerName: `updateTraffic-${projectId}-${location}-${backendId}`,
operationResourceName: op.name,
});
}
/**
* Deletes the given backend. Polls till completion.
*/
export async function deleteBackendAndPoll(
projectId: string,
location: string,
backendId: string,
): Promise<void> {
const op = await apphosting.deleteBackend(projectId, location, backendId);
await poller.pollOperation<void>({
...apphostingPollerOptions,
pollerName: `delete-${projectId}-${location}-${backendId}`,
operationResourceName: op.name,
});
}
/**
* Prompts the user for a location. If there's only a single valid location, skips the prompt and returns that location.
*/
export async function promptLocation(
projectId: string,
prompt = "Please select a location:",
): Promise<string> {
const allowedLocations = (await apphosting.listLocations(projectId)).map((loc) => loc.locationId);
if (allowedLocations.length === 1) {
return allowedLocations[0];
}
const location = await select<string>({
default: DEFAULT_LOCATION,
message: prompt,
choices: allowedLocations,
});
logSuccess(`Location set to ${location}.\n`);
return location;
}
/**
* Fetches a backend from the server in the specified region (location).
*/
export async function getBackendForLocation(
projectId: string,
location: string,
backendId: string,
): Promise<apphosting.Backend> {
try {
return await apphosting.getBackend(projectId, location, backendId);
} catch (err: unknown) {
throw new FirebaseError(`No backend named "${backendId}" found in ${location}.`, {
original: getError(err),
});
}
}
/**
* Prompts users to select an existing backend.
* @param projectId the user's project ID
* @param promptMessage prompt message to display to the user
* @return the selected backend ID
*/
export async function promptExistingBackend(
projectId: string,
promptMessage: string,
): Promise<string> {
const { backends } = await apphosting.listBackends(projectId, "-");
const backendId: string = await search({
message: promptMessage,
source: (input = ""): Promise<Choice<string>[]> => {
return new Promise((resolve) =>
resolve([
...fuzzy
.filter(input, backends, {
extract: (backend) => apphosting.parseBackendName(backend.name).id,
})
.map((result) => {
return {
name: apphosting.parseBackendName(result.original.name).id,
value: apphosting.parseBackendName(result.original.name).id,
};
}),
]),
);
},
});
return backendId;
}
/**
* Fetches backends of the given backendId and lets the user choose if more than one is found.
*/
export async function chooseBackends(
projectId: string,
backendId: string,
chooseBackendPrompt: string,
force?: boolean,
): Promise<apphosting.Backend[]> {
let { unreachable, backends } = await apphosting.listBackends(projectId, "-");
if (unreachable && unreachable.length !== 0) {
logWarning(
`The following locations are currently unreachable: ${unreachable.join(",")}.\n` +
"If your backend is in one of these regions, please try again later.",
);
}
backends = backends.filter(
(backend) => apphosting.parseBackendName(backend.name).id === backendId,
);
if (backends.length === 0) {
throw new FirebaseError(`No backend named "${backendId}" found.`);
}
if (backends.length === 1) {
return backends;
}
if (force) {
throw new FirebaseError(
`Force cannot be used because multiple backends were found with ID ${backendId}.`,
);
}
const backendsByDisplay = new Map<string, apphosting.Backend>();
backends.forEach((backend) => {
const { location, id } = apphosting.parseBackendName(backend.name);
backendsByDisplay.set(`${id}(${location})`, backend);
});
const chosenBackendDisplays = await checkbox<string>({
message: chooseBackendPrompt,
choices: Array.from(backendsByDisplay.keys(), (name) => {
return {
checked: false,
name: name,
value: name,
};
}),
});
const chosenBackends: apphosting.Backend[] = [];
chosenBackendDisplays.forEach((backendDisplay) => {
const backend = backendsByDisplay.get(backendDisplay);
if (backend !== undefined) {
chosenBackends.push(backend);
}
});
return chosenBackends;
}
/**
* Fetches a backend from the server. If there are multiple backends with that name (ie multi-regional backends),
* prompts the user to disambiguate. If the force option is specified and multiple backends have the same name,
* it throws an error.
*/
export async function getBackendForAmbiguousLocation(
projectId: string,
backendId: string,
locationDisambugationPrompt: string,
force?: boolean,
): Promise<apphosting.Backend> {
let { unreachable, backends } = await apphosting.listBackends(projectId, "-");
if (unreachable && unreachable.length !== 0) {
logWarning(
`The following locations are currently unreachable: ${unreachable.join(", ")}.\n` +
"If your backend is in one of these regions, please try again later.",
);
}
backends = backends.filter(
(backend) => apphosting.parseBackendName(backend.name).id === backendId,
);
if (backends.length === 0) {
throw new FirebaseError(`No backend named "${backendId}" found.`);
}
if (backends.length === 1) {
return backends[0];
}
if (force) {
throw new FirebaseError(
`Multiple backends found with ID ${backendId}. Please specify the region of your target backend.`,
);
}
const backendsByLocation = new Map<string, apphosting.Backend>();
backends.forEach((backend) =>
backendsByLocation.set(apphosting.parseBackendName(backend.name).location, backend),
);
const location = await select<string>({
message: locationDisambugationPrompt,
choices: [...backendsByLocation.keys()],
});
return backendsByLocation.get(location)!;
}
/**
* Fetches a backend from the server. If there are multiple backends with the name, it will throw an error
* telling the user that there are other backends with the same name that need to be deleted.
*/
export async function getBackend(
projectId: string,
backendId: string,
): Promise<apphosting.Backend> {
let { unreachable, backends } = await apphosting.listBackends(projectId, "-");
backends = backends.filter(
(backend) => apphosting.parseBackendName(backend.name).id === backendId,
);
if (backends.length > 1) {
const locations = backends.map((b) => apphosting.parseBackendName(b.name).location);
throw new FirebaseError(
`You have multiple backends with the same ${backendId} ID in regions: ${locations.join(", ")}. This is not allowed until we can support more locations. ` +
"Please delete and recreate any backends that share an ID with another backend.",
);
}
if (backends.length === 1) {
return backends[0];
}
if (unreachable && unreachable.length !== 0) {
logWarning(
`Backends with the following primary regions are unreachable: ${unreachable.join(", ")}.\n` +
"If your backend is in one of these regions, please try again later.",
);
}
throw new FirebaseError(`No backend named ${backendId} found.`);
}