-
Notifications
You must be signed in to change notification settings - Fork 0
/
check-docs-links.js
118 lines (96 loc) · 3.42 KB
/
check-docs-links.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
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
const fs = require('fs').promises;
const path = require('path');
const glob = require('glob');
let chalk;
// For the times when we know that we shouldn't resolve something
// e.g., the `/prompt` page is a relative link, but is not in the docs
const knownBrokenLinks = [
{ from: '/docs/concepts/prompt-engineering.mdx', to: '/prompt' },
];
const hrefLinkRegex = /href="(.*?)"/g;
const markdownLinkRegex = /\[.*?\]\((.*?)\)/g;
const verbose = process.argv.includes('--verbose');
const hasExtension = link => path.extname(link);
const isExternalLink = link => link.startsWith('http') || link.startsWith('//');
const isKnownBrokenLink = (from, to) => {
return knownBrokenLinks.some(skip => skip.from === from && skip.to === to);
};
const resolveLink = ({ docsRoot, file, link }) => {
let resolvedLink = link;
// For absolute paths, prepend the documentation root path
// For relative paths, resolve the path from the current file
if (resolvedLink.startsWith('/')) {
resolvedLink = path.join(docsRoot, resolvedLink);
} else if (resolvedLink.startsWith('./')) {
resolvedLink = path.resolve(path.dirname(file), resolvedLink);
}
// If the resolvedLink has an anchor, only use the root
if (resolvedLink.includes('#')) {
const [linkPath, _anchor] = resolvedLink.split('#');
resolvedLink = linkPath;
}
// Add markdown extension
resolvedLink += '.mdx';
return resolvedLink;
};
const shouldSkip = (from, to) => {
return isKnownBrokenLink(from, to) || isExternalLink(to) || hasExtension(to);
};
async function checkMarkdownLinks(baseDir) {
const files = glob.sync(`${baseDir}/**/*.mdx`);
let errorCount = 0;
chalk = (await import('chalk')).default;
for (const file of files) {
const content = await fs.readFile(file, 'utf8');
const relativeFilePath = `/${path.relative(baseDir, file)}`;
const links = [];
let match;
// Gather all Markdown links
while ((match = markdownLinkRegex.exec(content)) !== null) {
links.push(match[1]); // Capture the link
}
// Gather all HTML href links
while ((match = hrefLinkRegex.exec(content)) !== null) {
links.push(match[1]); // Capture the href value
}
// Iterate over the combined list of links
for (const link of links) {
if (shouldSkip(relativeFilePath, link)) {
verbose && console.log(chalk.grey(`· ${relativeFilePath} -> ${link}`));
continue;
}
const resolvedLink = resolveLink({ docsRoot, file, link });
const relativeLinkPath = `/${path.relative(baseDir, resolvedLink)}`;
try {
await fs.access(resolvedLink);
verbose &&
console.log(
chalk.green(
`✓ ${relativeFilePath} -> ${link} (${relativeLinkPath})`,
),
);
} catch (error) {
errorCount += 1;
console.error(
chalk.red(`✖ ${relativeFilePath} -> ${link} (${relativeLinkPath})`),
);
}
}
}
// After all links have been checked
if (errorCount > 0) {
console.error(
chalk.red(
`\n✖ ${errorCount} broken link(s) detected. Exiting with error.\n`,
),
);
process.exit(1); // Exit with a non-zero exit code to indicate error
} else {
console.log(
chalk.green('\n✓ No broken links found. Exiting successfully.\n'),
);
process.exit(0); // Exit with zero to indicate success
}
}
const docsRoot = path.resolve(__dirname, './docs/pages');
checkMarkdownLinks(docsRoot);