forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
precompile.js
executable file
·79 lines (71 loc) · 3.19 KB
/
precompile.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
import assert from 'assert'
import fs from 'fs/promises'
import path from 'path'
import { isPromise } from 'util/types'
import { fileURLToPath } from 'url'
import readJsonFile from '../read-json-file.js'
import { latest } from '../../lib/enterprise-server-releases.js'
import getExceptionRedirects from './exception-redirects.js'
import { languageKeys } from '../languages.js'
function diskMemoize(filePath, asyncFn, maxAgeSeconds = 60 * 60) {
// The logging that the disk memoizer does is pretty useful to humans,
// but it's only really useful when you're running `npm run dev` or
// something.
const log = (...args) => {
if (process.env.NODE_ENV === 'development') console.log(...args)
}
return async (...args) => {
try {
const stats = await fs.stat(filePath)
const ageSeconds = (new Date().getTime() - stats.mtime.getTime()) / 1000
if (ageSeconds < maxAgeSeconds) {
const value = JSON.parse(await fs.readFile(filePath, 'utf-8'))
log(`Redirects disk-cache HIT on ${filePath}`)
return value
}
log(`Redirects disk-cache ${filePath} too old`)
} catch (err) {
if (err.code !== 'ENOENT') throw err
}
log(`Redirects disk-cache MISS on ${filePath}`)
const promise = asyncFn(...args)
assert(isPromise(promise), "memoized function didn't return a promise")
return promise.then(async (value) => {
await fs.writeFile(filePath, JSON.stringify(value), 'utf-8')
return value
})
}
}
const __dirname = path.dirname(fileURLToPath(import.meta.url))
const DISK_CACHE_FILEPATH = path.join(__dirname, `.redirects-cache_${languageKeys.join('_')}.json`)
// This function runs at server warmup and precompiles possible redirect routes.
// It outputs them in key-value pairs within a neat Javascript object: { oldPath: newPath }
const precompileRedirects = diskMemoize(DISK_CACHE_FILEPATH, async (pageList) => {
const allRedirects = readJsonFile('./lib/redirects/static/developer.json')
// Replace hardcoded 'latest' with real value in the redirected path
Object.entries(allRedirects).forEach(([oldPath, newPath]) => {
allRedirects[oldPath] = newPath.replace(
'enterprise-server@latest',
`enterprise-server@${latest}`
)
})
// Exception redirects are those that are essentially unicorn one-offs.
// For example, we have redirects for documents that used to be on
// `free-pro-team@latest` but have now been moved to
// `enterprise-cloud@latest`. The advantage of the exception redirects
// file is that it's encoded in plain text so it's possible to write
// comments and it's also possible to write 1 destination URL once
// for each N redirect origins
const exceptions = getExceptionRedirects()
Object.entries(exceptions).forEach(([fromURL, toURL]) => {
allRedirects[fromURL] = `/en${toURL}`
for (const languageCode of languageKeys) {
allRedirects[`/${languageCode}${fromURL}`] = `/${languageCode}${toURL}`
}
})
// CURRENT PAGES PERMALINKS AND FRONTMATTER
// create backwards-compatible old paths for page permalinks and frontmatter redirects
pageList.forEach((page) => Object.assign(allRedirects, page.buildRedirects()))
return allRedirects
})
export default precompileRedirects