-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
379 lines (327 loc) · 10.5 KB
/
main.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
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
import {
App,
Modal,
Notice,
Plugin,
Setting,
TFolder,
Platform,
normalizePath,
} from "obsidian";
import { exec } from "child_process";
import * as os from "os";
import * as fs from "fs";
import { join, basename } from "path";
// Remember to rename these classes and interfaces!
interface SymlinkPluginSettings {
defaultTargetPath: string;
}
const DEFAULT_SETTINGS: SymlinkPluginSettings = {
defaultTargetPath: "",
};
export default class SymlinkPlugin extends Plugin {
settings: SymlinkPluginSettings;
async onload() {
await this.loadSettings();
this.addCommand({
id: "create-symlink",
name: "Creates a symlink to a folder",
callback: () => this.createSymlink(),
});
this.addCommand({
id: "create-symlink-file",
name: "Creates a symlink to a file",
callback: () => this.createSymlinkFile(),
});
}
onunload() {}
async loadSettings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
}
async saveSettings() {
await this.saveData(this.settings);
}
async createSymlinkFile() {
if (!Platform.isDesktop) {
new Notice("This plugin only works on desktop.");
return;
}
new SymlinkFileInputModal(this.app, (source, target) => {
// Inside createSymlink or within the modal's onSubmit
if (!fs.existsSync(source)) {
new Notice(
"Source file path does not exist. Please ensure it does. Symlinks cannot be created if the source file path does not exist.",
);
return;
}
// Get active directory path
const targetPath = this.extendActivePath(target);
if (fs.existsSync(targetPath)) {
new Notice(
"Target file path exist. Please ensure it does not. Symlinks cannot be created if the target file path already exists.",
);
return;
}
let command = "";
if (Platform.isWin) {
command = `mklink "${targetPath}" "${source}"`;
} else if (Platform.isLinux || Platform.isMacOS) {
command = `ln -s "${source}" "${targetPath}"`;
} else {
new Notice("Unsupported platform.");
return;
}
// Execute the command
exec(command, (error, stdout, stderr) => {
if (error) {
if (stderr) {
console.error(`Error: ${stderr}`);
new Notice(`Error: ${stderr}`);
return;
}
} else {
new Notice("Symlink created successfully.");
this.refreshAfterSymlink(targetPath);
}
});
}).open();
}
async createSymlink() {
if (!Platform.isDesktop) {
new Notice("This plugin only works on desktop.");
return;
}
new SymlinkInputModal(this.app, (source, target, linkType) => {
// Inside createSymlink or within the modal's onSubmit
if (!fs.existsSync(source)) {
new Notice(
"Source path does not exist. Please ensure it does. Symlinks cannot be created if the source path does not exist.",
);
return;
}
// Get active directory path
const targetPath = this.extendActivePath(target);
if (fs.existsSync(targetPath)) {
new Notice(
"Target path exist. Please ensure it does not. Symlinks cannot be created if the target path already exists.",
);
return;
}
let command = "";
if (Platform.isWin) {
switch (linkType) {
case "symlink":
// Windows uses mklink
// Syntax: mklink /D "targetPath" "sourcePath"
command = `mklink /D "${targetPath}" "${source}"`;
break;
case "junction":
// Windows uses mklink
// Syntax: mklink /J "targetPath" "sourcePath"
command = `mklink /J "${targetPath}" "${source}"`;
break;
}
} else if (Platform.isLinux || Platform.isMacOS) {
// Unix/Linux uses ln -s
// Syntax: ln -s "sourcePath" "targetPath"
command = `ln -s "${source}" "${targetPath}"`;
} else {
new Notice("Unsupported platform.");
return;
}
// Execute the command
exec(command, (error, stdout, stderr) => {
if (error) {
if (stderr) {
console.error(`Error: ${stderr}`);
new Notice(`Error: ${stderr}`);
return;
}
} else {
new Notice("Symlink created successfully.");
this.refreshAfterSymlink(targetPath);
}
});
}).open();
}
getActivePath(): string {
const activeFile = this.app.workspace.getActiveFile();
let relativePath: string;
if (activeFile) {
// Use the parent directory of the active file
const currentPath = activeFile.path;
relativePath = currentPath.substring(0, currentPath.lastIndexOf("/"));
} else {
// Use the root of the vault
relativePath = "";
}
return relativePath;
}
extendActivePath(name: string): string {
let relativePath = this.getActivePath();
// Combine the relative path with the provided name
relativePath = normalizePath(join(relativePath, name));
// Get the vault's root path
const vaultRootPath = (this.app.vault.adapter as any).basePath;
// Combine the vault root path with the relative path
return join(vaultRootPath, relativePath);
}
async refreshVault() {
await this.app.vault.adapter.list("");
}
async forceRefresh(path: string) {
const folder = this.app.vault.getAbstractFileByPath(path);
if (folder instanceof TFolder) {
this.app.vault.trigger("rename", folder, path);
}
}
async refreshAfterSymlink(path: string) {
await new Promise((resolve) => setTimeout(resolve, 100)); // Wait 100ms
await this.refreshVault();
await this.forceRefresh(path);
this.app.vault;
if (path.split("/").length === 1) {
await this.forceRefresh("");
}
}
}
class SymlinkInputModal extends Modal {
sourcePath = "";
targetPath = "";
linkType = "junction";
onSubmit: (source: string, target: string, symlink: string) => void;
constructor(
app: App,
onSubmit: (source: string, target: string, symlink: string) => void,
) {
super(app);
this.onSubmit = onSubmit;
}
onOpen() {
const { contentEl } = this;
contentEl.createEl("h2", { text: "Create symlink" });
new Setting(contentEl)
.setName("Source directory")
.setDesc(
"This is the folder you want to create a symlink to. The source directory needs to exist.",
)
.addButton((button) =>
button
.setButtonText("Choose folder")
.setCta()
.onClick(async () => {
const { remote } = window.require("electron");
const selectedPaths = await remote.dialog.showOpenDialog({
properties: ["openDirectory"],
});
if (selectedPaths && selectedPaths.filePaths.length > 0) {
this.sourcePath = selectedPaths.filePaths[0];
// Update the button text or add a notice
button.setButtonText(basename(this.sourcePath));
}
}),
);
new Setting(contentEl)
.setName("Target directory path")
.setDesc(
"This is the path where the symlink will be created. The target directory should not exist and will be newly created.",
)
.addText((text) => text.onChange((value) => (this.targetPath = value)));
// Link Type Dropdown (Windows Only)
if (Platform.isWin) {
new Setting(contentEl)
.setName("Link type")
.setDesc("Choose the type of link to create.")
.addDropdown((dropdown) =>
dropdown
.addOption("junction", "Directory junction (default)")
.addOption(
"symlink",
"Symbolic link (across volumes, but needs admin!)",
)
.setValue(this.linkType)
.onChange((value) => {
this.linkType = value as "junction" | "symlink";
}),
);
}
new Setting(contentEl).addButton((button) =>
button
.setButtonText("Create")
.setCta()
.onClick(() => {
if (this.sourcePath && this.targetPath) {
this.onSubmit(this.sourcePath, this.targetPath, this.linkType);
this.close();
} else {
new Notice("Both paths are required.");
}
}),
);
}
onClose() {
const { contentEl } = this;
contentEl.empty();
}
}
class SymlinkFileInputModal extends Modal {
sourcePath = "";
targetPath = "";
onSubmit: (source: string, target: string) => void;
constructor(app: App, onSubmit: (source: string, target: string) => void) {
super(app);
this.onSubmit = onSubmit;
}
onOpen() {
const { contentEl } = this;
contentEl.createEl("h2", { text: "Create symlink" });
let sourceDesc =
"This is the file you want to create a symlink to. The source file needs to exist.";
if (Platform.isWin) {
sourceDesc +=
" Please note: You need to activate 'Developer Mode' or need admin rights to create symlinks on Windows!";
}
new Setting(contentEl)
.setName("Source file")
.setDesc(sourceDesc)
.addButton((button) =>
button
.setButtonText("Choose file")
.setCta()
.onClick(async () => {
const { remote } = window.require("electron");
const selectedPaths = await remote.dialog.showOpenDialog({
properties: ["openFile"],
});
if (selectedPaths && selectedPaths.filePaths.length > 0) {
this.sourcePath = selectedPaths.filePaths[0];
// Update the button text or add a notice
button.setButtonText(basename(this.sourcePath));
}
}),
);
new Setting(contentEl)
.setName("Target file path")
.setDesc(
"This is the path where the symlink will be created. The target file path should not exist and will be newly created.",
)
.addText((text) => text.onChange((value) => (this.targetPath = value)));
new Setting(contentEl).addButton((button) =>
button
.setButtonText("Create")
.setCta()
.onClick(() => {
if (this.sourcePath && this.targetPath) {
this.onSubmit(this.sourcePath, this.targetPath);
this.close();
} else {
new Notice("Both paths are required.");
}
}),
);
}
onClose() {
const { contentEl } = this;
contentEl.empty();
}
}