-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathgitdown.js
353 lines (286 loc) · 8.62 KB
/
gitdown.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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
const Gitdown = {};
const fs = require('fs');
const path = require('path');
const Promise = require('bluebird');
const _ = require('lodash');
const marked = require('marked');
const Deadlink = require('deadlink');
const URLExtractor = require('url-extractor');
const MarkdownContents = require('markdown-contents');
const StackTrace = require('stack-trace');
const gitinfo = require('./helpers/gitinfo.js');
const contents = require('./helpers/contents.js');
const Parser = require('./parser.js');
/**
* @param {string} input Gitdown flavored markdown.
*/
Gitdown.read = (input) => {
let instanceConfig,
instanceLogger;
instanceConfig = {};
const gitdown = {};
const parser = Parser(gitdown);
/**
* Process template.
*
* @returns {Promise}
*/
gitdown.get = () => {
return parser
.play(input)
.then((state) => {
let markdown;
markdown = state.markdown;
if (gitdown.getConfig().headingNesting.enabled) {
markdown = Gitdown.nestHeadingIds(markdown);
}
return gitdown
.resolveURLs(markdown)
.then(() => {
return markdown.replace(/<!--\sgitdown:\s(:?off|on)\s-->/g, '');
});
});
};
/**
* Write processed template to a file.
*
* @param {string} fileName
* @returns {Promise}
*/
gitdown.writeFile = (fileName) => {
return gitdown
.get()
.then((outputString) => {
return fs.writeFileSync(fileName, outputString);
});
};
/**
* @param {string} name
* @param {Object} helper
*/
gitdown.registerHelper = (name, helper) => {
parser.registerHelper(name, helper);
};
/**
* Returns the first directory in the callstack that is not this directory.
*
* @private
* @returns {string} Path to the directory where Gitdown was invoked.
*/
gitdown.executionContext = () => {
let index;
const stackTrace = StackTrace.get();
const stackTraceLength = stackTrace.length;
index = 0;
while (index++ < stackTraceLength) {
const stackDirectory = path.dirname(stackTrace[index].getFileName());
if (__dirname !== stackDirectory) {
return stackDirectory;
}
}
throw new Error('Execution context cannot be determined.');
};
/**
* @private
* @param {string} markdown
*/
gitdown.resolveURLs = (markdown) => {
let promises,
urls;
const repositoryURL = gitinfo.compile({name: 'url'}, {gitdown}) + '/tree/' + gitinfo.compile({name: 'branch'}, {gitdown});
const deadlink = Deadlink();
urls = URLExtractor.extractUrls(markdown, URLExtractor.SOURCE_TYPE_MARKDOWN);
urls = urls.map((url) => {
let resolvedUrl;
// @todo What if it isn't /README.md?
// @todo Test.
if (_.startsWith(url, '#')) {
// Github is using JavaScript to resolve anchor tags under #uses-content- ID.
resolvedUrl = repositoryURL + '#user-content-' + url.substr(1);
} else {
resolvedUrl = url;
}
return resolvedUrl;
});
if (!urls.length || !gitdown.getConfig().deadlink.findDeadURLs) {
return Promise.resolve([]);
}
if (gitdown.getConfig().deadlink.findDeadFragmentIdentifiers) {
promises = deadlink.resolve(urls);
} else {
promises = deadlink.resolveURLs(urls);
}
gitdown.getLogger().info('Resolving URLs', urls);
return Promise
.all(promises)
.each((Resolution) => {
if (Resolution.error && Resolution.fragmentIdentifier && !(Resolution.error instanceof Deadlink.URLResolution && !Resolution.error.error)) {
// Ignore the fragment identifier error if resource resolution failed.
gitdown.getLogger().warn('Unresolved fragment identifier:', Resolution.url);
} else if (Resolution.error && !Resolution.fragmentIdentifier) {
gitdown.getLogger().warn('Unresolved URL:', Resolution.url);
} else if (Resolution.fragmentIdentifier) {
gitdown.getLogger().info('Resolved fragment identifier:', Resolution.url);
} else if (!Resolution.fragmentIdentifier) {
gitdown.getLogger().info('Resolved URL:', Resolution.url);
}
});
};
/**
* @param {Object} logger
*/
gitdown.setLogger = (logger) => {
if (!logger.info) {
throw new Error('Logger must implement logger.info function.');
}
if (!logger.warn) {
throw new Error('Logger must implement logger.warn function.');
}
instanceLogger = {
info: logger.info,
warn: logger.warn
};
};
/**
* @returns {Object}
*/
gitdown.getLogger = () => {
return instanceLogger;
};
/**
* @typedef {Object} config
* @property {}
*/
/**
* @param {Object} config
* @returns {undefined}
*/
gitdown.setConfig = (config) => {
if (!_.isPlainObject(config)) {
throw new Error('config must be a plain object.');
}
if (config.variable && !_.isObject(config.variable.scope)) {
throw new Error('config.variable.scope must be set and must be an object.');
}
if (config.deadlink && !_.isBoolean(config.deadlink.findDeadURLs)) {
throw new Error('config.deadlink.findDeadURLs must be set and must be a boolean value');
}
if (config.deadlink && !_.isBoolean(config.deadlink.findDeadFragmentIdentifiers)) {
throw new Error('config.deadlink.findDeadFragmentIdentifiers must be set and must be a boolean value');
}
if (config.gitinfo && !fs.realpathSync(config.gitinfo.gitPath)) {
throw new Error('config.gitinfo.gitPath must be set and must resolve an existing file path.');
}
instanceConfig = _.defaultsDeep(config, instanceConfig);
};
/**
* @returns {Object}
*/
gitdown.getConfig = () => {
return instanceConfig;
};
gitdown.setConfig({
baseDirectory: process.cwd(),
deadlink: {
findDeadFragmentIdentifiers: false,
findDeadURLs: false
},
gitinfo: {
gitPath: gitdown.executionContext()
},
headingNesting: {
enabled: true
},
variable: {
scope: {}
}
});
return gitdown;
};
/**
* Read input from a file.
*
* @param {string} fileName
* @returns {Gitdown}
*/
Gitdown.readFile = (fileName) => {
if (!path.isAbsolute(fileName)) {
throw new Error('fileName must be an absolute path.');
}
const input = fs.readFileSync(fileName, {
encoding: 'utf8'
});
const gitdown = Gitdown.read(input);
const directoryName = path.dirname(fileName);
gitdown.setConfig({
baseDirectory: directoryName,
gitinfo: {
gitPath: directoryName
}
});
return gitdown;
};
/**
* Iterates through each heading in the document (defined using markdown)
* and prefixes heading ID using parent heading ID.
*
* @private
* @param {string} inputMarkdown
* @returns {string}
*/
Gitdown.nestHeadingIds = (inputMarkdown) => {
let outputMarkdown;
const articles = [];
const codeblocks = [];
outputMarkdown = inputMarkdown;
outputMarkdown = outputMarkdown.replace(/^```[\s\S]*?\n```/mg, (match) => {
codeblocks.push(match);
return '⊂⊂⊂C:' + codeblocks.length + '⊃⊃⊃';
});
outputMarkdown = outputMarkdown.replace(/^(#+)(.*$)/mg, (match, level, name) => {
let normalizedName;
const normalizedLevel = level.length;
normalizedName = name.trim();
articles.push({
// `foo bar`
// -foo-bar-
// foo-bar
id: _.trim(normalizedName.toLowerCase().replace(/[^\w]+/g, '-'), '-'),
level: normalizedLevel,
name: normalizedName
});
// `test`
normalizedName = _.trim(marked(normalizedName));
// <p><code>test</code></p>
normalizedName = normalizedName.slice(3, -4);
// <code>test</code>
return '<a name="⊂⊂⊂H:' + articles.length + '⊃⊃⊃"></a>\n' + _.repeat('#', normalizedLevel) + ' ' + normalizedName;
});
outputMarkdown = outputMarkdown.replace(/^⊂⊂⊂C:(\d+)⊃⊃⊃/mg, () => {
return codeblocks.shift();
});
const tree = contents.nestIds(MarkdownContents.tree(articles));
Gitdown.nestHeadingIds.iterateTree(tree, (index, article) => {
outputMarkdown = outputMarkdown.replace('⊂⊂⊂H:' + index + '⊃⊃⊃', article.id);
});
return outputMarkdown;
};
/**
* @private
* @param {Array} tree
* @param {Function} callback
* @param {number} index
*/
Gitdown.nestHeadingIds.iterateTree = (tree, callback, index = 1) => {
let nextIndex;
nextIndex = index;
tree.forEach((article) => {
// eslint-disable-next-line callback-return
callback(nextIndex++, article);
if (article.descendants) {
nextIndex = Gitdown.nestHeadingIds.iterateTree(article.descendants, callback, nextIndex);
}
});
return nextIndex;
};
module.exports = Gitdown;