2017-12-15 21:39:18 +00:00
|
|
|
import { inject as service } from '@ember/service';
|
2017-09-19 14:47:10 +00:00
|
|
|
import ApplicationSerializer from './application';
|
|
|
|
|
2020-06-11 21:23:00 +00:00
|
|
|
export default class NodeSerializer extends ApplicationSerializer {
|
|
|
|
@service config;
|
2017-10-17 01:39:32 +00:00
|
|
|
|
2020-06-11 21:23:00 +00:00
|
|
|
attrs = {
|
2018-05-29 17:05:16 +00:00
|
|
|
isDraining: 'Drain',
|
2017-09-19 14:47:10 +00:00
|
|
|
httpAddr: 'HTTPAddr',
|
2020-10-12 22:26:54 +00:00
|
|
|
resources: 'NodeResources',
|
|
|
|
reserved: 'ReservedResources',
|
2020-06-11 21:23:00 +00:00
|
|
|
};
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2020-08-20 17:14:49 +00:00
|
|
|
mapToArray = ['Drivers', 'HostVolumes'];
|
2017-10-17 01:39:32 +00:00
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
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`,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2020-06-11 21:23:00 +00:00
|
|
|
}
|
|
|
|
}
|