open-nomad/ui/app/adapters/job.js

88 lines
2.3 KiB
JavaScript
Raw Normal View History

import { inject as service } from '@ember/service';
import { assign } from '@ember/polyfills';
import Watchable from './watchable';
2017-09-19 14:47:10 +00:00
export default Watchable.extend({
system: service(),
buildQuery() {
const namespace = this.get('system.activeNamespace.id');
if (namespace && namespace !== 'default') {
return { namespace };
}
2018-02-16 02:55:59 +00:00
return {};
},
2017-10-10 16:36:15 +00:00
findAll() {
const namespace = this.get('system.activeNamespace');
return this._super(...arguments).then(data => {
data.forEach(job => {
job.Namespace = namespace ? namespace.get('id') : 'default';
2017-10-10 16:36:15 +00:00
});
return data;
});
},
findRecordSummary(modelName, name, snapshot, namespaceQuery) {
return this.ajax(`${this.buildURL(modelName, name, snapshot, 'findRecord')}/summary`, 'GET', {
data: assign(this.buildQuery() || {}, namespaceQuery),
});
},
findRecord(store, type, id, snapshot) {
const [, namespace] = JSON.parse(id);
const namespaceQuery = namespace && namespace !== 'default' ? { namespace } : {};
return this._super(store, type, id, snapshot, namespaceQuery);
},
urlForFindRecord(id, type, hash) {
const [name, namespace] = JSON.parse(id);
let url = this._super(name, type, hash);
if (namespace && namespace !== 'default') {
2018-02-16 02:55:59 +00:00
url += `?namespace=${namespace}`;
}
return url;
2017-09-19 14:47:10 +00:00
},
xhrKey(url, method, options = {}) {
const namespace = options.data && options.data.namespace;
if (namespace) {
return `${url}?namespace=${namespace}`;
}
return url;
},
relationshipFallbackLinks: {
summary: '/summary',
},
2017-09-19 14:47:10 +00:00
findAllocations(job) {
const url = `${this.buildURL('job', job.get('id'), job, 'findRecord')}/allocations`;
return this.ajax(url, 'GET', { data: this.buildQuery() }).then(allocs => {
2017-09-19 14:47:10 +00:00
return this.store.pushPayload('allocation', {
allocations: allocs,
});
});
},
fetchRawDefinition(job) {
2018-02-16 02:55:59 +00:00
const url = this.buildURL('job', job.get('id'), job, 'findRecord');
return this.ajax(url, 'GET', { data: this.buildQuery() });
2017-09-19 14:47:10 +00:00
},
forcePeriodic(job) {
if (job.get('periodic')) {
2018-02-16 02:55:59 +00:00
const [path, params] = this.buildURL('job', job.get('id'), job, 'findRecord').split('?');
let url = `${path}/periodic/force`;
2018-02-16 02:55:59 +00:00
if (params) {
url += `?${params}`;
}
return this.ajax(url, 'POST');
}
},
2017-09-19 14:47:10 +00:00
});