2020-04-21 15:49:11 +00:00
|
|
|
import Controller from '@ember/controller';
|
2020-05-11 15:37:11 +00:00
|
|
|
import { inject as service } from '@ember/service';
|
|
|
|
import { getOwner } from '@ember/application';
|
|
|
|
import { get } from '@ember/object';
|
|
|
|
import transitionable from 'consul-ui/utils/routing/transitionable';
|
2020-04-21 15:49:11 +00:00
|
|
|
|
2020-05-11 15:37:11 +00:00
|
|
|
export default Controller.extend({
|
|
|
|
router: service('router'),
|
|
|
|
store: service('store'),
|
|
|
|
feedback: service('feedback'),
|
|
|
|
actions: {
|
|
|
|
// TODO: We currently do this in the controller instead of the router
|
|
|
|
// as the nspace and dc variables aren't available directly on the Route
|
|
|
|
// look to see if we can move this up there so we can empty the Controller
|
|
|
|
// out again
|
|
|
|
reauthorize: function(e) {
|
|
|
|
// TODO: For the moment e isn't a real event
|
|
|
|
// it has data which is potentially the token
|
|
|
|
// and type which is the logout/authorize/use action
|
|
|
|
// used for the feedback service.
|
|
|
|
this.feedback.execute(
|
|
|
|
() => {
|
2020-05-27 10:23:21 +00:00
|
|
|
// TODO: Currently we clear cache from the ember-data store
|
|
|
|
// ideally this would be a static method of the abstract Repository class
|
|
|
|
// once we move to proper classes for services take another look at this.
|
|
|
|
this.store.clear();
|
|
|
|
//
|
2020-05-11 15:37:11 +00:00
|
|
|
const params = {};
|
|
|
|
if (e.data) {
|
|
|
|
const token = e.data;
|
|
|
|
// TODO: Do I actually need to check to see if nspaces are enabled here?
|
|
|
|
if (typeof this.nspace !== 'undefined') {
|
|
|
|
const nspace = get(token, 'Namespace') || this.nspace.Name;
|
|
|
|
// you potentially have a new namespace
|
|
|
|
// if you do redirect to it
|
|
|
|
if (nspace !== this.nspace.Name) {
|
|
|
|
params.nspace = `~${nspace}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-27 10:23:21 +00:00
|
|
|
const container = getOwner(this);
|
2020-05-11 15:37:11 +00:00
|
|
|
const routeName = this.router.currentRoute.name;
|
2020-05-27 10:23:21 +00:00
|
|
|
const route = container.lookup(`route:${routeName}`);
|
2020-05-12 11:51:49 +00:00
|
|
|
// Refresh the application route
|
2020-05-27 10:23:21 +00:00
|
|
|
return container
|
2020-05-12 11:51:49 +00:00
|
|
|
.lookup('route:application')
|
|
|
|
.refresh()
|
2020-05-27 10:23:21 +00:00
|
|
|
.promise.then(res => {
|
|
|
|
// Use transitionable if we need to change a section of the URL
|
|
|
|
if (
|
|
|
|
routeName !== this.router.currentRouteName ||
|
|
|
|
typeof params.nspace !== 'undefined'
|
|
|
|
) {
|
2020-05-12 11:51:49 +00:00
|
|
|
return route.transitionTo(
|
2020-05-27 10:23:21 +00:00
|
|
|
...transitionable(this.router.currentRoute, params, container)
|
2020-05-12 11:51:49 +00:00
|
|
|
);
|
|
|
|
} else {
|
2020-05-27 10:23:21 +00:00
|
|
|
return res;
|
2020-05-12 11:51:49 +00:00
|
|
|
}
|
|
|
|
});
|
2020-05-11 15:37:11 +00:00
|
|
|
},
|
|
|
|
e.type,
|
|
|
|
function(type, e) {
|
|
|
|
return type;
|
|
|
|
},
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|