-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pranav Joglekar
committed
Jul 8, 2024
1 parent
e1dfe7a
commit 7f6aa1f
Showing
4 changed files
with
1,591 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
|
||
const _ = require('../util').lodash, | ||
VariableList = require('./variable-list').VariableList, | ||
Property = require('./property').Property, | ||
{ VariableScope } = require('./variable-scope'), | ||
VAULT_PREFIX = 'vault:'; | ||
|
||
function addVaultPrefix (key) { | ||
return VAULT_PREFIX + key; | ||
} | ||
|
||
function removeVaultPrefix (key) { | ||
return key.replace(VAULT_PREFIX, ''); | ||
} | ||
|
||
class VaultVariableScope extends VariableScope { | ||
constructor (definition, layers) { | ||
if (definition) { | ||
definition.id = 'vault'; | ||
} | ||
|
||
super(definition, layers); | ||
} | ||
|
||
has (key) { | ||
return super.has(addVaultPrefix(key)); | ||
} | ||
|
||
get (key) { | ||
return super.get(addVaultPrefix(key)); | ||
} | ||
|
||
set (key, value, type) { | ||
return super.set(addVaultPrefix(key), value, type); | ||
} | ||
|
||
unset (key) { | ||
return super.unset(addVaultPrefix(key)); | ||
} | ||
|
||
replaceIn (template) { | ||
const values = new VariableList(this, this.values.toJSON().map((v) => { | ||
return { | ||
...v, | ||
key: removeVaultPrefix(v.key) | ||
}; | ||
})); | ||
|
||
if (_.isString(template) || _.isArray(template)) { | ||
// convert template to object because replaceSubstitutionsIn only accepts objects | ||
var result = Property.replaceSubstitutionsIn({ template }, _.concat(values, this._layers)); | ||
|
||
return result.template; | ||
} | ||
|
||
if (_.isObject(template)) { | ||
return Property.replaceSubstitutionsIn(template, _.concat(values, this._layers)); | ||
} | ||
|
||
return template; | ||
} | ||
|
||
applyMutation (instruction, key, value) { | ||
if (this[instruction]) { | ||
this[instruction](removeVaultPrefix(key), value); | ||
} | ||
} | ||
} | ||
|
||
module.exports = { | ||
VaultVariableScope | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.