-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.js
More file actions
145 lines (131 loc) · 3.58 KB
/
Copy pathutils.js
File metadata and controls
145 lines (131 loc) · 3.58 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
const fs = require('fs')
const YAML = require('yaml')
// Def custom tags
const env = {
tag: '!env',
resolve: str => str
}
const include = {
tag: '!include',
resolve: str => ''
}
const path = {
tag: '!path',
resolve: str => str
}
const from = {
tag: '!from',
resolve: str => ''
}
const slug = {
tag: '!slug',
resolve: str => ''
}
const date = {
tag: '!date',
resolve: str => ''
}
// Exported functions
const parseChapters = (foliantConfig, sourceDir, listOfFiles) => {
// Get foliant config
const config = getFoliantConfig(foliantConfig)
eachRecursive(config.chapters, listOfFiles, sourceDir)
return listOfFiles
}
const existIncludes = (foliantConfig) => {
// Exist includes in list of preprocessors
const config = getFoliantConfig(foliantConfig)
let exist = false
config.preprocessors.forEach(function (item) {
if (item.constructor === String) {
if (item === 'includes') {
exist = true
}
} else if (item.constructor === Object) {
Object.keys(item).forEach(function (key) {
if (key === 'includes') {
exist = true
}
})
}
})
return exist
}
const getFoliantConfig = (foliantConfig) => {
// Get foliant config
const configContent = fs.readFileSync(foliantConfig, 'utf8')
return YAML.parse(configContent, { customTags: [env, include, path, from, slug, date] })
}
const updateListOfFiles = (sourceDir, IncludesMapPath, listOfFiles) => {
// Get files from includes map
try {
const includesMapContent = JSON.parse(fs.readFileSync(IncludesMapPath, 'utf8'))
eachRecursive(includesMapContent, listOfFiles, sourceDir)
// Remove duplicates
listOfFiles = [...new Set(listOfFiles)]
return listOfFiles
} catch (error) {
console.error(error)
process.exit(1)
}
}
function eachRecursive (obj, list, sourceDir) {
for (const k in obj) {
if (typeof obj[k] === 'string') {
const s = obj[k]
if (s.endsWith('.md')) {
if (s.startsWith(sourceDir)) {
if (fs.existsSync(s)) {
list.push(s)
}
} else {
if (!s.startsWith('http')) {
if (fs.existsSync(`${sourceDir}/${s}`)) {
list.push(`${sourceDir}/${s}`)
}
}
}
}
} else {
eachRecursive(obj[k], list, sourceDir)
}
}
if (fs.existsSync(`${sourceDir}/index.md`)) {
list.push(`${sourceDir}/index.md`)
}
}
function parseAnchorsFromDir (dir, listOfFiles, headers = false) {
const results = []
listOfFiles.forEach(file => {
const content = fs.readFileSync(`${dir}${file.substring(4)}`, 'utf8')
const anchors = new Set()
const result = {}
content.replace(/^\s*#{1,6}[^{]*\{#([^}]+)\}/gm, (_, id) => anchors.add(`${id}`)) // custom id
content.replace(/<anchor>(.+)<\/anchor>/gm, (_, id) => anchors.add(`${id}`)) // tag <anchor></anchors>
if (headers) {
content.replace(/^#+\s+([^({#|\n)]+)$/gm, (_, title) => { // headers
const anchor = trimEmptyLines(title.toLowerCase())
.replace(/\s+/g, '-')
.replace(/[^a-zа-яё\-0-9]/g, '')
anchors.add(anchor)
})
}
content.replace(/\sid=(?:"([^"]*)"|'([^']*)')/gm, (_, id1, id2) => anchors.add(id1 || id2)) // html-tag with id
if (anchors.size) {
result.file = `${file}`
result.anchors = [...anchors]
results.push(result)
}
})
return results
}
const trimEmptyLines = text => String(text).replace(/^\n+|\n+$/g, '')
// Export functions
module.exports = {
parseChapters,
updateListOfFiles,
getFoliantConfig,
existIncludes,
parseAnchorsFromDir,
trimEmptyLines
}