mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 19:47:02 +02:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
157 lines
4.1 KiB
JavaScript
157 lines
4.1 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { isPresent } from '@ember/utils';
|
|
import { alias } from '@ember/object/computed';
|
|
import { inject as service } from '@ember/service';
|
|
import Controller from '@ember/controller';
|
|
import { copy } from 'ember-copy';
|
|
import { resolve } from 'rsvp';
|
|
import decodeConfigFromJWT from 'replication/utils/decode-config-from-jwt';
|
|
|
|
const DEFAULTS = {
|
|
token: null,
|
|
id: null,
|
|
loading: false,
|
|
errors: [],
|
|
primary_api_addr: null,
|
|
primary_cluster_addr: null,
|
|
filterConfig: {
|
|
mode: null,
|
|
paths: [],
|
|
},
|
|
};
|
|
|
|
export default Controller.extend(copy(DEFAULTS, true), {
|
|
isModalActive: false,
|
|
expirationDate: null,
|
|
store: service(),
|
|
rm: service('replication-mode'),
|
|
replicationMode: alias('rm.mode'),
|
|
flashMessages: service(),
|
|
|
|
submitError(e) {
|
|
if (e.errors) {
|
|
this.set('errors', e.errors);
|
|
} else {
|
|
throw e;
|
|
}
|
|
},
|
|
|
|
saveFilterConfig() {
|
|
const config = this.filterConfig;
|
|
const id = this.id;
|
|
config.id = id;
|
|
// if there is no mode, then they don't want to filter, so we don't save a filter config
|
|
if (!config.mode) {
|
|
return resolve();
|
|
}
|
|
const configRecord = this.store.createRecord('path-filter-config', config);
|
|
return configRecord.save().catch((e) => this.submitError(e));
|
|
},
|
|
|
|
reset() {
|
|
this.setProperties(copy(DEFAULTS, true));
|
|
},
|
|
|
|
submitSuccess(resp, action) {
|
|
const cluster = this.model;
|
|
if (!cluster) {
|
|
return;
|
|
}
|
|
|
|
if (resp && resp.wrap_info) {
|
|
this.set('token', resp.wrap_info.token);
|
|
}
|
|
if (action === 'secondary-token') {
|
|
this.setProperties({
|
|
loading: false,
|
|
primary_api_addr: null,
|
|
primary_cluster_addr: null,
|
|
});
|
|
|
|
// decode token and return epoch expiration, convert to timestamp
|
|
const expirationDate = new Date(decodeConfigFromJWT(this.token).exp * 1000);
|
|
this.set('expirationDate', expirationDate);
|
|
|
|
// open modal
|
|
this.toggleProperty('isModalActive');
|
|
return cluster.reload();
|
|
}
|
|
this.reset();
|
|
this.send('refresh');
|
|
return;
|
|
},
|
|
|
|
submitHandler(action, clusterMode, data, event) {
|
|
const replicationMode = this.replicationMode;
|
|
if (event && event.preventDefault) {
|
|
event.preventDefault();
|
|
}
|
|
this.setProperties({
|
|
loading: true,
|
|
errors: [],
|
|
});
|
|
if (data) {
|
|
data = Object.keys(data).reduce((newData, key) => {
|
|
var val = data[key];
|
|
if (isPresent(val)) {
|
|
newData[key] = val;
|
|
}
|
|
return newData;
|
|
}, {});
|
|
}
|
|
|
|
return this.store
|
|
.adapterFor('cluster')
|
|
.replicationAction(action, replicationMode, clusterMode, data)
|
|
.then(
|
|
(resp) => {
|
|
return this.saveFilterConfig().then(() => {
|
|
return this.submitSuccess(resp, action, clusterMode);
|
|
});
|
|
},
|
|
(...args) => this.submitError(...args)
|
|
);
|
|
},
|
|
|
|
actions: {
|
|
onSubmit(/*action, mode, data, event*/) {
|
|
return this.submitHandler(...arguments);
|
|
},
|
|
copyClose(successMessage) {
|
|
// separate action for copy & close button so it does not try and use execCommand to copy token to clipboard
|
|
if (!!successMessage && typeof successMessage === 'string') {
|
|
this.flashMessages.success(successMessage);
|
|
}
|
|
this.toggleProperty('isModalActive');
|
|
this.transitionToRoute('mode.secondaries');
|
|
},
|
|
toggleModal(successMessage) {
|
|
if (!!successMessage && typeof successMessage === 'string') {
|
|
this.flashMessages.success(successMessage);
|
|
}
|
|
// use copy browser extension to copy token if you close the modal by clicking outside of it.
|
|
const htmlSelectedToken = document.querySelector('#token-textarea');
|
|
htmlSelectedToken.select();
|
|
document.execCommand('copy');
|
|
|
|
this.toggleProperty('isModalActive');
|
|
this.transitionToRoute('mode.secondaries');
|
|
},
|
|
clear() {
|
|
this.reset();
|
|
this.setProperties({
|
|
token: null,
|
|
id: null,
|
|
});
|
|
},
|
|
refresh() {
|
|
// bubble to the route
|
|
return true;
|
|
},
|
|
},
|
|
});
|