55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
import { inject as service } from '@ember/service';
|
|
import Route from 'consul-ui/routing/route';
|
|
import { hash } from 'rsvp';
|
|
import { get } from '@ember/object';
|
|
import WithTokenActions from 'consul-ui/mixins/token/with-actions';
|
|
|
|
export default class IndexRoute extends Route.extend(WithTokenActions) {
|
|
@service('repository/token') repo;
|
|
@service('settings') settings;
|
|
|
|
queryParams = {
|
|
sortBy: 'sort',
|
|
kind: 'kind',
|
|
searchproperty: {
|
|
as: 'searchproperty',
|
|
empty: [['AccessorID', 'Description', 'Role', 'Policy']],
|
|
},
|
|
search: {
|
|
as: 'filter',
|
|
replace: true,
|
|
},
|
|
};
|
|
|
|
async beforeModel(transition) {
|
|
const token = await this.settings.findBySlug('token');
|
|
// If you have a token set with AccessorID set to null (legacy mode)
|
|
// then rewrite to the old acls
|
|
if (token && get(token, 'AccessorID') === null) {
|
|
// If you return here, you get a TransitionAborted error in the tests only
|
|
// everything works fine either way checking things manually
|
|
this.replaceWith('dc.acls');
|
|
}
|
|
}
|
|
|
|
model(params) {
|
|
const nspace = this.optionalParams().nspace;
|
|
return hash({
|
|
...this.repo.status({
|
|
items: this.repo.findAllByDatacenter({
|
|
ns: nspace,
|
|
dc: this.modelFor('dc').dc.Name,
|
|
}),
|
|
}),
|
|
nspace: nspace,
|
|
token: this.settings.findBySlug('token'),
|
|
searchProperties: this.queryParams.searchproperty.empty[0],
|
|
});
|
|
}
|
|
|
|
setupController(controller, model) {
|
|
super.setupController(...arguments);
|
|
controller.setProperties(model);
|
|
}
|
|
}
|