-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextension.ts
More file actions
405 lines (340 loc) · 10.8 KB
/
extension.ts
File metadata and controls
405 lines (340 loc) · 10.8 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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
import { relative, resolve, sep } from 'path';
import * as cp from 'child_process';
import { readFile } from 'fs/promises';
import { existsSync } from 'fs';
import * as yaml from 'js-yaml';
import * as vscode from 'vscode';
let channel: vscode.OutputChannel;
function run(file: string | vscode.Uri | null | undefined) {
if (!file) {
if (!vscode.window.activeTextEditor) return;
run(vscode.window.activeTextEditor.document.uri);
return;
}
const uri = typeof file === 'string' ? vscode.Uri.parse(file) : file;
for (const worker of workers.values()) {
if (worker.workspaceHas(uri)) {
worker.run(uri);
break;
}
}
}
const workers = new Map<string, Worker>();
export function activate(context: vscode.ExtensionContext) {
channel = vscode.window.createOutputChannel('Code Ownership');
context.subscriptions.push(channel);
const statusBarItem = vscode.window.createStatusBarItem(
vscode.StatusBarAlignment.Left,
);
statusBarItem.command = 'code-ownership-vscode.showOwnershipInfo';
context.subscriptions.push(statusBarItem);
context.subscriptions.push(
vscode.commands.registerCommand('code-ownership-vscode.run', run),
);
context.subscriptions.push(
vscode.commands.registerCommand(
'code-ownership-vscode.showOutputChannel',
() => {
channel.show();
},
),
);
const statusProvider = new StatusProvider(statusBarItem);
context.subscriptions.push(statusProvider);
context.subscriptions.push(
vscode.commands.registerCommand(
'code-ownership-vscode.showOwnershipInfo',
() => {
if (statusProvider.owner) {
const filename = statusProvider.owner.filepath
.split(sep)
.slice(-1)[0];
vscode.window
.showInformationMessage(
`${filename} is owned by ${statusProvider.owner.teamName}`,
...statusProvider.owner.actions.map((action) => ({
title: action.title,
action() {
vscode.commands.executeCommand('vscode.open', action.uri);
},
})),
)
.then((x) => x?.action());
}
},
),
);
context.subscriptions.push(
vscode.window.onDidChangeActiveTextEditor((active) => {
if (active)
vscode.commands.executeCommand(
'code-ownership-vscode.run',
active.document.uri,
);
}),
);
context.subscriptions.push(
vscode.workspace.onDidChangeWorkspaceFolders(({ added, removed }) => {
for (const add of added) {
if (workers.has(add.name)) {
workers.get(add.name)!.dispose();
workers.delete(add.name);
}
workers.set(add.name, new Worker(add, statusProvider));
}
for (const remove of removed) {
if (workers.has(remove.name)) {
workers.get(remove.name)!.dispose();
workers.delete(remove.name);
}
}
}),
);
vscode.workspace.workspaceFolders?.forEach((folder) => {
workers.set(folder.name, new Worker(folder, statusProvider));
});
vscode.commands.executeCommand('code-ownership-vscode.run');
log('info', 'Exension activated');
}
type Owner = {
filepath: string;
teamName: string;
teamConfig: string;
actions: UserAction[];
};
type UserAction = {
title: string;
uri: vscode.Uri;
};
async function getSlackChannel(
teamConfig: string,
): Promise<string | undefined> {
try {
const text = (await readFile(teamConfig)).toString();
const config = yaml.load(text) as any;
if (typeof config?.slack?.room_for_humans === 'string') {
const slack = config?.slack?.room_for_humans;
return slack.startsWith('#') ? slack.slice(1) : slack;
}
return undefined;
} catch {
return undefined;
}
}
async function runCommand(
cwd: string | undefined,
command: string,
statusProvider: StatusProvider,
): Promise<string> {
let stdout: string = '';
log('info', `command: ${command}`);
try {
stdout = await new Promise((res, rej) =>
cp.exec(command, { cwd }, (err, out, stderr) => {
if (err) rej(err);
else if (typeof stderr === 'string' && stderr.length) rej(stderr);
else res(out.trim());
}),
);
log('info', `stdout: ${stdout}`);
} catch (ex) {
statusProvider.status = 'error';
log('error', ex.message || ex.toString());
}
return stdout;
}
function logSpace() {
channel.appendLine('');
}
function log(level: 'debug' | 'info' | 'warning' | 'error', ...msg: string[]) {
channel.appendLine(`[${date()}] [${level}] ${msg.join(', ')}`);
}
function date() {
return (
new Date().toLocaleString('sv') +
'.' +
`000${new Date().getMilliseconds()}`.slice(-3)
);
}
type Status = 'idle' | 'working' | 'error';
class StatusProvider implements vscode.Disposable {
constructor(private readonly statusBarItem: vscode.StatusBarItem) {
this._listener = vscode.window.onDidChangeActiveTextEditor((active) => {
if (!active) this.statusBarItem.hide();
});
}
private _listener: vscode.Disposable;
private _status: Status = 'idle';
private _owner: Owner | undefined = undefined;
private _isConfigured: boolean | null = null;
get status(): Status {
return this._status;
}
set status(value: Status) {
this._status = value;
this.update();
}
get owner(): Owner | undefined {
return this._owner;
}
set owner(value: Owner | undefined) {
this._owner = value;
this.update();
}
get isConfigured(): boolean | null {
return this._isConfigured;
}
set isConfigured(value: boolean | null) {
this._isConfigured = value;
this.update();
}
private update() {
if (this.status === 'error') {
this.statusBarItem.command = 'code-ownership-vscode.showOutputChannel';
} else {
this.statusBarItem.command = 'code-ownership-vscode.showOwnershipInfo';
}
if (this.status === 'error') {
this.statusBarItem.text = '$(error) Owner: Error!';
this.statusBarItem.tooltip = `See "${channel.name}" output channel for details`;
this.statusBarItem.show();
} else if (this.status === 'working') {
this.statusBarItem.text = '$(loading~spin) Owner: running...';
this.statusBarItem.tooltip = undefined;
this.statusBarItem.show();
} else if (this.status === 'idle') {
if (this.owner) {
this.statusBarItem.text = `$(account) Owner: ${this.owner.teamName}`;
this.statusBarItem.tooltip = undefined;
this.statusBarItem.show();
} else if (this.isConfigured === false) {
this.statusBarItem.text = `$(info) Ownership: not configured`;
this.statusBarItem.tooltip =
'This workspace is not configured for code ownership';
this.statusBarItem.show();
} else {
this.statusBarItem.text = `$(warning) Owner: none`;
this.statusBarItem.tooltip = 'This file has no assigned team ownership';
this.statusBarItem.show();
}
}
}
dispose() {
this._listener.dispose();
}
}
class Worker implements vscode.Disposable {
private isConfigured: boolean | null = null;
constructor(
private readonly workspace: vscode.WorkspaceFolder,
private readonly statusProvider: StatusProvider,
) {
this.checkConfiguration();
}
private async checkConfiguration(): Promise<void> {
const config = vscode.workspace.getConfiguration('code-ownership-vscode');
const command = config.get<string>('command', 'bin/codeownership');
const binaryPath = resolve(this.workspace.uri.fsPath, command);
this.isConfigured = existsSync(binaryPath);
this.statusProvider.isConfigured = this.isConfigured;
if (!this.isConfigured) {
log(
'info',
`No code ownership binary found in workspace: ${this.workspace.name}`,
);
} else {
log(
'info',
`Code ownership binary found in workspace: ${this.workspace.name}`,
);
}
}
workspaceHas(file: vscode.Uri): boolean {
return file.fsPath.startsWith(this.workspace.uri.fsPath);
}
async run(file: vscode.Uri): Promise<void> {
if (!this.workspaceHas(file)) return;
if (this.isConfigured === null) {
await this.checkConfiguration();
}
if (!this.isConfigured) {
this.statusProvider.owner = undefined;
this.statusProvider.status = 'idle';
return;
}
this.statusProvider.status = 'working';
await new Promise((r) => setTimeout(r, 50));
const cwd = this.workspace.uri.fsPath;
const relativePath = relative(cwd, file.fsPath);
logSpace();
log('info', `Checking ownership for ${relativePath}`);
log('debug', `cwd: ${cwd}`);
log('debug', `workspace: ${this.workspace.uri.fsPath}`);
log('debug', `file path: ${file.fsPath}`);
const config = vscode.workspace.getConfiguration('code-ownership-vscode');
const command = config.get<string>('command', 'bin/codeownership');
const fileArg = config.get<string>('fileArg', 'for_file');
// Run ownership check
const output = await runCommand(
cwd,
`${command} ${fileArg} "${relativePath}" --json`,
this.statusProvider,
);
if (!output) {
log('info', 'Code ownership check returned no output');
this.statusProvider.owner = undefined;
this.statusProvider.status = 'idle';
return;
}
try {
const obj = JSON.parse(output);
if (!obj.team_name) {
log('info', 'No team name found in ownership data');
this.statusProvider.owner = undefined;
this.statusProvider.status = 'idle';
return;
}
if (!obj.team_yml) {
log('info', 'No team config file found in ownership data');
this.statusProvider.owner = undefined;
this.statusProvider.status = 'idle';
return;
}
if (obj.team_name === 'Unowned') {
log('info', 'File is explicitly unowned');
this.statusProvider.owner = undefined;
this.statusProvider.status = 'idle';
return;
}
const teamConfig = resolve(this.workspace.uri.fsPath, obj.team_yml);
const actions: UserAction[] = [];
const slackChannel = await getSlackChannel(teamConfig);
if (slackChannel) {
actions.push({
title: `Slack: #${slackChannel}`,
uri: vscode.Uri.parse(
`https://slack.com/app_redirect?channel=${slackChannel}`,
),
});
}
actions.push({
title: 'View team config',
uri: vscode.Uri.parse(teamConfig),
});
this.statusProvider.owner = {
filepath: file.fsPath,
teamName: obj.team_name,
teamConfig,
actions,
};
this.statusProvider.status = 'idle';
} catch (error) {
log('info', `Invalid ownership data format: ${error.message}`);
this.statusProvider.owner = undefined;
this.statusProvider.status = 'idle';
}
}
dispose() {
// TODO
}
}