71 lines
2.6 KiB
JavaScript
71 lines
2.6 KiB
JavaScript
import { inject as service } from '@ember/service';
|
|
import { get } from '@ember/object';
|
|
import ApplicationSerializer from './application';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
const taskGroupFromJob = (job, taskGroupName) => {
|
|
const taskGroups = job && job.TaskGroups;
|
|
const taskGroup = taskGroups && taskGroups.find(group => group.Name === taskGroupName);
|
|
return taskGroup ? taskGroup : null;
|
|
};
|
|
|
|
@classic
|
|
export default class AllocationSerializer extends ApplicationSerializer {
|
|
@service system;
|
|
|
|
attrs = {
|
|
taskGroupName: 'TaskGroup',
|
|
states: 'TaskStates',
|
|
};
|
|
|
|
normalize(typeHash, hash) {
|
|
// Transform the map-based TaskStates object into an array-based
|
|
// TaskState fragment list
|
|
const states = hash.TaskStates || {};
|
|
hash.TaskStates = Object.keys(states).map(key => {
|
|
const state = states[key] || {};
|
|
const summary = { Name: key };
|
|
Object.keys(state).forEach(stateKey => (summary[stateKey] = state[stateKey]));
|
|
summary.Resources = hash.TaskResources && hash.TaskResources[key];
|
|
return summary;
|
|
});
|
|
|
|
hash.JobVersion = hash.JobVersion != null ? hash.JobVersion : get(hash, 'Job.Version');
|
|
|
|
hash.PlainJobId = hash.JobID;
|
|
hash.Namespace =
|
|
hash.Namespace ||
|
|
get(hash, 'Job.Namespace') ||
|
|
this.get('system.activeNamespace.id') ||
|
|
'default';
|
|
hash.JobID = JSON.stringify([hash.JobID, hash.Namespace]);
|
|
|
|
hash.ModifyTimeNanos = hash.ModifyTime % 1000000;
|
|
hash.ModifyTime = Math.floor(hash.ModifyTime / 1000000);
|
|
|
|
hash.CreateTimeNanos = hash.CreateTime % 1000000;
|
|
hash.CreateTime = Math.floor(hash.CreateTime / 1000000);
|
|
|
|
hash.RescheduleEvents = (hash.RescheduleTracker || {}).Events;
|
|
|
|
hash.IsMigrating = (hash.DesiredTransition || {}).Migrate;
|
|
|
|
// API returns empty strings instead of null
|
|
hash.PreviousAllocationID = hash.PreviousAllocation ? hash.PreviousAllocation : null;
|
|
hash.NextAllocationID = hash.NextAllocation ? hash.NextAllocation : null;
|
|
hash.FollowUpEvaluationID = hash.FollowupEvalID ? hash.FollowupEvalID : null;
|
|
|
|
hash.PreemptedAllocationIDs = hash.PreemptedAllocations || [];
|
|
hash.PreemptedByAllocationID = hash.PreemptedByAllocation || null;
|
|
hash.WasPreempted = !!hash.PreemptedByAllocationID;
|
|
|
|
// When present, the resources are nested under AllocatedResources.Shared
|
|
hash.AllocatedResources = hash.AllocatedResources && hash.AllocatedResources.Shared;
|
|
|
|
// The Job definition for an allocation is only included in findRecord responses.
|
|
hash.AllocationTaskGroup = !hash.Job ? null : taskGroupFromJob(hash.Job, hash.TaskGroup);
|
|
|
|
return super.normalize(typeHash, hash);
|
|
}
|
|
}
|