-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathconstants.ts
59 lines (52 loc) · 2.78 KB
/
constants.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
import { ErrorCode, LocalRestApiSettings } from "./types";
export const CERT_NAME = "obsidian-local-rest-api.crt";
export const DEFAULT_SETTINGS: LocalRestApiSettings = {
port: 27124,
insecurePort: 27123,
enableInsecureServer: false,
};
export const ERROR_CODE_MESSAGES: Record<ErrorCode, string> = {
[ErrorCode.ApiKeyAuthorizationRequired]:
"Authorization required. Find your API Key in the 'Local REST API' section of your Obsidian settings.",
[ErrorCode.ContentTypeSpecificationRequired]:
"Content-Type header required; this API accepts data in multiple content-types and you must indicate the content-type of your request body via the Content-Type header.",
[ErrorCode.InvalidContentInsertionPositionValue]:
"Invalid 'Content-Insertion-Position' header value.",
[ErrorCode.InvalidContentForContentType]:
"Your request body could not be processed as the content-type specified in your Content-Type header.",
[ErrorCode.InvalidHeadingHeader]:
"No heading in specified file could be found matching the heading specified in 'Heading' header.",
[ErrorCode.MissingHeadingHeader]:
"'Heading' header is required for identifying where to insert content.",
[ErrorCode.PeriodDoesNotExist]: "Specified period does not exist.",
[ErrorCode.PeriodIsNotEnabled]: "Specified period is not enabled.",
[ErrorCode.PeriodicNoteDoesNotExist]:
"Periodic note does not exist for the specified period.",
[ErrorCode.RequestMethodValidOnlyForFiles]:
"Request method is valid only for file paths, not directories.",
[ErrorCode.TextContentEncodingRequired]:
"Incoming content must be text data and have an appropriate text/* Content-type header set (e.g. text/markdown).",
[ErrorCode.InvalidFilterQuery]:
"The query you provided could not be processed.",
[ErrorCode.MissingTargetTypeHeader]: "No 'Target-Type' header was provided.",
[ErrorCode.InvalidTargetTypeHeader]:
"The 'Target-Type' header you provided was invalid.",
[ErrorCode.MissingTargetHeader]: "No 'Target' header was provided.",
[ErrorCode.MissingOperation]: "No 'Operation' header was provided.",
[ErrorCode.InvalidOperation]:
"The 'Operation' header you provided was invalid.",
[ErrorCode.PatchFailed]:
"The patch you provided could not be applied to the target content.",
};
export enum ContentTypes {
json = "application/json",
markdown = "text/markdown",
olrapiNoteJson = "application/vnd.olrapi.note+json",
jsonLogic = "application/vnd.olrapi.jsonlogic+json",
dataviewDql = "application/vnd.olrapi.dataview.dql+txt",
}
export const DefaultBearerTokenHeaderName = "Authorization";
export const DefaultBindingHost = "127.0.0.1";
export const LicenseUrl =
"https://raw.githubusercontent.com/coddingtonbear/obsidian-local-rest-api/main/LICENSE";
export const MaximumRequestSize = "1024mb";