-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.ts
More file actions
170 lines (145 loc) · 4.62 KB
/
Copy pathindex.ts
File metadata and controls
170 lines (145 loc) · 4.62 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
import { Command } from "commander";
import {
runGitAccountConnect,
runGitAccountList,
runGitConnect,
runGitDisconnect,
} from "../../controllers/project";
import {
renderGitAccountConnect,
renderGitAccountList,
renderGitConnect,
renderGitDisconnect,
serializeGitAccountConnect,
serializeGitAccountList,
} from "../../presenters/project";
import { attachCommandDescriptor } from "../../shell/command-meta";
import { runCommand } from "../../shell/command-runner";
import {
addCompactGlobalFlags,
addGlobalFlags,
} from "../../shell/global-flags";
import { type CliRuntime, configureRuntimeCommand } from "../../shell/runtime";
import type {
GitAccountsResult,
GitConnectAccountResult,
ProjectRepositoryConnectionResult,
} from "../../types/project";
export function createGitCommand(runtime: CliRuntime): Command {
const git = attachCommandDescriptor(
configureRuntimeCommand(new Command("git"), runtime),
"git",
);
addCompactGlobalFlags(git);
git.addCommand(createGitConnectCommand(runtime));
git.addCommand(createGitDisconnectCommand(runtime));
git.addCommand(createGitAccountCommand(runtime));
return git;
}
function createGitConnectCommand(runtime: CliRuntime): Command {
const command = attachCommandDescriptor(
configureRuntimeCommand(new Command("connect"), runtime),
"git.connect",
);
command.argument("[git-url]", "GitHub repository URL");
command.option("--project <id-or-name>", "Project id or name");
addGlobalFlags(command);
command.action(async (gitUrl: string | undefined, options) => {
await runCommand<ProjectRepositoryConnectionResult>(
runtime,
"git.connect",
options as Record<string, unknown>,
(context) =>
runGitConnect(context, gitUrl, {
project:
typeof options.project === "string" ? options.project : undefined,
}),
{
renderHuman: (context, descriptor, result) =>
renderGitConnect(context, descriptor, result),
},
);
});
return command;
}
function createGitDisconnectCommand(runtime: CliRuntime): Command {
const command = attachCommandDescriptor(
configureRuntimeCommand(new Command("disconnect"), runtime),
"git.disconnect",
);
command.option("--project <id-or-name>", "Project id or name");
addGlobalFlags(command);
command.action(async (options) => {
await runCommand<ProjectRepositoryConnectionResult>(
runtime,
"git.disconnect",
options as Record<string, unknown>,
(context) =>
runGitDisconnect(context, {
project:
typeof options.project === "string" ? options.project : undefined,
}),
{
renderHuman: (context, descriptor, result) =>
renderGitDisconnect(context, descriptor, result),
},
);
});
return command;
}
function createGitAccountCommand(runtime: CliRuntime): Command {
const account = attachCommandDescriptor(
configureRuntimeCommand(new Command("account"), runtime),
"git.account",
);
addCompactGlobalFlags(account);
account.addCommand(createGitAccountListCommand(runtime));
account.addCommand(createGitAccountConnectCommand(runtime));
return account;
}
function createGitAccountListCommand(runtime: CliRuntime): Command {
const command = attachCommandDescriptor(
configureRuntimeCommand(new Command("list"), runtime),
"git.account.list",
);
addGlobalFlags(command);
command.action(async (options) => {
await runCommand<GitAccountsResult>(
runtime,
"git.account.list",
options as Record<string, unknown>,
(context) => runGitAccountList(context),
{
renderHuman: (context, descriptor, result) =>
renderGitAccountList(context, descriptor, result),
renderJson: (result) => serializeGitAccountList(result),
},
);
});
return command;
}
function createGitAccountConnectCommand(runtime: CliRuntime): Command {
const command = attachCommandDescriptor(
configureRuntimeCommand(new Command("connect"), runtime),
"git.account.connect",
);
command.argument(
"[account]",
"GitHub account login or numeric installation id",
);
addGlobalFlags(command);
command.action(async (account: string | undefined, options) => {
await runCommand<GitConnectAccountResult>(
runtime,
"git.account.connect",
options as Record<string, unknown>,
(context) => runGitAccountConnect(context, account),
{
renderHuman: (context, descriptor, result) =>
renderGitAccountConnect(context, descriptor, result),
renderJson: (result) => serializeGitAccountConnect(result),
},
);
});
return command;
}