2018-04-03 14:16:57 +00:00
|
|
|
import Ember from 'ember';
|
2018-07-19 01:59:04 +00:00
|
|
|
import ControlGroupError from 'vault/lib/control-group-error';
|
2018-04-03 14:16:57 +00:00
|
|
|
|
2018-07-19 01:59:04 +00:00
|
|
|
const { inject } = Ember;
|
2018-04-03 14:16:57 +00:00
|
|
|
export default Ember.Route.extend({
|
2018-07-19 01:59:04 +00:00
|
|
|
controlGroup: inject.service(),
|
2018-08-16 17:48:24 +00:00
|
|
|
routing: inject.service('router'),
|
|
|
|
namespaceService: inject.service('namespace'),
|
2018-07-19 01:59:04 +00:00
|
|
|
|
2018-04-03 14:16:57 +00:00
|
|
|
actions: {
|
|
|
|
willTransition() {
|
|
|
|
window.scrollTo(0, 0);
|
|
|
|
},
|
2018-08-16 17:48:24 +00:00
|
|
|
error(error, transition) {
|
2018-07-19 01:59:04 +00:00
|
|
|
let controlGroup = this.get('controlGroup');
|
2018-08-16 17:48:24 +00:00
|
|
|
if (error instanceof ControlGroupError) {
|
|
|
|
return controlGroup.handleError(error, transition);
|
2018-07-19 01:59:04 +00:00
|
|
|
}
|
2018-08-16 17:48:24 +00:00
|
|
|
if (error.path === '/v1/sys/wrapping/unwrap') {
|
2018-07-19 01:59:04 +00:00
|
|
|
controlGroup.unmarkTokenForUnwrap();
|
|
|
|
}
|
2018-08-16 17:48:24 +00:00
|
|
|
|
|
|
|
let router = this.get('routing');
|
|
|
|
let errorURL = transition.intent.url;
|
|
|
|
let { name, contexts, queryParams } = transition.intent;
|
|
|
|
|
|
|
|
// If the transition is internal to Ember, we need to generate the URL
|
|
|
|
// from the route parameters ourselves
|
|
|
|
if (!errorURL) {
|
|
|
|
try {
|
|
|
|
errorURL = router.urlFor(name, ...(contexts || []), { queryParams });
|
|
|
|
} catch (e) {
|
|
|
|
// If this fails, something weird is happening with URL transitions
|
|
|
|
errorURL = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// because we're using rootURL, we need to trim this from the front to get
|
|
|
|
// the ember-routeable url
|
|
|
|
if (errorURL) {
|
|
|
|
errorURL = errorURL.replace('/ui', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
error.errorURL = errorURL;
|
|
|
|
|
|
|
|
// if we have queryParams, update the namespace so that the observer can fire on the controller
|
|
|
|
if (queryParams) {
|
|
|
|
this.controllerFor('vault.cluster').set('namespaceQueryParam', queryParams.namespace || '');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assuming we have a URL, push it into browser history and update the
|
|
|
|
// location bar for the user
|
|
|
|
if (errorURL) {
|
|
|
|
router.get('location').setURL(errorURL);
|
|
|
|
}
|
|
|
|
|
2018-07-19 01:59:04 +00:00
|
|
|
return true;
|
|
|
|
},
|
2018-04-03 14:16:57 +00:00
|
|
|
},
|
|
|
|
});
|