-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcommon.js
More file actions
executable file
·130 lines (107 loc) · 2.9 KB
/
common.js
File metadata and controls
executable file
·130 lines (107 loc) · 2.9 KB
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
'use strict'
const path = require('path')
const semver = require('semver')
const ltsNames = {
4: 'argon',
6: 'boron',
8: 'carbon',
10: 'dubnium',
12: 'erbium',
14: 'fermium',
16: 'gallium',
18: 'hydrogen',
20: 'iron',
22: 'jod',
24: 'krypton'
}
class Linker {
#links = new Map()
#dirs = []
#baseDir
#docsDir
#validateDocsLink
constructor ({ baseDir, docsDir, validateDocsLink }) {
this.#baseDir = baseDir
this.#docsDir = docsDir
this.#validateDocsLink = validateDocsLink ?? (() => true)
}
async getLinks (allDirectories, readDir) {
const allDirs = allDirectories
.map((d) => path.basename(d))
.map((d) => {
try {
return semver.parse(d)
/* c8 ignore next 3 */
} catch (e) {
return null
}
})
.filter(Boolean)
await this.#makeDocsLinks(allDirs.map((d) => d.raw))
this.#dirs = allDirs.filter((d) => semver.satisfies(d, '~0.10 || ~0.12 || >= 1.0')).map((d) => d.raw)
this.#dirs.sort((d1, d2) => semver.compare(d1, d2))
this.#link('0.10')
this.#link(0.12)
for (let i = 1; ; i++) {
if (!this.#link(i) && i >= 4) {
break
}
}
const max = this.#link(null)
const tbreg = new RegExp(`(\\w+)-${max}.tar.gz`)
const latestDir = path.join(this.#baseDir, 'latest')
let tarball = (await readDir(this.#links.get(latestDir) || latestDir)).filter((f) => tbreg.test(f))
/* c8 ignore next 3 */
if (tarball.length !== 1) {
throw new Error('Could not find latest.tar.gz')
}
tarball = tarball[0]
const name = tarball.match(tbreg)[1]
const dst = path.join(this.#baseDir, `${name}-latest.tar.gz`)
this.#links.set(dst, path.join(this.#baseDir, 'latest', tarball))
return this.#links
}
async #makeDocsLinks (versions) {
if (!this.#docsDir) {
return
}
for (const version of versions) {
const src = path.join(this.#baseDir, version, 'docs')
const dst = path.join(this.#docsDir, version)
if (await this.#validateDocsLink(src)) {
this.#links.set(dst, src)
}
}
}
#link (version) {
const line = version && `${version}.x`
const range = version ? `${Number(version) < 1 ? '~' : '^'}${line}` : '*'
const max = semver.maxSatisfying(this.#dirs, range)
if (!max) {
return false
}
const symlink = (name) => {
const dst = path.join(this.#baseDir, name)
const src = path.join(this.#baseDir, max)
this.#links.set(dst, src)
if (!this.#docsDir) {
return
}
const dsrc = path.join(this.#baseDir, max, 'docs')
const ddst = path.join(this.#docsDir, name)
this.#links.set(ddst, dsrc)
}
if (line) {
symlink(`latest-v${line}`)
if (ltsNames[version]) {
symlink(`latest-${ltsNames[version]}`)
}
} else {
symlink('latest')
}
return max
}
}
module.exports = {
Linker
}