41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
import { assign } from '@ember/polyfills';
|
|
import { inject as service } from '@ember/service';
|
|
import ApplicationSerializer from './application';
|
|
|
|
export default class NodeSerializer extends ApplicationSerializer {
|
|
@service config;
|
|
|
|
attrs = {
|
|
isDraining: 'Drain',
|
|
httpAddr: 'HTTPAddr',
|
|
};
|
|
|
|
normalize(modelClass, hash) {
|
|
// Transform map-based objects into array-based fragment lists
|
|
const drivers = hash.Drivers || {};
|
|
hash.Drivers = Object.keys(drivers).map(key => {
|
|
return assign({}, drivers[key], { Name: key });
|
|
});
|
|
|
|
const hostVolumes = hash.HostVolumes || {};
|
|
hash.HostVolumes = Object.keys(hostVolumes).map(key => hostVolumes[key]);
|
|
|
|
return super.normalize(modelClass, hash);
|
|
}
|
|
|
|
extractRelationships(modelClass, hash) {
|
|
const { modelName } = modelClass;
|
|
const nodeURL = this.store
|
|
.adapterFor(modelName)
|
|
.buildURL(modelName, this.extractId(modelClass, hash), hash, 'findRecord');
|
|
|
|
return {
|
|
allocations: {
|
|
links: {
|
|
related: `${nodeURL}/allocations`,
|
|
},
|
|
},
|
|
};
|
|
}
|
|
}
|