-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinspect.js
104 lines (79 loc) · 2.45 KB
/
inspect.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
var util = require('util');
module.exports = inspect;
/**
* Metalsmith plugin that prints the objects
*
* @param {Object} opts
* @return {Function}
*/
function inspect(options){
options = normalize(options);
return function(files, metalsmith, done) {
if (options.disable)
return done();
//try {
var bigJSObject = {};
if (options.includeMetalsmith) {
bigJSObject[options.includeMetalsmith] = metalsmith.metadata();
}
for (let [filePath, fileData] of Object.entries(files)) {
if (options.fileFilter(filePath, fileData, metalsmith)) {
var outData = {};
for (let [key, value] of Object.entries(fileData)) {
if (options.accept(key, fileData)) {
outData[key] = value;
}
};
if (!options.contentsAsBuffer && outData.contents)
outData.contents = fileData.contents.toString();
bigJSObject[filePath] = outData;
}
};
options.printfn(bigJSObject);
done();
// }
// catch (err) {
// done(err);
// }
};
/**
* Normalize an `options` dictionary.
*
* @param {Object} options
*/
function normalize(options){
options = options || {};
options.printfn = options.printfn || function(obj) {
console.dir(obj, {colors: true});
};
if (!options.accept) {
if (options.include) {
options.accept = function(propKey) { return options.include.indexOf(propKey) >= 0; };
}
else if (options.exclude){
options.accept = function(propKey) { return options.exclude.indexOf(propKey) < 0; };
}
else {
options.accept = function() { return true; };
}
}
options.fileFilter = fileFilter(options.filter);
return options;
};
/* calculate file filter function */
function fileFilter(filter) {
if (filter) {
if (typeof filter === 'string') {
var regex = new RegExp(filter);
return function(filePath) { return regex.test(filePath); }
}
else if (filter instanceof RegExp)
return function(filePath) { return filter.test(filePath); }
else { // must be a function itself
return filter;
}
}
else // none, return "pass all"
return function() { return true; };
}
}