-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwipe.ts
99 lines (84 loc) · 3.08 KB
/
wipe.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
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
import * as fs from "fs-extra";
import { Err, Ok } from "ts-results";
import * as vscode from "vscode";
import { ActionContext } from "../actions/types";
import { deactivate } from "../extension";
import { Logger } from "../utilities";
export async function wipe(
actionContext: ActionContext,
context: vscode.ExtensionContext,
): Promise<void> {
const { dialog, resources, tmc, userData, workspaceManager } = actionContext;
Logger.info("Wiping");
if (workspaceManager.activeCourse) {
dialog.warningNotification(
"Extension data can't be wiped now because a TMC Workspace is open. \
Please close the workspace and any related files before running this command again.",
[
"Close workspace",
(): void => {
vscode.commands.executeCommand("workbench.action.closeFolder");
},
],
);
return;
}
const wipe = await dialog.explicitConfirmation(
"Are you sure you want to wipe all data for the TMC Extension?",
);
if (!wipe) {
return;
}
const reallyWipe = await dialog.explicitConfirmation(
"This action cannot be undone. This might permanently delete the extension data, exercises, settings...",
);
if (!reallyWipe) {
return;
}
// Change to Explorer view to avoid instant restart
await vscode.commands.executeCommand("workbench.files.action.focusFilesExplorer");
const message = "Removing extension data...";
const wipeResult = await dialog.progressNotification(message, async (progress) => {
// Remove exercises
try {
fs.removeSync(resources.projectsDirectory);
} catch (_e) {
return Err(new Error("Failed to remove projects directory."));
}
progress.report({ message, percent: 0.25 });
// Reset Langs settings
const result2 = await tmc.resetSettings();
if (result2.err) {
return result2;
}
progress.report({ message, percent: 0.5 });
// Maybe logout should have setting to disable events?
tmc.on("logout", () => {});
const result3 = await tmc.deauthenticate();
if (result3.err) {
return result3;
}
progress.report({ message, percent: 0.75 });
// Clear storage
await userData.wipeDataFromStorage();
progress.report({ message, percent: 1 });
// All clear
return Ok.EMPTY;
});
if (wipeResult.err) {
dialog.errorNotification("Failed to wipe extension data.", wipeResult.val);
return;
}
await vscode.commands.executeCommand("setContext", "test-my-code:LoggedIn", undefined);
await vscode.commands.executeCommand("setContext", "test-my-code:WorkspaceActive", undefined);
deactivate();
for (const sub of context.subscriptions) {
try {
sub.dispose();
} catch (e) {
Logger.error(e);
}
}
Logger.info("Extension wipe completed.");
await vscode.commands.executeCommand("workbench.action.reloadWindow");
}