-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathsnippetParser.ts
194 lines (163 loc) · 4.55 KB
/
snippetParser.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
import { existsSync, readdirSync, readFileSync } from "fs";
import { join } from "path";
import { RawSnippetType, SnippetType } from "../src/types";
import { isCorrectType } from "../src/utils/objectUtils";
import { raise } from "../src/utils/raise";
import { reverseSlugify, slugify } from "../src/utils/slugify";
interface ParseLanguageResponse {
name: string;
icon: string;
categories: {
name: string;
snippets: SnippetType[];
}[];
subLanguages: ParseLanguageResponse[];
}
interface ParseCategoryResponse {
name: string;
snippets: SnippetType[];
}
const propertyRegex = /^\s+([a-zA-Z]+):\s*(.+)/;
const headerEndCodeStartRegex = /^\s*---\s*```.*\r?\n/;
const codeRegex = /^(.+)```/s;
let errored: boolean = false;
function parseSnippet(
path: string,
name: string,
text: string
): SnippetType | null {
let cursor: number = 0;
const fromCursor = () => text.substring(cursor);
if (!fromCursor().trim().startsWith("---")) {
return raise("Missing header start delimiter '---'", path);
}
cursor += 3;
const properties = {};
let match: string[] | null;
while ((match = propertyRegex.exec(fromCursor())) !== null) {
cursor += match[0].length;
properties[match[1].toLowerCase()] = match[2];
}
if (
!isCorrectType<RawSnippetType>(properties, [
"title",
"description",
"author",
"tags",
])
) {
return raise("Invalid properties", path);
}
if (slugify(properties.title) !== name) {
return raise(
`slugifyed 'title' property doesn't match snippet file name`,
path
);
}
match = headerEndCodeStartRegex.exec(fromCursor());
if (match === null) {
return raise("Missing header end '---' or code start '```'", path);
}
cursor += match[0].length;
const extension = match[0].replace(/[\r\n`-]/g, "");
match = codeRegex.exec(fromCursor());
if (match === null) {
return raise("Missing code block end '```'", path);
}
const code: string = match[1];
return {
title: properties.title,
description: properties.description,
author: properties.author,
tags: properties.tags
.split(",")
.map((tag) => tag.trim())
.filter((tag) => tag),
contributors: (properties.contributors ?? "")
.split(",")
.map((contributor) => contributor.trim())
.filter((contributor) => contributor),
code: code.replace(/\r\n/g, "\n"),
extension,
};
}
function parseCategory(path: string, name: string): ParseCategoryResponse {
const snippets: SnippetType[] = [];
for (const snippet of readdirSync(path)) {
const snippetPath = join(path, snippet);
const snippetContent = readFileSync(snippetPath).toString();
const snippetFileName = snippet.slice(0, -3);
const snippetData = parseSnippet(
snippetPath,
snippetFileName,
snippetContent
);
if (!snippetData) {
errored = true;
continue;
}
snippets.push(snippetData);
}
return {
name: reverseSlugify(name),
snippets,
};
}
function parseLanguage(
path: string,
name: string,
subLanguageOf: string | null = null
): ParseLanguageResponse | null {
const iconPath = join(path, "icon.svg");
if (!existsSync(iconPath)) {
return raise(
`icon for '${subLanguageOf ? `${subLanguageOf}/` : ""}${name}' is missing`
);
}
const subLanguages: ParseLanguageResponse[] = [];
const categories: ParseCategoryResponse[] = [];
for (const category of readdirSync(path)) {
if (category === "icon.svg") continue;
const categoryPath = join(path, category);
if (category.startsWith("[") && category.endsWith("]")) {
if (subLanguageOf !== null) {
return raise("Cannot have more than two level of language nesting");
}
const parsedLanguage = parseLanguage(
categoryPath,
category.slice(1, -1),
name
);
if (!parsedLanguage) {
errored = true;
continue;
}
subLanguages.push(parsedLanguage);
} else {
categories.push(parseCategory(categoryPath, category));
}
}
return {
name: reverseSlugify(name),
icon: iconPath,
categories,
subLanguages,
};
}
export function parseAllSnippets() {
const snippetPath = "snippets/";
const languages: ParseLanguageResponse[] = [];
for (const language of readdirSync(snippetPath)) {
const languagePath = join(snippetPath, language);
const parsedLanguage = parseLanguage(languagePath, language);
if (!parsedLanguage) {
errored = true;
continue;
}
languages.push(parsedLanguage);
}
return {
errored,
languages,
};
}