mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-28 10:53:13 +01:00
144 lines
3.4 KiB
JavaScript
144 lines
3.4 KiB
JavaScript
const { cloneDeep } = require('lodash');
|
|
const { interpolate } = require('@usebruno/common');
|
|
|
|
const variableNameRegex = /^[\w-.]*$/;
|
|
|
|
class Bru {
|
|
constructor(envVariables, runtimeVariables, processEnvVars, collectionPath, collectionVariables, folderVariables, requestVariables, globalEnvironmentVariables) {
|
|
this.envVariables = envVariables || {};
|
|
this.runtimeVariables = runtimeVariables || {};
|
|
this.processEnvVars = cloneDeep(processEnvVars || {});
|
|
this.collectionVariables = collectionVariables || {};
|
|
this.folderVariables = folderVariables || {};
|
|
this.requestVariables = requestVariables || {};
|
|
this.globalEnvironmentVariables = globalEnvironmentVariables || {};
|
|
this.collectionPath = collectionPath;
|
|
}
|
|
|
|
_interpolate = (str) => {
|
|
if (!str || !str.length || typeof str !== 'string') {
|
|
return str;
|
|
}
|
|
|
|
const combinedVars = {
|
|
...this.globalEnvironmentVariables,
|
|
...this.collectionVariables,
|
|
...this.envVariables,
|
|
...this.folderVariables,
|
|
...this.requestVariables,
|
|
...this.runtimeVariables,
|
|
process: {
|
|
env: {
|
|
...this.processEnvVars
|
|
}
|
|
}
|
|
};
|
|
|
|
return interpolate(str, combinedVars);
|
|
};
|
|
|
|
cwd() {
|
|
return this.collectionPath;
|
|
}
|
|
|
|
getEnvName() {
|
|
return this.envVariables.__name__;
|
|
}
|
|
|
|
getProcessEnv(key) {
|
|
return this.processEnvVars[key];
|
|
}
|
|
|
|
hasEnvVar(key) {
|
|
return Object.hasOwn(this.envVariables, key);
|
|
}
|
|
|
|
getEnvVar(key) {
|
|
return this._interpolate(this.envVariables[key]);
|
|
}
|
|
|
|
setEnvVar(key, value) {
|
|
if (!key) {
|
|
throw new Error('Creating a env variable without specifying a name is not allowed.');
|
|
}
|
|
|
|
this.envVariables[key] = value;
|
|
}
|
|
|
|
getGlobalEnvVar(key) {
|
|
return this._interpolate(this.globalEnvironmentVariables[key]);
|
|
}
|
|
|
|
setGlobalEnvVar(key, value) {
|
|
if (!key) {
|
|
throw new Error('Creating a env variable without specifying a name is not allowed.');
|
|
}
|
|
|
|
this.globalEnvironmentVariables[key] = value;
|
|
}
|
|
|
|
hasVar(key) {
|
|
return Object.hasOwn(this.runtimeVariables, key);
|
|
}
|
|
|
|
setVar(key, value) {
|
|
if (!key) {
|
|
throw new Error('Creating a variable without specifying a name is not allowed.');
|
|
}
|
|
|
|
if (variableNameRegex.test(key) === false) {
|
|
throw new Error(
|
|
`Variable name: "${key}" contains invalid characters!` +
|
|
' Names must only contain alpha-numeric characters, "-", "_", "."'
|
|
);
|
|
}
|
|
|
|
this.runtimeVariables[key] = value;
|
|
}
|
|
|
|
getVar(key) {
|
|
if (variableNameRegex.test(key) === false) {
|
|
throw new Error(
|
|
`Variable name: "${key}" contains invalid characters!` +
|
|
' Names must only contain alpha-numeric characters, "-", "_", "."'
|
|
);
|
|
}
|
|
|
|
return this._interpolate(this.runtimeVariables[key]);
|
|
}
|
|
|
|
deleteVar(key) {
|
|
delete this.runtimeVariables[key];
|
|
}
|
|
|
|
deleteAllVars() {
|
|
for (let key in this.runtimeVariables) {
|
|
if (this.runtimeVariables.hasOwnProperty(key)) {
|
|
delete this.runtimeVariables[key];
|
|
}
|
|
}
|
|
}
|
|
|
|
getCollectionVar(key) {
|
|
return this._interpolate(this.collectionVariables[key]);
|
|
}
|
|
|
|
getFolderVar(key) {
|
|
return this._interpolate(this.folderVariables[key]);
|
|
}
|
|
|
|
getRequestVar(key) {
|
|
return this._interpolate(this.requestVariables[key]);
|
|
}
|
|
|
|
setNextRequest(nextRequest) {
|
|
this.nextRequest = nextRequest;
|
|
}
|
|
|
|
sleep(ms) {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|
|
}
|
|
|
|
module.exports = Bru;
|