2019-02-21 13:10:53 +00:00
|
|
|
import Route from '@ember/routing/route';
|
|
|
|
import { inject as service } from '@ember/service';
|
|
|
|
import { hash } from 'rsvp';
|
|
|
|
import { get } from '@ember/object';
|
|
|
|
|
|
|
|
export default Route.extend({
|
|
|
|
repo: service('repository/service'),
|
|
|
|
proxyRepo: service('repository/proxy'),
|
|
|
|
model: function(params) {
|
|
|
|
const dc = this.modelFor('dc').dc.Name;
|
2019-12-17 18:47:37 +00:00
|
|
|
const nspace = this.modelFor('nspace').nspace.substr(1);
|
2019-02-21 13:10:53 +00:00
|
|
|
return hash({
|
2019-12-17 18:47:37 +00:00
|
|
|
item: this.repo.findInstanceBySlug(params.id, params.node, params.name, dc, nspace),
|
|
|
|
}).then(model => {
|
2019-03-22 17:24:40 +00:00
|
|
|
// this will not be run in a blocking loop, but this is ok as
|
|
|
|
// its highly unlikely that a service will suddenly change to being a
|
|
|
|
// connect-proxy or vice versa so leave as is for now
|
2019-02-21 13:10:53 +00:00
|
|
|
return hash({
|
|
|
|
proxy:
|
2019-07-05 08:07:25 +00:00
|
|
|
// proxies and mesh-gateways can't have proxies themselves so don't even look
|
|
|
|
['connect-proxy', 'mesh-gateway'].includes(get(model.item, 'Kind'))
|
2019-03-07 10:51:39 +00:00
|
|
|
? null
|
2019-12-17 18:47:37 +00:00
|
|
|
: this.proxyRepo.findInstanceBySlug(params.id, params.node, params.name, dc, nspace),
|
2019-02-21 13:10:53 +00:00
|
|
|
...model,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
setupController: function(controller, model) {
|
|
|
|
controller.setProperties(model);
|
|
|
|
},
|
|
|
|
});
|