mirror of
https://github.com/yldio/copilot.git
synced 2024-11-16 00:00:06 +02:00
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
const {
|
|
datacenter,
|
|
portal,
|
|
deploymentGroups,
|
|
services,
|
|
instances
|
|
} = require('./data.json');
|
|
|
|
const find = (query = {}) => item =>
|
|
Object.keys(query).every(key => item[key] === query[key]);
|
|
|
|
const cleanQuery = (q = {}) => JSON.parse(JSON.stringify(q));
|
|
|
|
const getServiceInstances = s =>
|
|
Object.assign({}, s, {
|
|
instances: instances.filter(find({ service: s.id })).map(s =>
|
|
Object.assign({}, s, {
|
|
slug: s.name
|
|
})
|
|
)
|
|
});
|
|
|
|
const getDeploymentGroupServices = dg =>
|
|
Object.assign({}, dg, {
|
|
services: services
|
|
.filter(find({ deploymentGroup: dg.id }))
|
|
.map(getServiceInstances)
|
|
});
|
|
|
|
const getDeploymentGroups = query =>
|
|
deploymentGroups
|
|
.filter(find(cleanQuery(query)))
|
|
.map(getDeploymentGroupServices);
|
|
|
|
const getPortal = () =>
|
|
Object.assign({}, portal, {
|
|
datacenter,
|
|
deploymentGroups: getDeploymentGroups()
|
|
});
|
|
|
|
const getServices = query =>
|
|
services.filter(find(query)).map(getDeploymentGroupServices);
|
|
|
|
module.exports = {
|
|
portal: (options, request, fn) => fn(null, getPortal()),
|
|
deploymentGroups: (options, request, fn) =>
|
|
fn(null, getDeploymentGroups(options)),
|
|
deploymentGroup: (options, request, fn) =>
|
|
fn(null, getDeploymentGroups(options).shift()),
|
|
services: (options, request, fn) => fn(null, getServices()),
|
|
service: (options, request, fn) => fn(null, getServices(options).shift())
|
|
};
|