forked from pugjs/pug-load
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
91 lines (81 loc) · 3.04 KB
/
index.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
'use strict';
var fs = require('fs');
var path = require('path');
var walk = require('pug-walk');
module.exports = load;
function load(ast, options) {
load.validateOptions(options);
// clone the ast
ast = JSON.parse(JSON.stringify(ast));
return walk(ast, function (node) {
if (node.str === undefined) {
if (node.type === 'Include' || node.type === 'RawInclude' || node.type === 'Extends') {
var file = node.file;
if (file.type !== 'FileReference') {
throw new Error('Expected file.type to be "FileReference"');
}
var path, str;
try {
path = (options.resolve || load.resolve)(file.path, file.filename, options);
file.fullPath = path;
str = (options.read || load.read)(path, options);
} catch (ex) {
ex.message += '\n at ' + node.filename + ' line ' + node.line;
throw ex;
}
file.str = str;
if (node.type === 'Extends' || node.type === 'Include') {
var childOptions = {};
Object.keys(options).forEach(function (key) {
childOptions[key] = options[key];
})
childOptions.filename = path;
file.ast = load.string(str, childOptions);
}
}
}
});
}
load.string = function loadString(src, options) {
load.validateOptions(options);
options.src = src;
var tokens = options.lex(src, options);
var ast = options.parse(tokens, options);
return load(ast, options);
};
load.file = function loadFile(filename, options) {
load.validateOptions(options);
options.filename = filename;
var str = (options.read || load.read)(filename);
return load.string(str, options);
}
load.resolve = function resolve(filename, source, options) {
filename = filename.trim();
if (filename[0] !== '/' && !source)
throw new Error('the "filename" option is required to use includes and extends with "relative" paths');
if (filename[0] === '/' && !options.basedir)
throw new Error('the "basedir" option is required to use includes and extends with "absolute" paths');
filename = path.join(filename[0] === '/' ? options.basedir : path.dirname(source.trim()), filename);
return filename;
};
load.read = function read(filename, options) {
if (typeof(app) != 'undefined' && typeof(app.pugFs) == 'object') return _.get(app.pugFs, "['" + filename.replace(/\//g,"']['") + "']");
else return fs.readFileSync(`${options.basedir}/${filename}`, 'utf8');
};
load.validateOptions = function validateOptions(options) {
if (typeof options !== 'object') {
throw new TypeError('options must be an object');
}
if (typeof options.lex !== 'function') {
throw new TypeError('options.lex must be a function');
}
if (typeof options.parse !== 'function') {
throw new TypeError('options.parse must be a function');
}
if (options.resolve && typeof options.resolve !== 'function') {
throw new TypeError('options.resolve must be a function');
}
if (options.read && typeof options.read !== 'function') {
throw new TypeError('options.read must be a function');
}
};