-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapidoc.js
45 lines (42 loc) · 1.78 KB
/
apidoc.js
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
const got = require('got');
// as this is a dev dependency, we can ignore restricted modules
// eslint-disable-next-line no-restricted-modules
const stream = require('stream');
const {promisify} = require('util');
const fs = require('fs');
const path = require('path');
const pipeline = promisify(stream.pipeline);
// tiny spider
async function crawl(root, page, visited) {
const {body, url} = await got(page);
const ref = /(href|src)="[^"]+"/g;
const basename = (x => x.substr(0, x.length - 1))(path.basename(url + '#'));
const index = path.resolve('.lint', 'doc', path.relative(root, path.dirname(url + '#')), basename || 'index.html');
fs.mkdirSync(path.dirname(index), {recursive: true});
fs.writeFileSync(index, body);
for (const href of body.match(ref)) {
const rel = href.split('"')[1];
try {
// eslint-disable-next-line no-new
new URL(rel);
continue; // skip absolute URLs
} catch {
const resource = new URL(rel, url);
if (!visited.includes(resource.href)) {
const filename = path.resolve('.lint', 'doc' + resource.pathname);
fs.mkdirSync(path.dirname(filename), {recursive: true});
let type;
await pipeline(got.stream(resource).on('response', response => {
type = response.headers['content-type'];
}), fs.createWriteStream(filename));
visited.push(resource.href);
if (type.startsWith('text/html')) await crawl(root, resource, visited);
}
}
}
}
module.exports = async function apidoc(serviceBus) {
await serviceBus.publicApi.ready();
const root = serviceBus.publicApi.info().uri;
await crawl(root, new URL('aa/api', root).href, []);
};