summaryrefslogtreecommitdiffstats
path: root/lib/parse/parseConfig.js
blob: 5200de2f97614b2293dd8c654beeefd5d7a17b50 (plain)
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
var Promise = require('../utils/promise');
var Config = require('../models/config');

var File = require('../models/file');
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();

    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 file = result? result.file : File();
        var values = result? result.values : {};

        values = validateConfig(values);

        var config = Config.create(file, values);
        return book.set('config', config);
    });
}

module.exports = parseConfig;