42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
import Ember from 'ember';
|
|
import { computed } from '@ember/object';
|
|
import { inject as service } from '@ember/service';
|
|
import Route from '@ember/routing/route';
|
|
import ModelBoundaryRoute from 'vault/mixins/model-boundary-route';
|
|
|
|
export default Route.extend(ModelBoundaryRoute, {
|
|
auth: service(),
|
|
controlGroup: service(),
|
|
flashMessages: service(),
|
|
console: service(),
|
|
permissions: service(),
|
|
namespaceService: service('namespace'),
|
|
|
|
modelTypes: computed(function() {
|
|
return ['secret', 'secret-engine'];
|
|
}),
|
|
|
|
beforeModel() {
|
|
const authType = this.auth.getAuthType();
|
|
const baseUrl = window.location.origin;
|
|
const ns = this.namespaceService.path;
|
|
this.auth.deleteCurrentToken();
|
|
this.controlGroup.deleteTokens();
|
|
this.namespaceService.reset();
|
|
this.console.set('isOpen', false);
|
|
this.console.clearLog(true);
|
|
this.flashMessages.clearMessages();
|
|
this.permissions.reset();
|
|
if (Ember.testing) {
|
|
// Don't redirect on the test
|
|
this.replaceWith('vault.cluster.auth', { queryParams: { with: authType } });
|
|
} else {
|
|
let params = `?with=${authType}`;
|
|
if (ns) {
|
|
params = `${params}&namespace=${ns}`;
|
|
}
|
|
location.assign(`${baseUrl}/ui/vault/auth${params}`);
|
|
}
|
|
},
|
|
});
|