2018-10-19 15:17:02 +00:00
|
|
|
import SingleRoute from 'consul-ui/routing/single';
|
|
|
|
import { inject as service } from '@ember/service';
|
|
|
|
import { hash } from 'rsvp';
|
|
|
|
import { get } from '@ember/object';
|
|
|
|
|
|
|
|
import WithPolicyActions from 'consul-ui/mixins/policy/with-actions';
|
|
|
|
|
|
|
|
export default SingleRoute.extend(WithPolicyActions, {
|
2018-10-26 17:40:51 +00:00
|
|
|
repo: service('repository/policy'),
|
|
|
|
tokenRepo: service('repository/token'),
|
|
|
|
datacenterRepo: service('repository/dc'),
|
2018-10-19 15:17:02 +00:00
|
|
|
model: function(params) {
|
|
|
|
const dc = this.modelFor('dc').dc.Name;
|
2018-10-26 17:40:51 +00:00
|
|
|
const tokenRepo = get(this, 'tokenRepo');
|
2018-10-19 15:17:02 +00:00
|
|
|
return this._super(...arguments).then(model => {
|
|
|
|
return hash({
|
|
|
|
...model,
|
|
|
|
...{
|
|
|
|
datacenters: get(this, 'datacenterRepo').findAll(),
|
2018-10-26 17:40:51 +00:00
|
|
|
items: tokenRepo.findByPolicy(get(model.item, 'ID'), dc).catch(function(e) {
|
2018-10-19 15:17:02 +00:00
|
|
|
switch (get(e, 'errors.firstObject.status')) {
|
|
|
|
case '403':
|
|
|
|
case '401':
|
|
|
|
// do nothing the SingleRoute will have caught it already
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
throw e;
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
setupController: function(controller, model) {
|
|
|
|
this._super(...arguments);
|
|
|
|
controller.setProperties(model);
|
|
|
|
},
|
|
|
|
});
|