mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 11:07:00 +02:00
* Update browserslist * Add browserslistrc * ember-cli-update --to 3.26, fix conflicts * Run codemodes that start with ember-* * More codemods - before cp* * More codemods (curly data-test-*) * WIP ember-basic-dropdown template errors * updates ember-basic-dropdown and related deps to fix build issues * updates basic dropdown instances to new version API * updates more deps -- ember-template-lint is working again * runs no-implicit-this codemod * creates and runs no-quoteless-attributes codemod * runs angle brackets codemod * updates lint:hbs globs to only touch hbs files * removes yield only templates * creates and runs deprecated args transform * supresses lint error for invokeAction on LinkTo component * resolves remaining ambiguous path lint errors * resolves simple-unless lint errors * adds warnings for deprecated tagName arg on LinkTo components * adds warnings for remaining curly component invocation * updates global template lint rules * resolves remaining template lint errors * disables some ember specfic lint rules that target pre octane patterns * js lint fix run * resolves remaining js lint errors * fixes test run * adds npm-run-all dep * fixes test attribute issues * fixes console acceptance tests * fixes tests * adds yield only wizard/tutorial-active template * fixes more tests * attempts to fix more flaky tests * removes commented out settled in transit test * updates deprecations workflow and adds initializer to filter by version * updates flaky policies acl old test * updates to flaky transit test * bumps ember deps down to LTS version * runs linters after main merge * fixes client count tests after bad merge conflict fixes * fixes client count history test * more updates to lint config * another round of hbs lint fixes after extending stylistic rule * updates lint-staged commands * removes indent eslint rule since it seems to break things * fixes bad attribute in transform-edit-form template * test fixes * fixes enterprise tests * adds changelog * removes deprecated ember-concurrency-test-waiters dep and adds @ember/test-waiters * flaky test fix Co-authored-by: hashishaw <cshaw@hashicorp.com>
152 lines
4.0 KiB
JavaScript
152 lines
4.0 KiB
JavaScript
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;
|
|
},
|
|
},
|
|
});
|