forked from dfinke/vscode-pandoc
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathextension.ts
More file actions
396 lines (362 loc) · 11.6 KB
/
Copy pathextension.ts
File metadata and controls
396 lines (362 loc) · 11.6 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
import * as vscode from "vscode";
import { execFile } from "child_process";
import * as path from "path";
var pandocOutputChannel = vscode.window.createOutputChannel("Pandoc");
function setStatusBarText(what: string, docType: string) {
var date = new Date();
var text = what + " [" + docType + "] " + date.toLocaleTimeString();
vscode.window.setStatusBarMessage(text, 1500);
}
function parseShellArgs(input: string): string[] {
const args: string[] = [];
let current = "";
let i = 0;
while (i < input.length) {
const ch = input[i];
if (ch === '"' || ch === "'") {
const quote = ch;
i++;
while (i < input.length && input[i] !== quote) {
current += input[i];
i++;
}
i++; // skip closing quote
} else if (/\s/.test(ch)) {
if (current.length > 0) {
args.push(current);
current = "";
}
i++;
} else {
current += ch;
i++;
}
}
if (current.length > 0) {
args.push(current);
}
return args;
}
function getPandocOptions(quickPickLabel: string) {
var pandocOptions;
switch (quickPickLabel) {
case "pdf":
pandocOptions = vscode.workspace
.getConfiguration("pandoc")
.get<string>("pdfOptString");
break;
case "docx":
pandocOptions = vscode.workspace
.getConfiguration("pandoc")
.get<string>("docxOptString");
break;
case "html":
pandocOptions = vscode.workspace
.getConfiguration("pandoc")
.get<string>("htmlOptString");
break;
case "asciidoc":
pandocOptions = vscode.workspace
.getConfiguration("pandoc")
.get<string>("asciidocOptString");
break;
case "docbook":
pandocOptions = vscode.workspace
.getConfiguration("pandoc")
.get<string>("docbookOptString");
break;
case "epub":
pandocOptions = vscode.workspace
.getConfiguration("pandoc")
.get<string>("epubOptString");
break;
case "rst":
pandocOptions = vscode.workspace
.getConfiguration("pandoc")
.get<string>("rstOptString");
break;
}
return pandocOptions;
}
function openDocument(outFile: string) {
switch (process.platform) {
case "darwin":
execFile("open", [outFile]);
break;
case "linux":
execFile("xdg-open", [outFile]);
break;
default:
execFile(outFile, []);
}
}
function getPandocExecutablePath() {
// By default pandoc executable should be in the PATH environment variable.
var pandocExecutablePath;
if (
vscode.workspace.getConfiguration("pandoc").has("executable") &&
vscode.workspace.getConfiguration("pandoc").get("executable") !== ""
) {
pandocExecutablePath = vscode.workspace
.getConfiguration("pandoc")
.get("executable");
}
return pandocExecutablePath;
}
function getLuaFilterPaths(extensionPath?: string): string[] {
var luaFilters = vscode.workspace
.getConfiguration("pandoc")
.get<string[]>("luaFilters", []);
var filters: string[] = luaFilters ? [...luaFilters] : [];
var enableAdmonitions = vscode.workspace
.getConfiguration("pandoc")
.get<boolean>("enableAdmonitions", false);
if (enableAdmonitions && extensionPath) {
var admonitionFilter = path.join(
extensionPath,
"filters",
"docusaurus-admonitions.lua"
);
filters.unshift(admonitionFilter);
}
return filters;
}
function getPandocDefaultFormat(): string | undefined {
// TODO: Works, but seems to need a hard refresh.
if (
(
vscode.workspace
.getConfiguration("pandoc")
.get("defaultOutputFormat") as string
).length > 0
) {
return vscode.workspace
.getConfiguration("pandoc")
.get("defaultOutputFormat") as string;
} else {
return undefined;
}
}
export function activate(context: vscode.ExtensionContext) {
var disposable = vscode.commands.registerCommand(
"pandoc.render",
(args?: { outputType: string }) => {
var defaultFormat = getPandocDefaultFormat();
const editor = vscode.window.activeTextEditor;
if (!editor) {
return;
}
let fullName = path.normalize(editor.document.fileName);
var filePath = path.dirname(fullName);
var fileName = path.basename(fullName);
var fileNameOnly = path.parse(fileName).name;
var extensionPath = context.extensionPath;
if (!defaultFormat && !args?.outputType) {
// Nothing is set
displayMenuAndRender(context, filePath, fileName, fileNameOnly, extensionPath);
} else if (args?.outputType && !defaultFormat) {
// If there is an output type selected, but no default format, then use the selected output type.
renderDoc(filePath, fileName, fileNameOnly, args.outputType, extensionPath);
} else if (args?.outputType) {
// If the user has selected an output type, use that, overriding any default format.
renderDoc(filePath, fileName, fileNameOnly, args.outputType, extensionPath);
} else if (defaultFormat && !args?.outputType) {
// Dfault format and no args, then use the default format.
renderDoc(filePath, fileName, fileNameOnly, defaultFormat, extensionPath);
}
}
);
context.subscriptions.push(disposable);
}
function displayMenuAndRender(
context: vscode.ExtensionContext,
filePath: string,
fileName: string,
fileNameOnly: string,
extensionPath: string
) {
const sortByFrequency = vscode.workspace
.getConfiguration("pandoc")
.get<boolean>("sortByFrequency", true);
const usageCounts: Record<string, number> = context.globalState.get(
"pandoc.formatUsage",
{}
);
let items: vscode.QuickPickItem[] = [
{ label: "pdf", description: "Render as pdf document" },
{ label: "docx", description: "Render as word document" },
{ label: "html", description: "Render as html document" },
{ label: "asciidoc", description: "Render as asciidoc document" },
{ label: "docbook", description: "Render as docbook document" },
{ label: "epub", description: "Render as epub document" },
{ label: "rst", description: "Render as rst document" },
];
if (sortByFrequency) {
// Sort by usage frequency (most used first); original order is preserved for ties.
items.sort(
(a, b) => (usageCounts[b.label] ?? 0) - (usageCounts[a.label] ?? 0)
);
}
vscode.window.showQuickPick(items).then(async (qpSelection) => {
if (!qpSelection) {
return;
}
const updated = {
...usageCounts,
[qpSelection.label]: (usageCounts[qpSelection.label] ?? 0) + 1,
};
await context.globalState.update("pandoc.formatUsage", updated);
renderDoc(filePath, fileName, fileNameOnly, qpSelection.label, extensionPath);
});
}
function renderDoc(
filePath: string,
fileName: string,
fileNameOnly: string,
format: string,
extensionPath?: string
) {
var inFile = path.join(filePath, fileName);
var outFile = path.join(filePath, fileNameOnly) + "." + format;
setStatusBarText("Generating", format);
var pandocOptions = getPandocOptions(format);
var pandocExecutablePath = getPandocExecutablePath();
var pandocConfigurations = vscode.workspace.getConfiguration("pandoc");
var deprecatedUseDockerGlobal =
pandocConfigurations.inspect("useDocker")?.globalValue ?? undefined;
if (deprecatedUseDockerGlobal !== undefined) {
pandocOutputChannel.append(
'migrating global configuration "pandoc.useDocker" -> "pandoc.docker.enabled"\n'
);
vscode.window.showWarningMessage(
'pandoc: found deprecated value in global configuration. Migrating configuration "pandoc.useDocker" -> "pandoc.docker.enabled".'
);
pandocConfigurations.update(
"docker.enabled",
deprecatedUseDockerGlobal,
vscode.ConfigurationTarget.Global
);
pandocConfigurations.update(
"useDocker",
undefined,
vscode.ConfigurationTarget.Global
);
}
var deprecatedUseDockerWorkspace =
pandocConfigurations.inspect("useDocker")?.workspaceValue ?? undefined;
if (deprecatedUseDockerWorkspace !== undefined) {
pandocOutputChannel.append(
'migrating workspace configuration "pandoc.useDocker" -> "pandoc.docker.enabled"\n'
);
vscode.window.showWarningMessage(
'pandoc: found deprecated value in workspace configuration. Migrating configuration "pandoc.useDocker" -> "pandoc.docker.enabled".'
);
pandocConfigurations.update(
"docker.enabled",
deprecatedUseDockerWorkspace,
vscode.ConfigurationTarget.Workspace
);
pandocConfigurations.update(
"useDocker",
undefined,
vscode.ConfigurationTarget.Workspace
);
}
var deprecatedUseDockerFolder =
pandocConfigurations.inspect("useDocker")?.workspaceFolderValue ??
undefined;
if (deprecatedUseDockerFolder !== undefined) {
pandocOutputChannel.append(
'migrating folder configuration "pandoc.useDocker" -> "pandoc.docker.enabled"\n'
);
vscode.window.showWarningMessage(
'pandoc: found deprecated value in folder configuration. Migrating configuration "pandoc.useDocker" -> "pandoc.docker.enabled".'
);
pandocConfigurations.update(
"docker.enabled",
deprecatedUseDockerFolder,
vscode.ConfigurationTarget.WorkspaceFolder
);
pandocConfigurations.update(
"useDocker",
undefined,
vscode.ConfigurationTarget.WorkspaceFolder
);
}
var useDocker = pandocConfigurations.get<boolean>("docker.enabled");
var dockerOptions = pandocConfigurations.get<string>("docker.options");
var dockerImage = pandocConfigurations.get<string>("docker.image");
var luaFilterPaths = getLuaFilterPaths(extensionPath);
// Build command and argument list safely without going through a shell.
var command: string;
var args: string[] = [];
if (useDocker) {
command = "docker";
args = [
"run",
"--rm",
"-v",
filePath + ":/data",
];
// Mount each Lua filter into the container and rewrite paths
luaFilterPaths.forEach((filterPath, i) => {
var containerPath = "/filters/filter-" + i + ".lua";
args.push("-v");
args.push(filterPath + ":" + containerPath + ":ro");
});
if (dockerOptions) {
args = args.concat(parseShellArgs(dockerOptions));
}
args.push(String(dockerImage));
args.push(fileName);
args.push("-o");
args.push(fileNameOnly + "." + format);
if (pandocOptions) {
args = args.concat(parseShellArgs(pandocOptions));
}
luaFilterPaths.forEach((_filterPath, i) => {
args.push("--lua-filter");
args.push("/filters/filter-" + i + ".lua");
});
} else {
command = String(pandocExecutablePath);
args.push(inFile);
args.push("-o");
args.push(outFile);
if (pandocOptions) {
args = args.concat(parseShellArgs(pandocOptions));
}
luaFilterPaths.forEach((filterPath) => {
args.push("--lua-filter");
args.push(filterPath);
});
}
execFile(
command,
args,
{ cwd: filePath },
function (error, stdout, stderr) {
if (stdout !== null) {
pandocOutputChannel.append(stdout.toString() + "\n");
}
if (stderr !== null) {
if (stderr !== "") {
vscode.window.showErrorMessage("stderr: " + stderr.toString());
pandocOutputChannel.append("stderr: " + stderr.toString() + "\n");
}
}
if (error !== null) {
vscode.window.showErrorMessage("exec error: " + error);
pandocOutputChannel.append("exec error: " + error + "\n");
} else {
var openViewer = vscode.workspace
.getConfiguration("pandoc")
.get("render.openViewer");
if (openViewer) {
setStatusBarText("Launching", format);
openDocument(outFile);
}
}
}
);
}