-
Notifications
You must be signed in to change notification settings - Fork 979
/
Copy pathapphosting-backends-list.ts
60 lines (54 loc) · 2.13 KB
/
apphosting-backends-list.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
import { Command } from "../command";
import { datetimeString } from "../utils";
import { FirebaseError } from "../error";
import { logger } from "../logger";
import { needProjectId } from "../projectUtils";
import { Options } from "../options";
import * as apphosting from "../gcp/apphosting";
import * as Table from "cli-table3";
import { logWarning } from "../utils";
const TABLE_HEAD = ["Backend", "Repository", "URL", "Primary Region", "Updated Date"];
export const command = new Command("apphosting:backends:list")
.description("list Firebase App Hosting backends")
.option("-l, --location <location>", "list backends in the specified location")
.before(apphosting.ensureApiEnabled)
.action(async (options: Options) => {
if (options.location !== undefined) {
logWarning("--location is being removed in the next major release.");
}
const projectId = needProjectId(options);
const location = (options.location as string) ?? "-";
let backendRes: apphosting.ListBackendsResponse;
try {
backendRes = await apphosting.listBackends(projectId, location);
} catch (err: unknown) {
throw new FirebaseError(
`Unable to list backends present for project: ${projectId}. Please check the parameters you have provided.`,
{ original: err as Error },
);
}
const backends = backendRes.backends ?? [];
printBackendsTable(backends);
return backends;
});
/**
* Prints a table given a list of backends
*/
export function printBackendsTable(backends: apphosting.Backend[]): void {
const table = new Table({
head: TABLE_HEAD,
style: { head: ["green"] },
});
for (const backend of backends) {
const { location, id } = apphosting.parseBackendName(backend.name);
table.push([
id,
// sample repository value: "projects/<project-name>/locations/us-central1/connections/<connection-id>/repositories/<repository-name>"
backend.codebase?.repository?.split("/").pop() ?? "",
backend.uri.startsWith("https:") ? backend.uri : "https://" + backend.uri,
location,
datetimeString(new Date(backend.updateTime)),
]);
}
logger.info(table.toString());
}