-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathrequestHandler.ts
1267 lines (1108 loc) · 33.9 KB
/
requestHandler.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
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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import {
apiVersion,
App,
CachedMetadata,
Command,
PluginManifest,
prepareSimpleSearch,
TFile,
} from "obsidian";
import periodicNotes from "obsidian-daily-notes-interface";
import { getAPI as getDataviewAPI } from "obsidian-dataview";
import forge from "node-forge";
import express from "express";
import http from "http";
import cors from "cors";
import mime from "mime-types";
import bodyParser from "body-parser";
import jsonLogic from "json-logic-js";
import responseTime from "response-time";
import queryString from "query-string";
import WildcardRegexp from "glob-to-regexp";
import path from "path";
import {
applyPatch,
ContentType,
PatchFailed,
PatchInstruction,
PatchOperation,
PatchTargetType,
} from "markdown-patch";
import {
CannedResponse,
ErrorCode,
ErrorResponseDescriptor,
FileMetadataObject,
LocalRestApiSettings,
PeriodicNoteInterface,
SearchContext,
SearchJsonResponseItem,
SearchResponseItem,
} from "./types";
import {
findHeadingBoundary,
getCertificateIsUptoStandards,
getCertificateValidityDays,
getSplicePosition,
toArrayBuffer,
} from "./utils";
import {
CERT_NAME,
ContentTypes,
ERROR_CODE_MESSAGES,
MaximumRequestSize,
} from "./constants";
import LocalRestApiPublicApi from "./api";
export default class RequestHandler {
app: App;
api: express.Express;
manifest: PluginManifest;
settings: LocalRestApiSettings;
apiExtensionRouter: express.Router;
apiExtensions: {
manifest: PluginManifest;
api: LocalRestApiPublicApi;
}[] = [];
constructor(
app: App,
manifest: PluginManifest,
settings: LocalRestApiSettings
) {
this.app = app;
this.manifest = manifest;
this.api = express();
this.settings = settings;
this.apiExtensionRouter = express.Router();
this.api.set("json spaces", 2);
jsonLogic.add_operation(
"glob",
(pattern: string | undefined, field: string | undefined) => {
if (typeof field === "string" && typeof pattern === "string") {
const glob = WildcardRegexp(pattern);
return glob.test(field);
}
return false;
}
);
jsonLogic.add_operation(
"regexp",
(pattern: string | undefined, field: string | undefined) => {
if (typeof field === "string" && typeof pattern === "string") {
const rex = new RegExp(pattern);
return rex.test(field);
}
return false;
}
);
}
registerApiExtension(manifest: PluginManifest): LocalRestApiPublicApi {
let api: LocalRestApiPublicApi | undefined = undefined;
for (const { manifest: existingManifest, api: existingApi } of this
.apiExtensions) {
if (JSON.stringify(existingManifest) === JSON.stringify(manifest)) {
api = existingApi;
break;
}
}
if (!api) {
const router = express.Router();
this.apiExtensionRouter.use(router);
api = new LocalRestApiPublicApi(router, () => {
const idx = this.apiExtensions.findIndex(
({ manifest: storedManifest }) =>
JSON.stringify(manifest) === JSON.stringify(storedManifest)
);
if (idx !== -1) {
this.apiExtensions.splice(idx, 1);
this.apiExtensionRouter.stack.splice(idx, 1);
}
});
this.apiExtensions.push({
manifest,
api,
});
}
return api;
}
requestIsAuthenticated(req: express.Request): boolean {
const authorizationHeader = req.get(
this.settings.authorizationHeaderName ?? "Authorization"
);
if (authorizationHeader === `Bearer ${this.settings.apiKey}`) {
return true;
}
return false;
}
async authenticationMiddleware(
req: express.Request,
res: express.Response,
next: express.NextFunction
): Promise<void> {
const authenticationExemptRoutes: string[] = ["/", `/${CERT_NAME}`];
if (
!authenticationExemptRoutes.includes(req.path) &&
!this.requestIsAuthenticated(req)
) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.ApiKeyAuthorizationRequired,
});
return;
}
next();
}
async getFileMetadataObject(file: TFile): Promise<FileMetadataObject> {
const cache = this.app.metadataCache.getFileCache(file);
// Gather frontmatter & strip out positioning information
const frontmatter = { ...(cache.frontmatter ?? {}) };
delete frontmatter.position; // This just adds noise
// Gather both in-line tags (hash'd) & frontmatter tags; strip
// leading '#' from them if it's there, and remove duplicates
const directTags =
(cache.tags ?? []).filter((tag) => tag).map((tag) => tag.tag) ?? [];
const frontmatterTags = Array.isArray(frontmatter.tags)
? frontmatter.tags
: [];
const filteredTags: string[] = [...frontmatterTags, ...directTags]
// Filter out falsy tags
.filter((tag) => tag)
// Strip leading hash and get tag's string representation --
// although it should always be a string, it apparently isn't always!
.map((tag) => tag.toString().replace(/^#/, ""))
// Remove duplicates
.filter((value, index, self) => self.indexOf(value) === index);
return {
tags: filteredTags,
frontmatter: frontmatter,
stat: file.stat,
path: file.path,
content: await this.app.vault.cachedRead(file),
};
}
getResponseMessage({
statusCode = 400,
message,
errorCode,
}: ErrorResponseDescriptor): string {
const errorMessages: string[] = [];
if (errorCode) {
errorMessages.push(ERROR_CODE_MESSAGES[errorCode]);
} else {
errorMessages.push(http.STATUS_CODES[statusCode]);
}
if (message) {
errorMessages.push(message);
}
return errorMessages.join("\n");
}
getStatusCode({ statusCode, errorCode }: ErrorResponseDescriptor): number {
if (statusCode) {
return statusCode;
}
return Math.floor(errorCode / 100);
}
returnCannedResponse(
res: express.Response,
{ statusCode, message, errorCode }: ErrorResponseDescriptor
): void {
const response: CannedResponse = {
message: this.getResponseMessage({ statusCode, message, errorCode }),
errorCode: errorCode ?? statusCode * 100,
};
res.status(this.getStatusCode({ statusCode, errorCode })).json(response);
}
root(req: express.Request, res: express.Response): void {
let certificate: forge.pki.Certificate | undefined;
try {
certificate = forge.pki.certificateFromPem(this.settings.crypto.cert);
} catch (e) {
// This is fine, we just won't include that in the output
}
res.status(200).json({
status: "OK",
manifest: this.manifest,
versions: {
obsidian: apiVersion,
self: this.manifest.version,
},
service: "Obsidian Local REST API",
authenticated: this.requestIsAuthenticated(req),
certificateInfo:
this.requestIsAuthenticated(req) && certificate
? {
validityDays: getCertificateValidityDays(certificate),
regenerateRecommended:
!getCertificateIsUptoStandards(certificate),
}
: undefined,
apiExtensions: this.requestIsAuthenticated(req)
? this.apiExtensions.map(({ manifest }) => manifest)
: undefined,
});
}
async _vaultGet(
path: string,
req: express.Request,
res: express.Response
): Promise<void> {
if (!path || path.endsWith("/")) {
const files = [
...new Set(
this.app.vault
.getFiles()
.map((e) => e.path)
.filter((filename) => filename.startsWith(path))
.map((filename) => {
const subPath = filename.slice(path.length);
if (subPath.indexOf("/") > -1) {
return subPath.slice(0, subPath.indexOf("/") + 1);
}
return subPath;
})
),
];
files.sort();
if (files.length === 0) {
this.returnCannedResponse(res, { statusCode: 404 });
return;
}
res.json({
files: files,
});
} else {
const exists = await this.app.vault.adapter.exists(path);
if (exists && (await this.app.vault.adapter.stat(path)).type === "file") {
const content = await this.app.vault.adapter.readBinary(path);
const mimeType = mime.lookup(path);
res.set({
"Content-Disposition": `attachment; filename="${encodeURI(
path
).replace(",", "%2C")}"`,
"Content-Type":
`${mimeType}` +
(mimeType == ContentTypes.markdown ? "; charset=utf-8" : ""),
});
if (req.headers.accept === ContentTypes.olrapiNoteJson) {
const file = this.app.vault.getAbstractFileByPath(path) as TFile;
res.setHeader("Content-Type", ContentTypes.olrapiNoteJson);
res.send(
JSON.stringify(await this.getFileMetadataObject(file), null, 2)
);
return;
}
res.send(Buffer.from(content));
} else {
this.returnCannedResponse(res, {
statusCode: 404,
});
return;
}
}
}
async vaultGet(req: express.Request, res: express.Response): Promise<void> {
const path = decodeURIComponent(
req.path.slice(req.path.indexOf("/", 1) + 1)
);
return this._vaultGet(path, req, res);
}
async _vaultPut(
filepath: string,
req: express.Request,
res: express.Response
): Promise<void> {
if (!filepath || filepath.endsWith("/")) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.RequestMethodValidOnlyForFiles,
});
return;
}
try {
await this.app.vault.createFolder(path.dirname(filepath));
} catch {
// the folder/file already exists, but we don't care
}
if (typeof req.body === "string") {
await this.app.vault.adapter.write(filepath, req.body);
} else {
await this.app.vault.adapter.writeBinary(
filepath,
toArrayBuffer(req.body)
);
}
this.returnCannedResponse(res, { statusCode: 204 });
return;
}
async vaultPut(req: express.Request, res: express.Response): Promise<void> {
const path = decodeURIComponent(
req.path.slice(req.path.indexOf("/", 1) + 1)
);
return this._vaultPut(path, req, res);
}
async _vaultPatchV2(
path: string,
req: express.Request,
res: express.Response
): Promise<void> {
const headingBoundary = req.get("Heading-Boundary") || "::";
const heading = (req.get("Heading") || "")
.split(headingBoundary)
.filter(Boolean);
const contentPosition = req.get("Content-Insertion-Position");
let insert = false;
let aboveNewLine = false;
if (contentPosition === undefined) {
insert = false;
} else if (contentPosition === "beginning") {
insert = true;
} else if (contentPosition === "end") {
insert = false;
} else {
this.returnCannedResponse(res, {
errorCode: ErrorCode.InvalidContentInsertionPositionValue,
});
return;
}
if (typeof req.body != "string") {
this.returnCannedResponse(res, {
errorCode: ErrorCode.TextContentEncodingRequired,
});
return;
}
if (typeof req.get("Content-Insertion-Ignore-Newline") == "string") {
aboveNewLine =
req.get("Content-Insertion-Ignore-Newline").toLowerCase() == "true";
}
if (!heading.length) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.MissingHeadingHeader,
});
return;
}
const file = this.app.vault.getAbstractFileByPath(path);
if (!(file instanceof TFile)) {
this.returnCannedResponse(res, {
statusCode: 404,
});
return;
}
const cache = this.app.metadataCache.getFileCache(file);
const position = findHeadingBoundary(cache, heading);
if (!position) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.InvalidHeadingHeader,
});
return;
}
const fileContents = await this.app.vault.read(file);
const fileLines = fileContents.split("\n");
const splicePosition = getSplicePosition(
fileLines,
position,
insert,
aboveNewLine
);
fileLines.splice(splicePosition, 0, req.body);
const content = fileLines.join("\n");
await this.app.vault.adapter.write(path, content);
console.warn(
`2.x PATCH implementation is deprecated and will be removed in version 4.0`
);
res
.header("Deprecation", 'true; sunset-version="4.0"')
.header(
"Link",
'<https://github.com/coddingtonbear/obsidian-local-rest-api/wiki/Changes-to-PATCH-requests-between-versions-2.0-and-3.0>; rel="alternate"'
)
.status(200)
.send(content);
}
async _vaultPatchV3(
path: string,
req: express.Request,
res: express.Response
): Promise<void> {
const operation = req.get("Operation");
const targetType = req.get("Target-Type");
const rawTarget = decodeURIComponent(req.get("Target"));
const contentType = req.get("Content-Type");
const createTargetIfMissing = req.get("Create-Target-If-Missing") == "true";
const applyIfContentPreexists =
req.get("Apply-If-Content-Preexists") == "true";
const trimTargetWhitespace = req.get("Trim-Target-Whitespace") == "true";
const targetDelimiter = req.get("Target-Delimiter") || "::";
const target =
targetType == "heading" ? rawTarget.split(targetDelimiter) : rawTarget;
const file = this.app.vault.getAbstractFileByPath(path);
if (!(file instanceof TFile)) {
this.returnCannedResponse(res, {
statusCode: 404,
});
return;
}
const fileContents = await this.app.vault.read(file);
if (!targetType) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.MissingTargetTypeHeader,
});
return;
}
if (!["heading", "block", "frontmatter"].includes(targetType)) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.InvalidTargetTypeHeader,
});
return;
}
if (!operation) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.MissingOperation,
});
return;
}
if (!["append", "prepend", "replace"].includes(operation)) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.InvalidOperation,
});
return;
}
if (!path || path.endsWith("/")) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.RequestMethodValidOnlyForFiles,
});
return;
}
const instruction: PatchInstruction = {
operation: operation as PatchOperation,
targetType: targetType as PatchTargetType,
target,
contentType: contentType as ContentType,
content: req.body,
applyIfContentPreexists,
trimTargetWhitespace,
createTargetIfMissing,
} as PatchInstruction;
try {
const patched = applyPatch(fileContents, instruction);
await this.app.vault.adapter.write(path, patched);
res.status(200).send(patched);
} catch (e) {
if (e instanceof PatchFailed) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.PatchFailed,
message: e.reason,
});
} else {
this.returnCannedResponse(res, {
statusCode: 500,
message: e.message,
});
}
}
}
async _vaultPatch(
path: string,
req: express.Request,
res: express.Response
): Promise<void> {
if (!path || path.endsWith("/")) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.RequestMethodValidOnlyForFiles,
});
return;
}
if (req.get("Heading") && !req.get("Target-Type")) {
return this._vaultPatchV2(path, req, res);
}
return this._vaultPatchV3(path, req, res);
}
async vaultPatch(req: express.Request, res: express.Response): Promise<void> {
const path = decodeURIComponent(
req.path.slice(req.path.indexOf("/", 1) + 1)
);
return this._vaultPatch(path, req, res);
}
async _vaultPost(
filepath: string,
req: express.Request,
res: express.Response
): Promise<void> {
if (!filepath || filepath.endsWith("/")) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.RequestMethodValidOnlyForFiles,
});
return;
}
if (typeof req.body != "string") {
this.returnCannedResponse(res, {
errorCode: ErrorCode.TextContentEncodingRequired,
});
return;
}
try {
await this.app.vault.createFolder(path.dirname(filepath));
} catch {
// the folder/file already exists, but we don't care
}
let fileContents = "";
const file = this.app.vault.getAbstractFileByPath(filepath);
if (file instanceof TFile) {
fileContents = await this.app.vault.read(file);
if (!fileContents.endsWith("\n")) {
fileContents += "\n";
}
}
fileContents += req.body;
await this.app.vault.adapter.write(filepath, fileContents);
this.returnCannedResponse(res, { statusCode: 204 });
return;
}
async vaultPost(req: express.Request, res: express.Response): Promise<void> {
const path = decodeURIComponent(
req.path.slice(req.path.indexOf("/", 1) + 1)
);
return this._vaultPost(path, req, res);
}
async _vaultDelete(
path: string,
req: express.Request,
res: express.Response
): Promise<void> {
if (!path || path.endsWith("/")) {
this.returnCannedResponse(res, {
errorCode: ErrorCode.RequestMethodValidOnlyForFiles,
});
return;
}
const pathExists = await this.app.vault.adapter.exists(path);
if (!pathExists) {
this.returnCannedResponse(res, { statusCode: 404 });
return;
}
await this.app.vault.adapter.remove(path);
this.returnCannedResponse(res, { statusCode: 204 });
return;
}
async vaultDelete(
req: express.Request,
res: express.Response
): Promise<void> {
const path = decodeURIComponent(
req.path.slice(req.path.indexOf("/", 1) + 1)
);
return this._vaultDelete(path, req, res);
}
getPeriodicNoteInterface(): Record<string, PeriodicNoteInterface> {
return {
daily: {
settings: periodicNotes.getDailyNoteSettings(),
loaded: periodicNotes.appHasDailyNotesPluginLoaded(),
create: periodicNotes.createDailyNote,
get: periodicNotes.getDailyNote,
getAll: periodicNotes.getAllDailyNotes,
},
weekly: {
settings: periodicNotes.getWeeklyNoteSettings(),
loaded: periodicNotes.appHasWeeklyNotesPluginLoaded(),
create: periodicNotes.createWeeklyNote,
get: periodicNotes.getWeeklyNote,
getAll: periodicNotes.getAllWeeklyNotes,
},
monthly: {
settings: periodicNotes.getMonthlyNoteSettings(),
loaded: periodicNotes.appHasMonthlyNotesPluginLoaded(),
create: periodicNotes.createMonthlyNote,
get: periodicNotes.getMonthlyNote,
getAll: periodicNotes.getAllMonthlyNotes,
},
quarterly: {
settings: periodicNotes.getQuarterlyNoteSettings(),
loaded: periodicNotes.appHasQuarterlyNotesPluginLoaded(),
create: periodicNotes.createQuarterlyNote,
get: periodicNotes.getQuarterlyNote,
getAll: periodicNotes.getAllQuarterlyNotes,
},
yearly: {
settings: periodicNotes.getYearlyNoteSettings(),
loaded: periodicNotes.appHasYearlyNotesPluginLoaded(),
create: periodicNotes.createYearlyNote,
get: periodicNotes.getYearlyNote,
getAll: periodicNotes.getAllYearlyNotes,
},
};
}
periodicGetInterface(
period: string
): [PeriodicNoteInterface | null, ErrorCode | null] {
const periodic = this.getPeriodicNoteInterface();
if (!periodic[period]) {
return [null, ErrorCode.PeriodDoesNotExist];
}
if (!periodic[period].loaded) {
return [null, ErrorCode.PeriodIsNotEnabled];
}
return [periodic[period], null];
}
periodicGetNote(
periodName: string,
timestamp: number
): [TFile | null, ErrorCode | null] {
const [period, err] = this.periodicGetInterface(periodName);
if (err) {
return [null, err];
}
const now = (window as any).moment(timestamp);
const all = period.getAll();
const file = period.get(now, all);
if (!file) {
return [null, ErrorCode.PeriodicNoteDoesNotExist];
}
return [file, null];
}
async periodicGetOrCreateNote(
periodName: string,
timestamp: number
): Promise<[TFile | null, ErrorCode | null]> {
const [gottenFile, err] = this.periodicGetNote(periodName, timestamp);
let file = gottenFile;
if (err === ErrorCode.PeriodicNoteDoesNotExist) {
const [period] = this.periodicGetInterface(periodName);
const now = (window as any).moment(Date.now());
file = await period.create(now);
const metadataCachePromise = new Promise<CachedMetadata>((resolve) => {
let cache: CachedMetadata = null;
const interval: ReturnType<typeof setInterval> = setInterval(() => {
cache = this.app.metadataCache.getFileCache(file);
if (cache) {
clearInterval(interval);
resolve(cache);
}
}, 100);
});
await metadataCachePromise;
} else if (err) {
return [null, err];
}
return [file, null];
}
redirectToVaultPath(
file: TFile,
req: express.Request,
res: express.Response,
handler: (path: string, req: express.Request, res: express.Response) => void
): void {
const path = file.path;
res.set("Content-Location", encodeURI(path));
return handler(path, req, res);
}
getPeriodicDateFromParams(params: any): number {
const { year, month, day } = params;
if (year && month && day) {
const date = new Date(year, month - 1, day);
return date.getTime();
}
return Date.now();
}
async periodicGet(
req: express.Request,
res: express.Response
): Promise<void> {
const date = this.getPeriodicDateFromParams(req.params);
const [file, err] = this.periodicGetNote(req.params.period, date);
if (err) {
this.returnCannedResponse(res, { errorCode: err });
return;
}
return this.redirectToVaultPath(file, req, res, this._vaultGet.bind(this));
}
async periodicPut(
req: express.Request,
res: express.Response
): Promise<void> {
const date = this.getPeriodicDateFromParams(req.params);
const [file, err] = await this.periodicGetOrCreateNote(
req.params.period,
date
);
if (err) {
this.returnCannedResponse(res, { errorCode: err });
return;
}
return this.redirectToVaultPath(file, req, res, this._vaultPut.bind(this));
}
async periodicPost(
req: express.Request,
res: express.Response
): Promise<void> {
const date = this.getPeriodicDateFromParams(req.params);
const [file, err] = await this.periodicGetOrCreateNote(
req.params.period,
date
);
if (err) {
this.returnCannedResponse(res, { errorCode: err });
return;
}
return this.redirectToVaultPath(file, req, res, this._vaultPost.bind(this));
}
async periodicPatch(
req: express.Request,
res: express.Response
): Promise<void> {
const date = this.getPeriodicDateFromParams(req.params);
const [file, err] = await this.periodicGetOrCreateNote(
req.params.period,
date
);
if (err) {
this.returnCannedResponse(res, { errorCode: err });
return;
}
return this.redirectToVaultPath(
file,
req,
res,
this._vaultPatch.bind(this)
);
}
async periodicDelete(
req: express.Request,
res: express.Response
): Promise<void> {
const date = this.getPeriodicDateFromParams(req.params);
const [file, err] = this.periodicGetNote(req.params.period, date);
if (err) {
this.returnCannedResponse(res, { errorCode: err });
return;
}
return this.redirectToVaultPath(
file,
req,
res,
this._vaultDelete.bind(this)
);
}
async activeFileGet(
req: express.Request,
res: express.Response
): Promise<void> {
const file = this.app.workspace.getActiveFile();
return this.redirectToVaultPath(file, req, res, this._vaultGet.bind(this));
}
async activeFilePut(
req: express.Request,
res: express.Response
): Promise<void> {
const file = this.app.workspace.getActiveFile();
return this.redirectToVaultPath(file, req, res, this._vaultPut.bind(this));
}
async activeFilePost(
req: express.Request,
res: express.Response
): Promise<void> {
const file = this.app.workspace.getActiveFile();
return this.redirectToVaultPath(file, req, res, this._vaultPost.bind(this));
}
async activeFilePatch(
req: express.Request,
res: express.Response
): Promise<void> {
const file = this.app.workspace.getActiveFile();
return this.redirectToVaultPath(
file,
req,
res,
this._vaultPatch.bind(this)
);
}
async activeFileDelete(
req: express.Request,
res: express.Response
): Promise<void> {
const file = this.app.workspace.getActiveFile();
return this.redirectToVaultPath(
file,
req,
res,
this._vaultDelete.bind(this)
);
}
async commandGet(req: express.Request, res: express.Response): Promise<void> {
const commands: Command[] = [];
for (const commandName in this.app.commands.commands) {
commands.push({
id: commandName,
name: this.app.commands.commands[commandName].name,
});
}
const commandResponse = {
commands: commands,
};
res.json(commandResponse);
}
async commandPost(
req: express.Request,
res: express.Response
): Promise<void> {
const cmd = this.app.commands.commands[req.params.commandId];
if (!cmd) {
this.returnCannedResponse(res, { statusCode: 404 });
return;
}
try {
this.app.commands.executeCommandById(req.params.commandId);
} catch (e) {
this.returnCannedResponse(res, { statusCode: 500, message: e.message });
return;
}
this.returnCannedResponse(res, { statusCode: 204 });
return;
}
async searchSimplePost(
req: express.Request,
res: express.Response
): Promise<void> {
const results: SearchResponseItem[] = [];
const query: string = req.query.query as string;
const contextLength: number =
parseInt(req.query.contextLength as string, 10) ?? 100;
const search = prepareSimpleSearch(query);
for (const file of this.app.vault.getMarkdownFiles()) {
const cachedContents = await this.app.vault.cachedRead(file);
const result = search(cachedContents);
if (result) {
const contextMatches: SearchContext[] = [];
for (const match of result.matches) {
contextMatches.push({
match: {
start: match[0],
end: match[1],