2018-05-22 15:03:45 +00:00
|
|
|
import Route from '@ember/routing/route';
|
|
|
|
import { inject as service } from '@ember/service';
|
|
|
|
import { hash } from 'rsvp';
|
|
|
|
import { get } from '@ember/object';
|
|
|
|
|
|
|
|
import WithAclActions from 'consul-ui/mixins/intention/with-actions';
|
|
|
|
|
|
|
|
export default Route.extend(WithAclActions, {
|
2018-10-26 16:36:15 +00:00
|
|
|
repo: service('repository/intention'),
|
|
|
|
servicesRepo: service('repository/service'),
|
2018-05-22 15:03:45 +00:00
|
|
|
model: function(params) {
|
|
|
|
return hash({
|
|
|
|
isLoading: false,
|
|
|
|
item: get(this, 'repo').findBySlug(params.id, this.modelFor('dc').dc.Name),
|
2018-05-24 08:52:07 +00:00
|
|
|
items: get(this, 'servicesRepo').findAllByDatacenter(this.modelFor('dc').dc.Name),
|
2018-05-22 15:03:45 +00:00
|
|
|
intents: ['allow', 'deny'],
|
2018-06-08 12:20:13 +00:00
|
|
|
}).then(function(model) {
|
|
|
|
return {
|
|
|
|
...model,
|
|
|
|
...{
|
2018-06-19 13:54:57 +00:00
|
|
|
items: [{ Name: '*' }].concat(
|
2018-06-20 19:54:27 +00:00
|
|
|
model.items.toArray().filter(item => get(item, 'Kind') !== 'connect-proxy')
|
2018-06-19 13:54:57 +00:00
|
|
|
),
|
2018-06-08 12:20:13 +00:00
|
|
|
},
|
|
|
|
};
|
2018-05-22 15:03:45 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
setupController: function(controller, model) {
|
|
|
|
this._super(...arguments);
|
|
|
|
controller.setProperties(model);
|
|
|
|
},
|
|
|
|
});
|