mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 13:41:10 +02:00
* use alias for router injection * update @router declarations in engine files * fix remaining pki router imports * dynamically set router based on owner * address replication routers * update markdown docs * use non-deprecated import for getOwner * revert out of scope changes * add transition-to test
153 lines
3.7 KiB
JavaScript
153 lines
3.7 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { isPresent } from '@ember/utils';
|
|
import { alias } from '@ember/object/computed';
|
|
import { service } from '@ember/service';
|
|
import Controller from '@ember/controller';
|
|
import { resolve } from 'rsvp';
|
|
import decodeConfigFromJWT from 'replication/utils/decode-config-from-jwt';
|
|
import { buildWaiter } from '@ember/test-waiters';
|
|
|
|
const DEFAULTS = {
|
|
token: null,
|
|
id: null,
|
|
loading: false,
|
|
errors: [],
|
|
primary_api_addr: null,
|
|
primary_cluster_addr: null,
|
|
filterConfig: {
|
|
mode: null,
|
|
paths: [],
|
|
},
|
|
};
|
|
const waiter = buildWaiter('replication-actions');
|
|
|
|
export default Controller.extend(structuredClone(DEFAULTS), {
|
|
isModalActive: false,
|
|
isTokenCopied: false,
|
|
expirationDate: null,
|
|
router: service('app-router'),
|
|
store: service(),
|
|
rm: service('replication-mode'),
|
|
replicationMode: alias('rm.mode'),
|
|
secondaryToRevoke: null,
|
|
|
|
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(structuredClone(DEFAULTS));
|
|
},
|
|
|
|
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 waiterToken = waiter.beginAsync();
|
|
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)
|
|
)
|
|
.finally(() => {
|
|
this.set('secondaryToRevoke', null);
|
|
waiter.endAsync(waiterToken);
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
onSubmit(/*action, mode, data, event*/) {
|
|
return this.submitHandler(...arguments);
|
|
},
|
|
closeTokenModal() {
|
|
this.toggleProperty('isModalActive');
|
|
this.router.transitionTo('vault.cluster.replication.mode.secondaries');
|
|
this.set('isTokenCopied', false);
|
|
},
|
|
onCopy() {
|
|
this.set('isTokenCopied', true);
|
|
},
|
|
clear() {
|
|
this.reset();
|
|
this.setProperties({
|
|
token: null,
|
|
id: null,
|
|
});
|
|
},
|
|
refresh() {
|
|
// bubble to the route
|
|
return true;
|
|
},
|
|
},
|
|
});
|