mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 15:45:13 +00:00
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
var Promise = require('../utils/promise');
|
|
|
|
var validateConfig = require('./validateConfig');
|
|
var CONFIG_FILES = require('../constants/configFiles');
|
|
|
|
/**
|
|
Parse configuration from "book.json" or "book.js"
|
|
|
|
@param {Book} book
|
|
@return {Promise<Book>}
|
|
*/
|
|
function parseConfig(book) {
|
|
var fs = book.getFS();
|
|
var config = book.getConfig();
|
|
|
|
return Promise.some(CONFIG_FILES, function(filename) {
|
|
// Is this file ignored?
|
|
if (book.isFileIgnored(filename)) {
|
|
return;
|
|
}
|
|
|
|
// Try loading it
|
|
return Promise.all([
|
|
fs.loadAsObject(filename),
|
|
fs.statFile(filename)
|
|
])
|
|
.spread(function(cfg, file) {
|
|
return {
|
|
file: file,
|
|
values: cfg
|
|
};
|
|
})
|
|
.fail(function(err) {
|
|
if (err.code != 'MODULE_NOT_FOUND') throw(err);
|
|
else return Promise(false);
|
|
});
|
|
})
|
|
|
|
.then(function(result) {
|
|
var values = result? result.values : {};
|
|
values = validateConfig(values);
|
|
|
|
// Set the file
|
|
if (result.file) {
|
|
config = config.setFile(result.file);
|
|
}
|
|
|
|
// Merge with old values
|
|
config = config.mergeValues(values);
|
|
|
|
return book.setConfig(config);
|
|
});
|
|
}
|
|
|
|
module.exports = parseConfig;
|