forked from yui/yuidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.js
392 lines (335 loc) · 10.9 KB
/
utils.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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
var path = require('path'),
util = require('util'),
minimatch = require('minimatch'),
fs = require('graceful-fs');
/**
* Utilities Class
* @class Utils
* @module yuidoc
*/
YUI.add('utils', function(Y) {
var HTML_CHARS = {
'&': '&',
'<': '<',
'>': '>',
'"': '"',
"'": ''',
'/': '/',
'`': '`'
};
/**
Escapes HTML characters in _html_.
@method escapeHTML
@param {String} html String to escape.
@return {String} Escaped string.
**/
Y.escapeHTML = function(html) {
return html.replace(/[&<>"'\/`]/g, function (match) {
return HTML_CHARS[match];
});
};
/**
Normalizes the initial indentation of the given _content_ so that the first line
is unindented, and all other lines are unindented to the same degree as the
first line. So if the first line has four spaces at the beginning, then all
lines will be unindented four spaces.
@method unindent
@param {String} content Text to unindent.
@return {String} Unindented text.
@private
**/
Y.unindent = function(content) {
var indent = content.match(/^(\s+)/);
if (indent) {
content = content.replace(new RegExp('^' + indent[1], 'gm'), '');
}
return content;
};
/**
Like `getPages()`, but returns only the files under the `layout/` subdirectory
of the specified _dir_.
@method getLayouts
@param {String} dir Directory path.
@return {Object} Mapping of layout names to layout content.
**/
function getLayouts(dir) {
return getPages(path.join(dir, 'layouts'));
}
Y.getLayouts = getLayouts;
/**
Loads and returns the content of the specified page file.
@method getPage
@param {String} pagePath Path to a single `.handlebars` page.
@return {String|null} Page content, or `null` if not found.
**/
function getPage(pagePath) {
if (!Y.Files.isFile(pagePath)) { return null; }
return fs.readFileSync(pagePath, 'utf8');
}
Y.getPage = getPage;
/**
Loads pages (files with a `.handlebars` extension) in the specified directory and
returns an object containing a mapping of page names (the part of the filename)
preceding the `.handlebars` extension) to page content.
@method getPages
@param {String} dir Directory path.
@return {Object} Mapping of page names to page content.
**/
var cache = {};
function getPages(dir) {
if (cache[dir]) {
return cache[dir];
}
var pages = {};
if (!Y.Files.isDirectory(dir)) { return pages; }
fs.readdirSync(dir).forEach(function (filename) {
var filePath = path.join(dir, filename);
if (path.extname(filename) === '.handlebars' && Y.Files.isFile(filePath)) {
pages[path.basename(filename, '.handlebars')] = fs.readFileSync(filePath, 'utf8');
}
});
cache[dir] = pages;
return pages;
}
Y.getPages = getPages;
/**
Like `getPages()`, but returns only the files under the `partial/` subdirectory
of the specified _dir_.
@method getPartials
@param {String} dir Directory path.
@return {Object} Mapping of partial names to partial content.
**/
function getPartials(dir) {
return getPages(path.join(dir, 'partials'));
}
Y.getPartials = getPartials;
/**
Mix/merge/munge data into the template.
@method prepare
@param {String} inDir The starting directory
@param {Object} options The `options` for the meta data.
@param {callback} callback The callback to excecute when complete
@param {Error} callback.err
@param {Object} callback.options Merged options.
**/
function prepare(inDirs, options, callback) {
var compiled = {},
meta = {},
type = 'project';
if (options && options.skipLoad) {
// Skip loading layouts, metadata, pages, and partials and assume that
// the caller has provided them if they want them.
options = Y.merge({
layouts : {},
meta : {},
pages : {},
partials : {},
viewClass: Y.DocView
}, options);
} else {
// Gather layouts, metadata, pages, and partials from the specified
// input directory, then merge them into the provided options (if any).
//
// Gathered data will override provided data if there are conflicts, in
// order to support a use case where global data are provided by the
// caller and overridden by more specific component-level data gathered
// from the input directory.
//
// The metadata inheritance chain looks like this:
//
// - override metadata specified via CLI (highest precedence)
// - component metadata (if this is a component)
// - project-level component default metadata (if specified and this is a component)
// - theme-level component default metadata (if specified and this is a component)
// - project metadata
// - theme metadata (lowest precedence)
try {
if (inDirs[0] === inDirs[1]) {
layouts = getLayouts(inDirs[0]);
partials = getPartials(inDirs[0]);
} else {
layouts = Y.merge(getLayouts(inDirs[0]), getLayouts(inDirs[1]));
partials = Y.merge(getPartials(inDirs[0]), getPartials(inDirs[1]));
}
options = Y.merge(
{viewClass: Y.DocView},
options || {},
{
layouts : layouts,
meta : options.meta,
partials: partials
}
);
} catch (ex) {
return callback(ex);
}
}
// Mix in the override metadata, if any. It takes precedence over everything
// else.
Y.mix(options.meta, options.overrideMeta);
// Set a default asset path if one isn't specified in the metadata.
if (!options.meta.projectAssets) {
options.meta.projectAssets = options.component ? '../assets' : 'assets';
}
if (!options.meta.componentAssets && options.component) {
options.meta.componentAssets = '../assets/' + options.meta.name;
}
if (typeof options.meta.layout === 'undefined') {
options.meta.layout = options.layouts[type] ? type : 'main';
}
callback(null, options);
}
Y.prepare = prepare;
var projectData, dirCount = 0;
/**
* Walk the directory tree to locate the yuidoc.json file.
* @method getProjectData
* @param {Path} [dir=process.cwd()] The directory to start from
*/
var getProjectData = function(dir) {
if (dirCount > 5000) {
Y.log('Scanned ' + dirCount + ' directories looking for a yuidoc.json file, something is probably wrong here..', 'error', 'yuidoc');
process.exit(1);
}
if (!dir) {
dir = process.cwd();
}
var dirs = fs.readdirSync(dir);
dirs.forEach(function(d) {
var p = path.join(dir, d);
if (d.indexOf('.') === 0) {
return;
}
if (d === 'node_modules') {
Y.log('Skipping node_modules directory while scanning for yuidoc.json', 'warn', 'yuidoc');
return;
}
if (projectData) {
return;
}
if (Y.Files.isFile(p)) {
if (d === 'yuidoc.json') {
Y.log('Loading project data from: ' + p, 'info', 'yuidoc');
try {
projectData = Y.Files.getJSON(p);
} catch (e) {
var err = 'Failed to parse yuidoc.json file, please make sure it is valid JSON';
Y.log(err, 'error', 'yuidoc');
throw(e+'');
}
}
}
if (!projectData && Y.Files.isDirectory(p)) {
dirCount++
projectData = getProjectData(p);
}
});
return projectData;
};
Y.getProjectData = getProjectData;
/**
* Walks the tree from this dir and returns all the subdirs
* @method getDirs
* @param {String} dir The dir to begin at
* @return {Array} The array of directories..
*/
var getDirs = function(dir) {
var dirs = fs.readdirSync(dir),
paths = [];
dirs.forEach(function(d) {
var _dir = path.join(dir, d),
stat = fs.statSync(_dir);
if (stat.isDirectory()) {
if (_dir.indexOf('.') !== 0) {
paths = [].concat(paths, _dir, getDirs(_dir));
}
}
});
return paths;
};
Y.getDirs = getDirs;
/**
* Make sure all the paths passed are directories and that they are not in the ignore list.
* @method validatePaths
* @param {Array} paths The array of paths to validate
* @param {String} [ignore=false] A string to call `.indexOf` on a path to determine if it should be ignored
*/
var validatePaths = function(paths, ignore) {
//Shortcut the *, . & ./ shortcuts that shall globbing fixes for us
if (paths === '*' || paths === '.' || paths === './') {
paths = [process.cwd()];
}
if (!paths || !paths.forEach) {
var glob = paths || '';
if (process.platform === 'win32') {
if (paths) {
glob = paths.replace(/\//g, '\\\\');
}
}
paths = [];
var glob_paths = getDirs('.');
glob_paths.forEach(function(dir) {
if (minimatch(dir, glob, { period: true })) {
paths.push(dir);
}
});
}
if (paths.forEach) {
paths.forEach(function(p) {
try {
if (!Y.Files.isDirectory(p)) {
throw('Path not a directory: ' + p);
}
} catch (e) {}
});
}
if (!paths || !paths.forEach) {
throw('Paths should be an array of paths');
}
if (ignore) {
if (!(ignore instanceof Array)) {
ignore = [ignore];
}
var p = [],
shouldIgnore = false;
paths.forEach(function(v) {
shouldIgnore = false;
ignore.forEach(function(i) {
if (!shouldIgnore && v.indexOf(i) !== -1) {
shouldIgnore = true;
}
});
if (!shouldIgnore) {
p.push(v);
}
});
paths = p;
}
paths = paths.sort();
return paths;
};
Y.validatePaths = validatePaths;
/**
* Takes a type string and converts it to a "First letter upper cased" type. e.g. `(string -> String, object -> Object)`
* @method fixType
* @param {String} t The type string to convert
* @return {String} The fixed string
*/
var fixType = function(t) {
if (t && t.indexOf('.') === -1) {
t = t.replace(/{/g, '').replace(/}/g, '');
var firstChar = t.charAt(0),
upperFirstChar = firstChar.toUpperCase();
if (firstChar !== upperFirstChar) {
return upperFirstChar + t.substring(1);
}
}
return t;
};
Y.Lang.fixType = fixType;
});