open-vault/ui/app/components/wizard/mounts-wizard.js
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

78 lines
2.6 KiB
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { inject as service } from '@ember/service';
import { alias, equal } from '@ember/object/computed';
import Component from '@ember/component';
import { computed } from '@ember/object';
import { mountableEngines } from 'vault/helpers/mountable-secret-engines';
import { methods } from 'vault/helpers/mountable-auth-methods';
import { supportedSecretBackends } from 'vault/helpers/supported-secret-backends';
const supportedSecrets = supportedSecretBackends();
import { supportedAuthBackends } from 'vault/helpers/supported-auth-backends';
const supportedAuth = supportedAuthBackends();
export default Component.extend({
wizard: service(),
featureState: alias('wizard.featureState'),
currentState: alias('wizard.currentState'),
currentMachine: alias('wizard.currentMachine'),
mountSubtype: alias('wizard.componentState'),
fullNextStep: alias('wizard.nextStep'),
nextFeature: alias('wizard.nextFeature'),
nextStep: computed('fullNextStep', function () {
return this.fullNextStep.split('.').lastObject;
}),
needsConnection: equal('mountSubtype', 'database'),
needsEncryption: equal('mountSubtype', 'transit'),
stepComponent: alias('wizard.stepComponent'),
detailsComponent: computed('currentMachine', 'mountSubtype', function () {
const suffix = this.currentMachine === 'secrets' ? 'engine' : 'method';
return this.mountSubtype ? `wizard/${this.mountSubtype}-${suffix}` : null;
}),
isSupported: computed('currentMachine', 'mountSubtype', function () {
if (this.currentMachine === 'secrets') {
return supportedSecrets.includes(this.mountSubtype);
} else {
return supportedAuth.includes(this.mountSubtype);
}
}),
mountName: computed('currentMachine', 'mountSubtype', function () {
if (this.currentMachine === 'secrets') {
const secret = mountableEngines().find((engine) => {
return engine.type === this.mountSubtype;
});
if (secret) {
return secret.displayName;
}
} else {
var auth = methods().find((method) => {
return method.type === this.mountSubtype;
});
if (auth) {
return auth.displayName;
}
}
return null;
}),
actionText: computed('mountSubtype', function () {
switch (this.mountSubtype) {
case 'aws':
return 'Generate credential';
case 'ssh':
return 'Sign keys';
case 'pki':
return 'Generate certificate';
default:
return null;
}
}),
onAdvance() {},
onRepeat() {},
onReset() {},
onDone() {},
});