mirror of
https://github.com/usebruno/bruno.git
synced 2025-07-18 21:14:46 +02:00
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
const Handlebars = require('handlebars');
|
|
const { forOwn, cloneDeep } = require('lodash');
|
|
|
|
const interpolateEnvVars = (str, processEnvVars) => {
|
|
if (!str || !str.length || typeof str !== 'string') {
|
|
return str;
|
|
}
|
|
|
|
const template = Handlebars.compile(str, { noEscape: true });
|
|
|
|
return template({
|
|
process: {
|
|
env: {
|
|
...processEnvVars
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
const interpolateString = (str, { envVars, collectionVariables, processEnvVars }) => {
|
|
if (!str || !str.length || typeof str !== 'string') {
|
|
return str;
|
|
}
|
|
|
|
processEnvVars = processEnvVars || {};
|
|
collectionVariables = collectionVariables || {};
|
|
|
|
// we clone envVars because we don't want to modify the original object
|
|
envVars = envVars ? cloneDeep(envVars) : {};
|
|
|
|
// envVars can inturn have values as {{process.env.VAR_NAME}}
|
|
// so we need to interpolate envVars first with processEnvVars
|
|
forOwn(envVars, (value, key) => {
|
|
envVars[key] = interpolateEnvVars(value, processEnvVars);
|
|
});
|
|
|
|
const template = Handlebars.compile(str, { noEscape: true });
|
|
|
|
// collectionVariables take precedence over envVars
|
|
const combinedVars = {
|
|
...envVars,
|
|
...collectionVariables,
|
|
process: {
|
|
env: {
|
|
...processEnvVars
|
|
}
|
|
}
|
|
};
|
|
|
|
return template(combinedVars);
|
|
};
|
|
|
|
module.exports = {
|
|
interpolateString
|
|
};
|