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 repo = get(this, 'repo');
|
|
|
|
const proxyRepo = get(this, 'proxyRepo');
|
|
|
|
const dc = this.modelFor('dc').dc.Name;
|
|
|
|
return hash({
|
2019-06-11 09:18:50 +00:00
|
|
|
item: repo.findInstanceBySlug(params.id, params.node, params.name, dc),
|
2019-02-21 13:10:53 +00:00
|
|
|
}).then(function(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-03-07 10:51:39 +00:00
|
|
|
get(model.item, 'Kind') === 'connect-proxy'
|
|
|
|
? null
|
2019-06-11 09:18:50 +00:00
|
|
|
: proxyRepo.findInstanceBySlug(params.id, params.node, params.name, dc),
|
2019-02-21 13:10:53 +00:00
|
|
|
...model,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
setupController: function(controller, model) {
|
|
|
|
controller.setProperties(model);
|
|
|
|
},
|
|
|
|
});
|