summaryrefslogtreecommitdiffstats
path: root/lib/output/conrefs.js
blob: c91885ee3a0ab9f0cea4727344d0faf50835716f (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
52
53
54
55
56
57
58
59
60
var path = require('path');

var Output = require('./base');
var Git = require('../utils/git');
var fs = require('../utils/fs');
var pathUtil = require('../utils/path');

/*
Middleware for output to resolve git conrefs
*/

var ConrefsLoader = Output.createMixin(function() {
    this.git = new Git();
});

// Read a template by its source URL
ConrefsLoader.prototype.onGetTemplate = function(sourceURL) {
    var that = this;

    return this.git.resolve(sourceURL)
    .then(function(filepath) {
        // Is local file
        if (!filepath) {
            filepath = that.book.resolve(sourceURL);
        } else {
            that.book.log.debug.ln('resolve from git', sourceURL, 'to', filepath);
        }

        //  Read file from absolute path
        return fs.readFile(filepath)
        .then(function(source) {
            return {
                src: source.toString('utf8'),
                path: filepath
            };
        });
    });
};

// Generate a source URL for a template
ConrefsLoader.prototype.onResolveTemplate = function(from, to) {
    // If origin is in the book, we enforce result file to be in the book
    if (this.book.isInBook(from)) {
        return this.book.resolve(
            this.book.relative(path.dirname(from)),
            to
        );
    }

    // If origin is in a git repository, we resolve file in the git repository
    var gitRoot = this.git.resolveRoot(from);
    if (gitRoot) {
        return pathUtil.resolveInRoot(gitRoot, to);
    }

    // If origin is not in the book (include from a git content ref)
    return path.resolve(path.dirname(from), to);
};

module.exports = ConrefsLoader;