-
Notifications
You must be signed in to change notification settings - Fork 979
/
Copy pathapphosting-backends-delete.ts
65 lines (61 loc) · 2.18 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
56
57
58
59
60
61
62
63
64
65
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,
getBackendForAmbiguousLocation,
getBackendForLocation,
} from "../apphosting/backend";
import * as ora from "ora";
export const command = new Command("apphosting:backends:delete <backend>")
.description("delete a Firebase App Hosting backend")
.option("-l, --location <location>", "specify the location of the backend")
.withForce()
.before(apphosting.ensureApiEnabled)
.action(async (backendId: string, options: Options) => {
const projectId = needProjectId(options);
if (options.location !== undefined) {
utils.logWarning("--location is being removed in the next major release.");
}
let location = (options.location as string) ?? "-";
let backend: apphosting.Backend;
if (location === "-" || location === "") {
backend = await getBackendForAmbiguousLocation(
projectId,
backendId,
"Please select the location of the backend you'd like to delete:",
);
location = apphosting.parseBackendName(backend.name).location;
} else {
backend = await getBackendForLocation(projectId, location, backendId);
}
utils.logWarning("You are about to permanently delete this backend:");
printBackendsTable([backend]);
const confirmDeletion = await promptOnce(
{
type: "confirm",
name: "force",
default: false,
message: "Are you sure?",
},
options,
);
if (!confirmDeletion) {
return;
}
const spinner = ora("Deleting backend...").start();
try {
await deleteBackendAndPoll(projectId, location, backendId);
spinner.succeed(`Successfully deleted the backend: ${backendId}`);
} catch (err: unknown) {
spinner.stop();
throw new FirebaseError(`Failed to delete backend: ${backendId}.`, {
original: getError(err),
});
}
});