-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfetchDocs.mjs
executable file
·403 lines (334 loc) · 10.8 KB
/
fetchDocs.mjs
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
#!/bin/node
/**
* @file gets documentation from https://processing.org/reference and dumps it into
* `src/documentation-data.json` with some bootleg webscraping
*/
import {JSDOM} from "jsdom"
import fetch from "node-fetch"
import {promises as fs} from "fs"
const docsUrl = "https://processing.org/reference"
// Processing global variables
const variables = [
"focused",
"frameCount",
"height",
"width",
"pixelHeight",
"pixelWidth",
"mouseButton",
"mouseX",
"mouseY",
"pmouseX",
"pmouseY",
"key",
"keyCode",
"keyPressed",
"HALF_PI",
"PI",
"QUARTER_PI",
"TAU",
"TWO_PI",
]
const constants = ["HALF_PI.html", "PI.html", "QUARTER_PI.html", "TAU.html", "TWO_PI.html"]
// Processing classes
const classes = [
"Array",
"ArrayList",
"FloatDict",
"FloatList",
"HashMap",
"IntDict",
"IntList",
"JSONArray",
"JSONObject",
"Object",
"String",
"StringDict",
"StringList",
"Table",
"TableRow",
"XML",
"PShape",
"PImage",
"PGraphics",
"PShader",
"PFont",
"PVector",
]
/**
* Gets all the links to Processing builtins
*/
const getDocLinks = async () => {
const response = await fetch(docsUrl)
if (response.status !== 200) {
console.log(`Response for all links returned status ${response.status}.`)
console.log(response)
return
}
const {window} = new JSDOM(await response.text()) // Fetch docs and parse as document
const {document} = window
const references = Array.from(document.querySelectorAll("div.category a")) // All reference items
return {
functionLinks: references // Function doc links
.filter(({innerHTML}) => /[A-z]\(\)/u.test(innerHTML))
.map((item) => item.getAttribute("href")),
variableLinks: references // Variable doc links
.filter(({innerHTML}) => variables.includes(innerHTML))
.map((item) => item.getAttribute("href")),
classLinks: references // Class doc links
.filter(({innerHTML}) => classes.includes(innerHTML))
.map((item) => item.getAttribute("href")),
}
}
const escapeHTML = (html) =>
html
.replace(/<(\/)?(b|pre)>/gu, "`")
.replace(/<br(\/)?>/gu, "")
.replace(/<[^>]*>/gu, "")
.replace(/</gu, "<")
.replace(/>/gu, ">")
/**
* Gets the documentation for a single link
* @param {string} link - link to get doc from
* @returns {Promise<import("./src/documentation").DocumentationVariable>}
*/
const documentVariable = async (link) => {
const documentation = {
docUrl: `${docsUrl}/${link}`,
type: constants.includes(link) ? "const" : "var",
}
const response = await fetch(`${docsUrl}/${link}`)
if (!response.ok) {
console.log(`Response for ${link} returned status ${response.status}.`)
console.log(response)
return
}
const {window} = new JSDOM(await response.text()) // Parse webpage
const {document} = window
for (const item of Array.from(document.querySelectorAll(".content table tr"))) {
const header = item.querySelector("th")
if (!header) {
continue
}
const {innerHTML} = header // Get the header for each table item
const property = (() => {
if (["Description", "Examples", "Name"].includes(innerHTML)) {
return innerHTML.toLowerCase()
}
})()
if (property) {
if (property === "description") {
const description = escapeHTML(item.querySelector("td").innerHTML).replace(
/\\n/gu,
"\n\n",
)
documentation.description =
description.length > 1000 ? description.slice(0, 1000) + ". . ." : description
} else if (property === "examples") {
documentation[property] = escapeHTML(item.querySelector("td").innerHTML).replace(
/`/giu,
"",
)
} else {
documentation[property] = escapeHTML(item.querySelector("td").innerHTML)
}
}
}
return documentation
}
/**
* Gets the documentation for a single link
* @param {string} link - link to get doc from
* @returns {Promise<import("./src/documentation").DocumentationFunction>}
*/
const documentFunction = async (link) => {
const documentation = {
docUrl: `${docsUrl}/${link}`,
parameters: {},
type: "function",
}
const response = await fetch(`${docsUrl}/${link}`)
if (!response.ok) {
console.log(`Response for ${link} returned status ${response.status}.`)
console.log(response)
return
}
const {window} = new JSDOM(await response.text())
const {document} = window
for (const item of Array.from(document.querySelectorAll(".content table tr"))) {
const header = item.querySelector("th")
if (!header) {
continue
}
const {innerHTML} = header
const property = (() => {
if (["Description", "Syntax", "Returns", "Parameters", "Name"].includes(innerHTML)) {
return innerHTML.toLowerCase()
}
})()
if (property) {
if (property === "parameters") {
Array.from(item.querySelectorAll("td table tr")).forEach((item) => {
documentation.parameters[item.querySelector("th").innerHTML] = escapeHTML(
item.querySelector("td").innerHTML,
)
})
} else if (property === "syntax") {
documentation.syntax = escapeHTML(item.querySelector("td").innerHTML).replace(
/`/gu,
"",
)
} else if (property === "description") {
const description = escapeHTML(item.querySelector("td").innerHTML).replace(
/\\n/gu,
"\n\n",
)
documentation.description =
description.length > 1000 ? description.slice(0, 1000) + ". . ." : description
} else {
documentation[property] = escapeHTML(item.querySelector("td").innerHTML)
}
}
}
return documentation
}
/**
* Gets the documentation for a single link
* @param {string} link - link to get doc from
* @returns {Promise<import("./src/documentation").DocumentationClass>}
*/
const documentClass = async (link) => {
const documentation = {
docUrl: `${docsUrl}/${link}`,
parameters: {},
methods: {},
fields: {},
type: "class",
}
const response = await fetch(`${docsUrl}/${link}`)
if (!response.ok) {
// If response wasn't ok, return
console.log(`Response for ${link} returned status ${response.status}.`)
console.log(response)
return
}
const {window} = new JSDOM(await response.text()) // Parse the page
const {document} = window
for (const item of Array.from(document.querySelectorAll(".content table tr"))) {
const header = item.querySelector("th")
if (!header) {
continue
}
const {innerHTML} = header
const property = (() => {
if (["Description", "Constructor", "Parameters", "Name"].includes(innerHTML)) {
return innerHTML.toLowerCase()
}
})()
if (property) {
if (property === "parameters") {
Array.from(item.querySelectorAll("td table tr")).forEach((item) => {
documentation.parameters[item.querySelector("th").innerHTML] = escapeHTML(
item.querySelector("td").innerHTML,
)
})
} else if (property === "constructor") {
documentation.syntax = escapeHTML(item.querySelector("td").innerHTML).replace(
/`/gu,
"",
)
} else if (property === "description") {
const description = escapeHTML(item.querySelector("td").innerHTML).replace(
/\\n/gu,
"\n\n",
)
documentation.description =
description.length > 1000 ? description.slice(0, 1000) + ". . ." : description
} else {
documentation[property] = escapeHTML(item.querySelector("td").innerHTML)
}
}
}
return documentation
}
/**
* Gets the documentation for the links in `links`
* @param {{
* functionLinks: string[]
* variableLinks: string[]
* classLinks: string[]
* }} links - links go get documenttion from
*/
const documentLinks = async ({classLinks, functionLinks, variableLinks}) => {
/**
* All documentation (final object dumped to JSON)
* @type {import("./src/documentation").Documentation}
*/
const documentation = {}
const fetchPromises = [] // Get documentation asynchronously
for (const link of functionLinks) {
// Document functions
const job = (async () => {
const doc = await documentFunction(link)
if (doc) {
documentation[doc.name.replace(/\(\)/gu, "")] = {
...doc,
name: undefined,
}
}
})()
fetchPromises.push(job)
}
for (const link of classLinks) {
// Document classes
const job = (async () => {
const doc = await documentClass(link)
if (doc) {
documentation[doc.name.replace(/\(\)/gu, "")] = {
...doc,
name: undefined,
}
}
})()
fetchPromises.push(job)
}
for (const link of variableLinks) {
// Document variables
const job = (async () => {
const doc = await documentVariable(link)
if (doc) {
documentation[doc.name.replace(/\(\)/gu, "")] = {
...doc,
name: undefined,
}
}
})()
fetchPromises.push(job)
}
await Promise.all(fetchPromises)
return documentation
}
const sortJsonObject = (obj) => {
const sortedObj = {}
for (const key of Object.keys(obj).sort()) {
sortedObj[key] = obj[key]
}
return sortedObj
}
;(async () => {
const links = await getDocLinks()
if (!links) {
return
}
console.log(
`Got doc links for ${
links.functionLinks.length + links.classLinks.length + links.variableLinks.length
} items`,
)
const docs = await documentLinks(links)
await fs.writeFile(
"./src/documentation-data.json",
JSON.stringify(sortJsonObject(docs), null, 2),
"utf8",
)
})()