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, set } from '@ember/object';
|
|
|
|
import WithIntentionActions from 'consul-ui/mixins/intention/with-actions';
|
|
|
|
|
|
|
|
export default Route.extend(WithIntentionActions, {
|
|
|
|
templateName: 'dc/intentions/edit',
|
2018-10-26 16:36:15 +00:00
|
|
|
repo: service('repository/intention'),
|
|
|
|
servicesRepo: service('repository/service'),
|
2018-05-22 15:03:45 +00:00
|
|
|
beforeModel: function() {
|
|
|
|
get(this, 'repo').invalidate();
|
|
|
|
},
|
|
|
|
model: function(params) {
|
|
|
|
this.item = get(this, 'repo').create();
|
|
|
|
set(this.item, 'Datacenter', this.modelFor('dc').dc.Name);
|
|
|
|
return hash({
|
|
|
|
create: true,
|
|
|
|
isLoading: false,
|
|
|
|
item: this.item,
|
2018-06-05 16:09:26 +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);
|
|
|
|
},
|
|
|
|
deactivate: function() {
|
|
|
|
if (get(this.item, 'isNew')) {
|
|
|
|
this.item.destroyRecord();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|