-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.ts
More file actions
231 lines (206 loc) · 7.29 KB
/
tools.ts
File metadata and controls
231 lines (206 loc) · 7.29 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
import * as path from "path";
import { Command } from "commander";
import ora from "ora";
import ansis from "ansis";
import { checkApiToken } from "../utils/auth";
import { handleError } from "../utils/error";
import { createTable, getOutputFormat, pickDeep, printJson } from "../utils/output";
import { AnalysisService } from "../api/client/services/AnalysisService";
import { AnalysisTool } from "../api/client/models/AnalysisTool";
import {
readConfigFile,
fetchAllTools,
getLocalSupportedToolIds,
buildImportPreview,
printImportPreview,
executeImport,
ImportFailure,
} from "../utils/import-config";
import { confirmAction } from "../utils/prompt";
function configFileStatus(tool: AnalysisTool): string {
if (tool.settings.usesConfigurationFile) return "Applied";
if (tool.settings.hasConfigurationFile) return "Available";
return ansis.dim("—");
}
function printToolGroup(tools: AnalysisTool[], enabled: boolean): void {
const group = tools.filter((t) => t.settings.isEnabled === enabled);
const title = enabled ? "✅ Enabled tools" : "❌ Disabled tools";
console.log(ansis.bold(`\n${title} (${group.length})`));
if (group.length === 0) {
console.log(ansis.dim(" None."));
return;
}
const table = createTable({ head: ["Tool", "Config File", "Via Standard", "Notes"] });
for (const tool of group) {
const standards = tool.settings.enabledBy.map((s) => s.name).join(", ");
const viaStandard = tool.settings.usesConfigurationFile
? ansis.dim("Overwritten by file")
: standards || ansis.dim("—");
const notes = tool.isClientSide ? "Client-side tool" : "";
table.push([
tool.name,
configFileStatus(tool),
viaStandard,
notes || ansis.dim("—"),
]);
}
console.log(table.toString());
}
const MAX_ERROR_DETAILS = 5;
function printImportErrors(failures: ImportFailure[]): void {
for (const f of failures) {
const status = f.status ? ` (${f.status})` : "";
console.log(ansis.red(`✗ ${f.tool}: ${f.error}${status}`));
if (f.details.length === 0) continue;
const shown = f.details.slice(0, MAX_ERROR_DETAILS);
for (const detail of shown) {
console.log(ansis.dim(` ${detail}`));
}
const remaining = f.details.length - shown.length;
if (remaining > 0) {
console.log(ansis.dim(` ... and ${remaining} more`));
}
}
console.log();
}
export function registerToolsCommand(program: Command) {
program
.command("tools")
.alias("tls")
.description("List all tools for a repository and their status")
.argument("<provider>", "git provider (gh, gl, or bb)")
.argument("<organization>", "organization name")
.argument("<repository>", "repository name")
.option("--import [path]", "import tool configuration from a file (default: .codacy/codacy.config.json)")
.option("-y, --skip-approval", "skip confirmation prompt during import")
.option("--force", "unlink all coding standards before importing")
.addHelpText(
"after",
`
Examples:
$ codacy-cloud-cli tools gh my-org my-repo
$ codacy-cloud-cli tools gh my-org my-repo --output json
$ codacy-cloud-cli tools gh my-org my-repo --import
$ codacy-cloud-cli tools gh my-org my-repo --import ./custom-config.json
$ codacy-cloud-cli tools gh my-org my-repo --import -y
$ codacy-cloud-cli tools gh my-org my-repo --import --force -y`,
)
.action(async function (
this: Command,
provider: string,
organization: string,
repository: string,
) {
try {
checkApiToken();
const opts = this.opts();
// ── Mode: import ────────────────────────────────────────────────
if (opts.import !== undefined) {
const configPath =
typeof opts.import === "string"
? opts.import
: ".codacy/codacy.config.json";
const resolvedPath = path.resolve(configPath);
const spinner = ora("Reading configuration...").start();
// Read config file
const config = readConfigFile(resolvedPath);
// Fetch current state and local CLI info in parallel
const [repoToolsResponse, allTools, repoResponse, localToolIds] =
await Promise.all([
AnalysisService.listRepositoryTools(
provider,
organization,
repository,
),
fetchAllTools(),
AnalysisService.getRepositoryWithAnalysis(
provider,
organization,
repository,
),
getLocalSupportedToolIds(),
]);
spinner.stop();
// Build and display preview
const preview = buildImportPreview(
config,
repoToolsResponse.data,
allTools,
repoResponse.data.repository.standards,
resolvedPath,
localToolIds,
);
printImportPreview(preview, repository, Boolean(opts.force));
// Confirm
if (!opts.skipApproval) {
const confirmed = await confirmAction(
"\nDo you wish to proceed?",
);
if (!confirmed) {
console.log("Import cancelled.");
return;
}
}
console.log();
const execSpinner = ora("Applying configuration...").start();
const result = await executeImport(
provider,
organization,
repository,
preview,
config,
allTools,
execSpinner,
Boolean(opts.force),
);
execSpinner.stop();
if (result.failed.length === 0) {
console.log(
`${ansis.green("✓")} Configuration imported successfully.`,
);
} else {
console.log(
ansis.yellow(
`Import completed with ${result.failed.length} error(s):`,
),
);
printImportErrors(result.failed);
if (result.succeeded.length > 0) {
console.log(
ansis.green(
` ✓ ${result.succeeded.length} tool(s) configured successfully.`,
),
);
}
}
return;
}
// ── Default: list tools ─────────────────────────────────────────
const format = getOutputFormat(this);
const spinner = ora("Fetching tools...").start();
const response = await AnalysisService.listRepositoryTools(
provider,
organization,
repository,
);
spinner.stop();
const tools = response.data;
if (format === "json") {
printJson(tools.map((tool: any) => pickDeep(tool, [
"name",
"uuid",
"isClientSide",
"settings.isEnabled",
"settings.hasConfigurationFile",
"settings.usesConfigurationFile",
"settings.enabledBy",
])));
return;
}
printToolGroup(tools, true);
printToolGroup(tools, false);
} catch (err) {
handleError(err);
}
});
}