Newer
Older
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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
const
fs = require('fs'),
path = require('path'),
ejs = require('ejs'),
config = require('./configuration');
var bundles = {};
exports.generate = function generate(templatesDir, namePrefix, lastGen) {
if (!namePrefix) namePrefix = "";
var bundle = bundles[templatesDir] || (bundles[templatesDir] = {});
lastGen = lastGen || bundle.lastGen || 0;
var templateData = bundle.data;
var fileNames = fs.readdirSync(templatesDir);
var templates = [];
// is a regen necessary?
try {
for (var i = 0; i < fileNames.length; i++) {
if (lastGen < fs.statSync(path.join(templatesDir, fileNames[i])).mtime) {
throw "newer";
}
}
// no rebuild needed
console.log("templates [%s] up to date", templatesDir);
return templateData;
} catch (e) {
console.log("creating templates [%s]", templatesDir);
}
for(var index = 0, max = fileNames.length; index < max; index++) {
var fileName = fileNames[index];
if(fileName.match(/\.ejs$/)) {
var templateName = namePrefix + fileName.replace(/\.ejs/, '');
var templateText = fs.readFileSync(path.join(templatesDir, fileName), "utf8");
templates[templateName] = ejs.compile(templateText, {
client: true,
compileDebug: !config.get('use_minified_resources')
});
}
}
templateData = "BrowserID.Templates = BrowserID.Templates || {};";
for (var t in templates) {
if (templates.hasOwnProperty(t)) {
templateData += "\nBrowserID.Templates['" + t + "'] = " + String(templates[t]);
}
}
bundle.lastGen = Date.now();
bundle.data = templateData;
return templateData;
};