mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-10 00:27:02 +02:00
130 lines
4.3 KiB
JavaScript
130 lines
4.3 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { action } from '@ember/object';
|
|
import { tracked } from '@glimmer/tracking';
|
|
import { task } from 'ember-concurrency';
|
|
import { inject as service } from '@ember/service';
|
|
import { pathIsFromDirectory } from 'kv/utils/kv-breadcrumbs';
|
|
import errorMessage from 'vault/utils/error-message';
|
|
|
|
/**
|
|
* @module KvSecretCreate is used for creating the initial version of a secret
|
|
*
|
|
* <Page::Secrets::Create
|
|
* @secret={{this.model.secret}}
|
|
* @metadata={{this.model.metadata}}
|
|
* @breadcrumbs={{this.breadcrumbs}}
|
|
* />
|
|
*
|
|
* @param {model} secret - Ember data model: 'kv/data', the new record saved by the form
|
|
* @param {model} metadata - Ember data model: 'kv/metadata'
|
|
* @param {array} breadcrumbs - breadcrumb objects to render in page header
|
|
*/
|
|
|
|
export default class KvSecretCreate extends Component {
|
|
@service controlGroup;
|
|
@service flashMessages;
|
|
@service router;
|
|
@service store;
|
|
|
|
@tracked showJsonView = false;
|
|
@tracked errorMessage;
|
|
@tracked modelValidations;
|
|
@tracked invalidFormAlert;
|
|
|
|
@action
|
|
pathValidations() {
|
|
// check path attribute warnings on key up
|
|
const { state } = this.args.secret.validate();
|
|
if (state?.path?.warnings) {
|
|
// only set model validations if warnings exist
|
|
this.modelValidations = state;
|
|
}
|
|
}
|
|
|
|
@task
|
|
*save(event) {
|
|
event.preventDefault();
|
|
this.resetErrors();
|
|
|
|
const { isValid, state } = this.validate();
|
|
this.modelValidations = isValid ? null : state;
|
|
this.invalidFormAlert = isValid ? '' : 'There is an error with this form.';
|
|
|
|
const { secret, metadata } = this.args;
|
|
if (isValid) {
|
|
try {
|
|
// try saving secret data first
|
|
yield secret.save();
|
|
this.store.clearDataset('kv/metadata'); // Clear out the store cache so that the metadata/list view is updated.
|
|
this.flashMessages.success(`Successfully saved secret data for: ${secret.path}.`);
|
|
} catch (error) {
|
|
let message = errorMessage(error);
|
|
if (error.message === 'Control Group encountered') {
|
|
this.controlGroup.saveTokenFromError(error);
|
|
const err = this.controlGroup.logFromError(error);
|
|
message = err.content;
|
|
}
|
|
this.errorMessage = message;
|
|
}
|
|
|
|
// users must have permission to create secret data to create metadata in the UI
|
|
// only attempt to save metadata if secret data saves successfully and metadata is edited
|
|
if (secret.createdTime && this.hasChanged(metadata)) {
|
|
try {
|
|
metadata.path = secret.path;
|
|
yield metadata.save();
|
|
this.flashMessages.success(`Successfully saved metadata.`);
|
|
} catch (error) {
|
|
this.flashMessages.danger(`Secret data was saved but metadata was not: ${errorMessage(error)}`, {
|
|
sticky: true,
|
|
});
|
|
}
|
|
}
|
|
|
|
// prevent transition if there are errors with secret data
|
|
if (this.errorMessage) {
|
|
this.invalidFormAlert = 'There was an error submitting this form.';
|
|
} else {
|
|
this.router.transitionTo('vault.cluster.secrets.backend.kv.secret.details', secret.path);
|
|
}
|
|
}
|
|
}
|
|
|
|
@action
|
|
onCancel() {
|
|
const { path } = this.args.secret;
|
|
pathIsFromDirectory(path)
|
|
? this.router.transitionTo('vault.cluster.secrets.backend.kv.list-directory', path)
|
|
: this.router.transitionTo('vault.cluster.secrets.backend.kv.list');
|
|
}
|
|
|
|
// HELPERS
|
|
|
|
validate() {
|
|
const dataValidations = this.args.secret.validate();
|
|
const metadataValidations = this.args.metadata.validate();
|
|
const state = { ...dataValidations.state, ...metadataValidations.state };
|
|
const failed = !dataValidations.isValid || !metadataValidations.isValid;
|
|
return { state, isValid: !failed };
|
|
}
|
|
|
|
hasChanged(model) {
|
|
const fieldName = model.formFields.map((attr) => attr.name);
|
|
const changedAttrs = Object.keys(model.changedAttributes());
|
|
// exclusively check if form field attributes have changed ('backend' and 'path' are passed to createRecord)
|
|
return changedAttrs.any((attr) => fieldName.includes(attr));
|
|
}
|
|
|
|
resetErrors() {
|
|
this.flashMessages.clearMessages();
|
|
this.errorMessage = null;
|
|
this.modelValidations = null;
|
|
this.invalidFormAlert = null;
|
|
}
|
|
}
|