-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
560 lines (473 loc) · 14.4 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
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
'use strict';
const f = require('f.luent');
const fs = require('fs');
const sjl = require('sjl');
const path = require('path');
const unionj = require('unionj');
let STRATEGIES =
{
LEAVES: 'LEAVES',
BACKCURSION: 'BACKCURSION',
ARRAY: 'ARRAY'
};
let DEFAULT_STRATEGY = STRATEGIES.LEAVES;
function endsWith(end, str)
{
let result = false;
if (end && str && end.length && str.length)
{
let pos = str.indexOf(end);
if (pos >= 0 && pos === str.length - end.length)
{
result = true;
}
}
return result;
}
function unifyAllUnderFolder(folder)
{
return new Promise( (resolve, reject) =>
{
f.constrain(folder).notnull().string()
.otherwise( () =>
{
reject(new Error('Argument must be a string'));
});
folder = path.resolve(folder);
fs.access(folder, fs.R_OK, err =>
{
if (err)
{
// In case we don't find the folder just return null and continue mixing JSONs:
resolve(null);
}
else
{
fs.readdir(folder, (err, files) =>
{
if (err)
{
reject(err);
}
else if (files.length)
{
// 'common.{conf|json}' files take precedence, acting as base configuration:
let pos = files.indexOf('common.conf');
if (pos === -1)
{
pos = files.indexOf('common.json');
}
if (pos !== -1 && pos !== 0)
{
let common = files[pos];
files.splice(pos, 1);
files.unshift(common);
}
const promises = files.map( file =>
{
if (endsWith('.conf', file) || endsWith('.json', file))
{
return sjl(path.join(folder, file));
}
else
{
return null;
}
});
Promise.all(promises)
.then( jsons =>
{
let contents = jsons.reduce( (contents, json) =>
{
if (!f.$.isArray(contents))
{
contents = [contents];
}
if (json)
{
contents.push(json);
}
return contents;
});
/* The "reduce" step is skipped when only one doc is loaded.
* If so we need wrapping that only result in an array:
*/
if (!f.$.isArray(contents))
{
contents = [contents];
}
let result = unionj.add.apply(unionj, contents);
resolve(result);
});
}
else
{
resolve({});
}
});
}
});
});
}
function arrayizeAllUnderFolder(folder)
{
return new Promise( (resolve, reject) =>
{
f.constrain(folder).notnull().string()
.otherwise( () =>
{
reject(new Error('Argument must be a string'));
});
folder = path.resolve(folder);
fs.access(folder, fs.R_OK, err =>
{
if (err)
{
// In case we don't find the folder just return null and continue mixing JSONs:
resolve(null);
}
else
{
fs.readdir(folder, (err, files) =>
{
if (err)
{
reject(err);
}
else if (files.length)
{
const promises = files.map( file =>
{
if (endsWith('.conf', file) || endsWith('.json', file))
{
return sjl(path.join(folder, file));
}
else
{
let subpath = path.join(folder, file);
return new Promise( (resolve, reject) =>
{
fs.stat(subpath, function(err, stat)
{
if (stat.isDirectory())
{
unifyAllUnderFolder(subpath)
.then(resolve)
.catch(reject);
}
else
{
resolve(null);
}
});
});
}
});
Promise.all(promises)
.then( jsons =>
{
let result = jsons.reduce( (result, json) =>
{
if (!f.$.isArray(result))
{
result = [result];
}
if (json)
{
result.push(json);
}
return result;
});
/* The "reduce" step is skipped when only one doc is loaded.
* If so we need wrapping that only result in an array:
*/
if (!f.$.isArray(result))
{
result = [result];
}
resolve(result);
});
}
else
{
resolve([]);
}
});
}
});
});
}
function buildPath(parts)
{
let result = '.';
f.constrain(parts).notnull().array().throws('Argument must be an array');
if (parts.length)
{
for (let part of parts)
{
if (part)
{
result = path.join(result, part);
}
}
}
return result;
}
function loadCommonsFile(basePath)
{
return new Promise( (resolve, reject) =>
{
f.constrain(basePath).notnull().string()
.otherwise( () =>
{
reject(new Error('Path must be a string'));
});
let commonConf = path.join(basePath, 'common.conf');
fs.access(commonConf, fs.R_OK, err =>
{
if (err)
{
let commonJson = path.join(basePath, 'common.json');
fs.access(commonJson, fs.R_OK, err =>
{
if (err)
{
// No file? Easy solution: don't load anything and return null.
resolve(null);
}
else
{
sjl(commonJson)
.then(resolve)
.catch(reject);
}
});
}
else
{
sjl(commonConf)
.then(resolve)
.catch(reject);
}
});
});
}
function loadCommonsFromPaths(basePath, paths)
{
return new Promise( (resolve, reject) =>
{
f.constrain(basePath).notnull().string()
.otherwise( () =>
{
reject(new Error('Base-path must be a string'));
});
f.constrain(paths).notnull().array()
.otherwise( () =>
{
reject(new Error('Second argument must be an array'));
});
let commons = [];
let incrementalPath = basePath;
loadCommonsFile(incrementalPath)
.then( json =>
{
if (json)
{
commons.push(json);
}
const promises = paths.map( commonFilePath =>
{
incrementalPath = path.join(incrementalPath, commonFilePath);
return loadCommonsFile(incrementalPath);
});
Promise.all(promises)
.then( jsons =>
{
let newCommons = jsons.reduce( (newCommons, json) =>
{
if (!f.$.isArray(newCommons))
{
newCommons = [newCommons];
}
if (json)
{
newCommons.push(json);
}
return newCommons;
});
let result;
if (newCommons && newCommons.length)
{
// Add to previous commons:
commons = commons.concat(newCommons);
result = unionj.add.apply(unionj, commons);
}
else if (commons && commons.length)
{
result = unionj.add.apply(unionj, commons);
}
else
{
result = {};
}
resolve(result);
});
})
.catch(reject);
});
}
function load(basePath, subPath, strategy)
{
return new Promise( (resolve, reject) =>
{
f.constrain(basePath, subPath).notnull().strings()
.otherwise( () =>
{
reject(new Error('Paths must be strings'));
});
let fullpath;
if (strategy === STRATEGIES.LEAVES)
{
fullpath = path.join(basePath, subPath);
unifyAllUnderFolder(fullpath)
.then(resolve)
.catch(reject);
}
else if (strategy === STRATEGIES.BACKCURSION)
{
loadCommonsFromPaths(basePath, subPath.split(path.sep))
.then( commons =>
{
return load(basePath, subPath, STRATEGIES.LEAVES)
.then( inner =>
{
let result = unionj.add(commons, inner);
resolve(result);
})
.catch(reject);
})
.catch(reject);
}
else // Strategy is "ARRAY"...
{
fullpath = path.join(basePath, subPath);
arrayizeAllUnderFolder(fullpath)
.then(resolve)
.catch(reject);
}
});
}
function Conf(basePath)
{
f.constrain(basePath).notnull().string().throws('Path must be a string');
this.basePath = basePath;
this._strategy = DEFAULT_STRATEGY;
}
Conf.prototype.get = function()
{
let self = this;
let args;
if (arguments.length)
{
args = Array.prototype.slice.call(arguments);
}
return new Promise( (resolve, reject) =>
{
if (args && args.length)
{
// Parse sublevels:
let subPath = buildPath(args);
load(self.basePath, subPath, self._strategy)
.then(resolve)
.catch(reject);
}
else
{
// Here things are decided depending on the strategy previously set by the user:
if ( self._strategy === STRATEGIES.LEAVES
|| self._strategy === STRATEGIES.BACKCURSION)
{
// Answer with the whole structure (by returning the underlying promise):
unifyAllUnderFolder(self.basePath)
.then(resolve)
.catch(reject);
}
else // Assumes "ARRAY" strategy
{
// Return an array of files from the base-path:
arrayizeAllUnderFolder(self.basePath)
.then(resolve)
.catch(reject);
}
}
});
};
Conf.prototype.from = function()
{
return this.basePath;
};
Conf.prototype.strategy = function()
{
let confRef = this;
let obj = {};
obj.leaves = function()
{
confRef._strategy = STRATEGIES.LEAVES;
return confRef;
};
obj.backcursion = function()
{
confRef._strategy = STRATEGIES.BACKCURSION;
return confRef;
};
obj.array = function()
{
confRef._strategy = STRATEGIES.ARRAY;
return confRef;
};
obj.get = function()
{
return confRef._strategy;
};
obj.set = function(str)
{
if (str &&
( str.toUpperCase() === STRATEGIES.LEAVES
|| str.toUpperCase() === STRATEGIES.BACKCURSION
|| str.toUpperCase() === STRATEGIES.ARRAY
)
)
{
confRef._strategy = str.toUpperCase();
return confRef;
}
else
{
throw new Error('No such strategy ("' + str + '")');
}
};
return obj;
};
Conf.prototype.toString = function()
{
return '[object Conf]';
};
module.exports =
{
STRATEGIES: STRATEGIES,
strategy: function()
{
return {
default: function()
{
return DEFAULT_STRATEGY;
}
};
},
from: function(basePath)
{
f.constrain(basePath).notnull().string().throws('Base-path must be a string');
let result = new Conf(basePath);
return result;
}
};