forked from launchdarkly/integration-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
52 lines (50 loc) · 1.58 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
const Handlebars = require('handlebars');
const dateFormat = require('dateformat');
const { flatMap } = require('lodash');
const registerHelpers = () => {
Handlebars.registerHelper('equal', function (v1, v2, options) {
if (v1 === v2) {
return options.fn(this);
}
return options.inverse(this);
});
// We don't use this here - the rendering in goaltender is done with the GO implementation of handlebars, where we need to use a helper called equalWithElse, as equal is taken and doesn't support else
Handlebars.registerHelper('equalWithElse', function (v1, v2, options) {
if (v1 === v2) {
return options.fn(this);
}
return options.inverse(this);
});
Handlebars.registerHelper('pathEncode', function (v) {
return encodeURI(v);
});
Handlebars.registerHelper('queryEncode', function (v) {
return encodeURIComponent(v);
});
Handlebars.registerHelper(
'basicAuthHeaderValue',
function (username, password) {
return `Basic ${Buffer.from(`${username}:${password}`).toString(
'base64'
)}`;
}
);
Handlebars.registerHelper(
'formatWithOffset',
function (milliseconds, offset, format) {
const ts = new Date(milliseconds + 1000 * offset);
switch (format) {
case 'milliseconds':
return ts.getTime();
case 'seconds':
return Math.round(ts.getTime() / 1000);
case 'rfc3339':
return ts.toISOString();
case 'simple':
return dateFormat(ts, 'yyyy-mm-dd h:MM:ss');
}
return ts.getTime();
}
);
};
module.exports = { registerHelpers };