-
Notifications
You must be signed in to change notification settings - Fork 979
/
Copy pathapphosting-backends-delete.ts
55 lines (50 loc) · 1.79 KB
/
apphosting-backends-delete.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
import { Command } from "../command";
import { Options } from "../options";
import { needProjectId } from "../projectUtils";
import { FirebaseError, getError } from "../error";
import { promptOnce } from "../prompt";
import * as utils from "../utils";
import * as apphosting from "../gcp/apphosting";
import { printBackendsTable } from "./apphosting-backends-list";
import { deleteBackendAndPoll, chooseBackends } from "../apphosting/backend";
import * as ora from "ora";
export const command = new Command("apphosting:backends:delete <backend>")
.description("delete a Firebase App Hosting backend")
.withForce()
.before(apphosting.ensureApiEnabled)
.action(async (backendId: string, options: Options) => {
const projectId = needProjectId(options);
const backends = await chooseBackends(
projectId,
backendId,
"Please select the backends you'd like to delete:",
options.force,
);
utils.logWarning("You are about to permanently delete these backend(s):");
printBackendsTable(backends);
const confirmDeletion = await promptOnce(
{
type: "confirm",
name: "force",
default: false,
message: "Are you sure?",
},
options,
);
if (!confirmDeletion) {
return;
}
for (const b of backends) {
const { location, id } = apphosting.parseBackendName(b.name);
const spinner = ora(`Deleting backend ${id}(${location})...`).start();
try {
await deleteBackendAndPoll(projectId, location, id);
spinner.succeed(`Successfully deleted the backend: ${id}(${location})`);
} catch (err: unknown) {
spinner.stop();
throw new FirebaseError(`Failed to delete backend: ${id}(${location}). Please retry.`, {
original: getError(err),
});
}
}
});