2017-06-27 22:42:53 +03:00
|
|
|
|
2017-05-11 23:18:51 +03:00
|
|
|
'use strict';
|
|
|
|
|
2017-06-27 22:42:53 +03:00
|
|
|
// core modules
|
2017-06-02 00:25:45 +03:00
|
|
|
const EventEmitter = require('events');
|
2017-06-27 22:42:53 +03:00
|
|
|
const Util = require('util');
|
|
|
|
|
|
|
|
// 3rd party modules
|
2017-06-28 13:03:16 +03:00
|
|
|
// const CPClient = require('cp-client');
|
2017-06-03 01:16:49 +03:00
|
|
|
const DockerClient = require('docker-compose-client');
|
2017-06-08 21:43:24 +03:00
|
|
|
const Dockerode = require('dockerode');
|
2017-05-11 23:18:51 +03:00
|
|
|
const Hoek = require('hoek');
|
2017-06-27 22:42:53 +03:00
|
|
|
const ParamCase = require('param-case');
|
2017-05-11 23:18:51 +03:00
|
|
|
const Penseur = require('penseur');
|
2017-06-28 20:33:34 +03:00
|
|
|
const { DEPLOYMENT_GROUP, SERVICE, HASH } = require('../watch');
|
2017-06-27 22:42:53 +03:00
|
|
|
const UniqBy = require('lodash.uniqby');
|
|
|
|
const Uuid = require('uuid/v4');
|
2017-05-27 19:35:38 +03:00
|
|
|
const VAsync = require('vasync');
|
2017-06-27 22:42:53 +03:00
|
|
|
|
|
|
|
// local modules
|
2017-05-27 19:35:38 +03:00
|
|
|
const Transform = require('./transform');
|
2017-06-26 17:29:12 +03:00
|
|
|
|
|
|
|
|
|
|
|
const NON_IMPORTABLE_STATES = [
|
|
|
|
'EXITED',
|
|
|
|
'DELETED',
|
|
|
|
'STOPPED',
|
|
|
|
'FAILED'
|
|
|
|
];
|
2017-05-11 23:18:51 +03:00
|
|
|
|
|
|
|
const internals = {
|
|
|
|
defaults: {
|
2017-05-25 23:03:39 +03:00
|
|
|
name: 'portal',
|
|
|
|
db: {
|
|
|
|
test: false
|
|
|
|
},
|
2017-06-08 21:43:24 +03:00
|
|
|
dockerComposeHost: 'tcp://0.0.0.0:4242'
|
2017-05-25 23:03:39 +03:00
|
|
|
},
|
2017-05-27 19:35:38 +03:00
|
|
|
tables: {
|
2017-06-05 23:54:44 +03:00
|
|
|
'portals': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false },
|
|
|
|
'datacenters': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false },
|
|
|
|
'deployment_groups': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false },
|
|
|
|
'versions': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false },
|
|
|
|
'manifests': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false },
|
|
|
|
'services': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false },
|
|
|
|
'packages': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false },
|
|
|
|
'instances': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false },
|
|
|
|
'users': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false }
|
2017-06-27 22:42:53 +03:00
|
|
|
},
|
|
|
|
resolveCb: (resolve, reject) => {
|
|
|
|
return (err, ...args) => {
|
|
|
|
if (err) {
|
|
|
|
return reject(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
resolve(...args);
|
|
|
|
};
|
2017-05-27 19:35:38 +03:00
|
|
|
}
|
2017-05-11 23:18:51 +03:00
|
|
|
};
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
|
2017-06-02 00:25:45 +03:00
|
|
|
module.exports = class Data extends EventEmitter {
|
2017-05-25 23:03:39 +03:00
|
|
|
constructor (options) {
|
2017-06-02 00:25:45 +03:00
|
|
|
super();
|
2017-06-22 20:09:13 +03:00
|
|
|
|
2017-06-05 23:54:44 +03:00
|
|
|
const settings = Hoek.applyToDefaults(internals.defaults, options || {});
|
2017-05-11 23:18:51 +03:00
|
|
|
|
|
|
|
// Penseur will assert that the options are correct
|
2017-05-25 23:03:39 +03:00
|
|
|
this._db = new Penseur.Db(settings.name, settings.db);
|
2017-06-08 21:43:24 +03:00
|
|
|
this._dockerCompose = new DockerClient(settings.dockerComposeHost);
|
|
|
|
this._docker = new Dockerode(settings.docker);
|
2017-06-26 17:29:12 +03:00
|
|
|
this._watcher = null;
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-28 13:03:16 +03:00
|
|
|
// if (settings.consul && settings.consul.address) {
|
|
|
|
// CPClient.config(settings.consul);
|
|
|
|
// }
|
2017-06-27 22:42:53 +03:00
|
|
|
|
2017-06-08 21:43:24 +03:00
|
|
|
this._dockerCompose.on('error', (err) => {
|
2017-06-03 01:16:49 +03:00
|
|
|
this.emit('error', err);
|
|
|
|
});
|
2017-05-16 18:54:39 +03:00
|
|
|
}
|
|
|
|
|
2017-06-26 17:29:12 +03:00
|
|
|
setWatcher (watcher) {
|
|
|
|
this._watcher = watcher;
|
|
|
|
}
|
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
connect (cb) {
|
|
|
|
this._db.establish(internals.tables, cb);
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:08:13 +03:00
|
|
|
reconnectCompose (dockerComposeHost) {
|
|
|
|
this._dockerCompose.close();
|
|
|
|
this._dockerCompose = new DockerClient(dockerComposeHost);
|
|
|
|
|
|
|
|
this._dockerCompose.on('error', (err) => {
|
|
|
|
this.emit('error', err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
|
|
|
|
// portals
|
|
|
|
|
|
|
|
createPortal (clientPortal, cb) {
|
|
|
|
const portal = Transform.toPortal(clientPortal);
|
|
|
|
this._db.portals.insert(portal, (err, key) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
portal.id = key;
|
|
|
|
cb(null, Transform.fromPortal({ portal }));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-05 23:54:44 +03:00
|
|
|
getPortal (options, cb) {
|
2017-05-27 19:35:38 +03:00
|
|
|
this._db.portals.all((err, portals) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-05 23:54:44 +03:00
|
|
|
if (!portals) {
|
|
|
|
return cb();
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
const portal = portals.shift();
|
2017-05-25 23:03:39 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
// Sub query/filter for deploymentGroups
|
|
|
|
const deploymentGroups = (args) => {
|
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-27 22:42:53 +03:00
|
|
|
this.getDeploymentGroups(args, internals.resolveCb(resolve, reject));
|
2017-06-22 20:09:13 +03:00
|
|
|
});
|
|
|
|
};
|
2017-06-08 00:35:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
// Sub query/filter for user
|
|
|
|
const user = () => {
|
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-27 22:42:53 +03:00
|
|
|
this.getUser({}, internals.resolveCb(resolve, reject));
|
2017-06-22 20:09:13 +03:00
|
|
|
});
|
|
|
|
};
|
2017-06-08 00:35:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
// Sub query/filter for datacenter
|
|
|
|
const datacenter = () => {
|
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-27 22:42:53 +03:00
|
|
|
this.getDatacenter({ id: portal.datacenter_id }, internals.resolveCb(resolve, reject));
|
2017-06-22 20:09:13 +03:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
cb(null, Transform.fromPortal({
|
|
|
|
portal,
|
|
|
|
deploymentGroups,
|
|
|
|
datacenter,
|
|
|
|
user
|
|
|
|
}));
|
2017-05-25 23:03:39 +03:00
|
|
|
});
|
2017-05-16 18:54:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
// datacenters
|
2017-05-11 23:18:51 +03:00
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
createDatacenter (datacenter, cb) {
|
|
|
|
this._db.datacenters.insert(datacenter, (err, key) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
2017-05-11 23:18:51 +03:00
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
datacenter.id = key;
|
|
|
|
cb(null, datacenter);
|
|
|
|
});
|
2017-05-11 23:18:51 +03:00
|
|
|
}
|
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
getDatacenters (cb) {
|
|
|
|
this._db.datacenters.all(cb);
|
2017-05-11 23:18:51 +03:00
|
|
|
}
|
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
getDatacenter ({ id, region }, cb) {
|
|
|
|
Hoek.assert(id || region, 'id or region are required to retrieve a datacenter');
|
2017-05-11 23:18:51 +03:00
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
if (region) {
|
2017-06-05 23:54:44 +03:00
|
|
|
return this._db.datacenters.query({ region }, (err, datacenters) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cb(null, datacenters && datacenters.length ? datacenters[0] : null);
|
|
|
|
});
|
2017-05-27 19:35:38 +03:00
|
|
|
}
|
|
|
|
|
2017-06-05 23:54:44 +03:00
|
|
|
this._db.datacenters.get(id, cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// users
|
|
|
|
|
|
|
|
createUser (clientUser, cb) {
|
|
|
|
const user = Transform.toUser(clientUser);
|
|
|
|
this._db.users.insert(user, (err, key) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
user.id = key;
|
|
|
|
cb(null, Transform.fromUser(user));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
getUser (options, cb) {
|
|
|
|
this._db.users.all((err, users) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!users || !users.length) {
|
|
|
|
return cb();
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, Transform.fromUser(users[0]));
|
|
|
|
});
|
2017-05-11 23:18:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
// deployment_groups
|
|
|
|
|
2017-05-31 01:08:06 +03:00
|
|
|
createDeploymentGroup (clientDeploymentGroup, cb) {
|
|
|
|
const deploymentGroup = Transform.toDeploymentGroup(clientDeploymentGroup);
|
2017-06-22 20:09:13 +03:00
|
|
|
this._db.deployment_groups.query({
|
|
|
|
slug: deploymentGroup.slug
|
|
|
|
}, (err, deploymentGroups) => {
|
2017-05-27 19:35:38 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
if (deploymentGroups && deploymentGroups.length) {
|
|
|
|
return cb(new Error(`DeploymentGroup "${deploymentGroup.slug}" already exists (${deploymentGroups[0].id})`));
|
|
|
|
}
|
|
|
|
|
|
|
|
this._db.deployment_groups.insert(deploymentGroup, (err, key) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
deploymentGroup.id = key;
|
|
|
|
cb(null, Transform.fromDeploymentGroup(deploymentGroup));
|
|
|
|
});
|
2017-05-11 23:18:51 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
updateDeploymentGroup ({ id, name }, cb) {
|
2017-06-22 20:09:13 +03:00
|
|
|
this._db.deployment_groups.update([{ id, name }], (err) => {
|
2017-05-27 19:35:38 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
2017-05-11 23:18:51 +03:00
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
cb(null, Transform.fromDeploymentGroup({ id, name }));
|
|
|
|
});
|
2017-05-12 22:59:37 +03:00
|
|
|
}
|
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
_getDeploymentGroupVersion (deploymentGroup) {
|
|
|
|
const getServices = (args) => {
|
|
|
|
args = args || {};
|
|
|
|
args.deploymentGroupId = deploymentGroup.id;
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-28 02:11:19 +03:00
|
|
|
this.getServices(args, internals.resolveCb(resolve, reject));
|
2017-06-27 18:15:27 +03:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const getVersion = (args) => {
|
|
|
|
args = args || {};
|
|
|
|
args.id = deploymentGroup.version_id;
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-27 20:47:44 +03:00
|
|
|
return deploymentGroup.version_id ?
|
2017-06-28 02:11:19 +03:00
|
|
|
this.getVersion(args, internals.resolveCb(resolve, reject)) :
|
2017-06-27 20:47:44 +03:00
|
|
|
resolve(null);
|
2017-06-27 18:15:27 +03:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return Object.assign(deploymentGroup, {
|
|
|
|
services: getServices,
|
|
|
|
version: getVersion
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-31 01:08:06 +03:00
|
|
|
getDeploymentGroups ({ ids, name, slug }, cb) {
|
|
|
|
const finish = (err, deploymentGroups) => {
|
2017-05-27 19:35:38 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
2017-05-16 18:54:39 +03:00
|
|
|
}
|
2017-05-11 23:18:51 +03:00
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
if (!deploymentGroups || !deploymentGroups.length) {
|
|
|
|
return cb(null, []);
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
// todo getHistory
|
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
cb(null, deploymentGroups.map((dg) => { return Transform.fromDeploymentGroup(this._getDeploymentGroupVersion(dg)); }));
|
2017-05-31 01:08:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
if (ids) {
|
|
|
|
return this._db.deployment_groups.get(ids, finish);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name) {
|
|
|
|
return this._db.deployment_groups.query({ name }, finish);
|
|
|
|
}
|
|
|
|
|
2017-06-05 23:54:44 +03:00
|
|
|
if (slug) {
|
|
|
|
return this._db.deployment_groups.query({ slug }, finish);
|
|
|
|
}
|
|
|
|
|
2017-06-08 00:35:45 +03:00
|
|
|
return this._db.deployment_groups.all(finish);
|
2017-05-11 23:18:51 +03:00
|
|
|
}
|
2017-05-12 22:59:37 +03:00
|
|
|
|
2017-05-31 01:08:06 +03:00
|
|
|
getDeploymentGroup (query, cb) {
|
2017-06-22 20:09:13 +03:00
|
|
|
query = query || {};
|
|
|
|
|
2017-06-09 21:13:22 +03:00
|
|
|
this._db.deployment_groups.query(query, (err, deploymentGroups) => {
|
2017-06-08 00:35:45 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-09 21:13:22 +03:00
|
|
|
if (!deploymentGroups || !deploymentGroups.length) {
|
2017-06-08 00:35:45 +03:00
|
|
|
return cb(null, {});
|
|
|
|
}
|
2017-05-27 19:35:38 +03:00
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
// todo getHistory
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
cb(null, Transform.fromDeploymentGroup(this._getDeploymentGroupVersion(deploymentGroups[0])));
|
|
|
|
});
|
|
|
|
}
|
2017-06-08 00:35:45 +03:00
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
_versionManifest (version) {
|
|
|
|
return Object.assign(version, {
|
|
|
|
manifest: (args) => {
|
2017-06-22 20:09:13 +03:00
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-27 18:15:27 +03:00
|
|
|
return this.getManifest({
|
|
|
|
id: version.manifest_id
|
2017-06-28 02:11:19 +03:00
|
|
|
}, internals.resolveCb(resolve, reject));
|
2017-06-03 01:16:49 +03:00
|
|
|
});
|
2017-06-27 18:15:27 +03:00
|
|
|
}
|
2017-05-27 19:35:38 +03:00
|
|
|
});
|
2017-05-16 18:54:39 +03:00
|
|
|
}
|
2017-05-11 23:18:51 +03:00
|
|
|
|
2017-05-27 19:35:38 +03:00
|
|
|
// versions
|
|
|
|
|
|
|
|
createVersion (clientVersion, cb) {
|
2017-06-02 00:25:45 +03:00
|
|
|
Hoek.assert(clientVersion, 'version is required');
|
2017-06-27 18:15:27 +03:00
|
|
|
Hoek.assert(clientVersion.manifest, 'manifest is required');
|
2017-06-02 00:25:45 +03:00
|
|
|
Hoek.assert(clientVersion.deploymentGroupId, 'deploymentGroupId is required');
|
2017-05-31 01:08:06 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> creating new Version for DeploymentGroup ${clientVersion.deploymentGroupId}`);
|
|
|
|
|
2017-06-02 00:25:45 +03:00
|
|
|
const version = Transform.toVersion(clientVersion);
|
|
|
|
this._db.versions.insert(version, (err, key) => {
|
2017-05-27 19:35:38 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
2017-05-16 18:54:39 +03:00
|
|
|
}
|
2017-05-12 22:59:37 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> new Version for DeploymentGroup ${clientVersion.deploymentGroupId} created: ${key}`);
|
|
|
|
|
2017-06-02 00:25:45 +03:00
|
|
|
const changes = {
|
|
|
|
id: clientVersion.deploymentGroupId,
|
|
|
|
version_id: key,
|
|
|
|
history_version_ids: this._db.append(key)
|
|
|
|
};
|
|
|
|
|
|
|
|
if (clientVersion.serviceIds) {
|
|
|
|
changes['service_ids'] = clientVersion.serviceIds;
|
2017-05-31 01:08:06 +03:00
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> updating DeploymentGroup ${clientVersion.deploymentGroupId} to add Version ${key}`);
|
|
|
|
|
2017-06-02 00:25:45 +03:00
|
|
|
this._db.deployment_groups.update([changes], (err) => {
|
2017-05-31 01:08:06 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-02 00:25:45 +03:00
|
|
|
version.id = key;
|
2017-06-27 18:15:27 +03:00
|
|
|
cb(null, Transform.fromVersion(this._versionManifest(version)));
|
2017-05-31 01:08:06 +03:00
|
|
|
});
|
2017-05-11 23:18:51 +03:00
|
|
|
});
|
|
|
|
}
|
2017-05-12 22:59:37 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
updateVersion (clientVersion, cb) {
|
|
|
|
this._db.versions.update([Transform.toVersion(clientVersion)], (err, versions) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
if (!versions || !versions.length) {
|
|
|
|
return cb(null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, Transform.fromVersion(this._versionManifest(versions[0])));
|
2017-06-22 20:09:13 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-31 01:08:06 +03:00
|
|
|
getVersion ({ id, manifestId }, cb) {
|
|
|
|
const query = id ? { id } : { manifest_id: manifestId };
|
|
|
|
this._db.versions.single(query, (err, version) => {
|
2017-05-27 19:35:38 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
if (!version) {
|
|
|
|
return cb(null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, Transform.fromVersion(this._versionManifest(version)));
|
2017-05-27 19:35:38 +03:00
|
|
|
});
|
2017-05-12 22:59:37 +03:00
|
|
|
}
|
2017-05-31 01:08:06 +03:00
|
|
|
|
|
|
|
getVersions ({ manifestId, deploymentGroupId }, cb) {
|
|
|
|
const finish = (err, versions) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
versions = versions || [];
|
2017-06-27 18:15:27 +03:00
|
|
|
cb(null, versions.map((version) => { return Transform.fromVersion(this._versionManifest(version)); }));
|
2017-05-31 01:08:06 +03:00
|
|
|
};
|
|
|
|
|
2017-06-02 00:25:45 +03:00
|
|
|
// ensure the data is in sync
|
|
|
|
this._db.versions.sync(() => {
|
|
|
|
if (manifestId) {
|
|
|
|
return this._db.versions.query({ manifest_id: manifestId }, finish);
|
2017-05-31 01:08:06 +03:00
|
|
|
}
|
|
|
|
|
2017-06-02 00:25:45 +03:00
|
|
|
this.getDeploymentGroup({ id: deploymentGroupId }, (err, deploymentGroup) => {
|
|
|
|
if (err) {
|
|
|
|
return finish(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._db.versions.get(deploymentGroup.history, finish);
|
|
|
|
});
|
2017-05-31 01:08:06 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-28 13:04:43 +03:00
|
|
|
scale ({ serviceId, replicas }, cb) {
|
|
|
|
Hoek.assert(serviceId, 'service id is required');
|
2017-06-03 01:16:49 +03:00
|
|
|
Hoek.assert(typeof replicas === 'number' && replicas >= 0, 'replicas must be a number no less than 0');
|
|
|
|
|
|
|
|
// get the service then get the deployment group
|
|
|
|
// use the deployment group to find the current version and manifest
|
|
|
|
// scale the service
|
2017-06-22 20:09:13 +03:00
|
|
|
// maybe update the machine ids and instances
|
|
|
|
|
|
|
|
console.log('-> scale request received');
|
|
|
|
|
2017-06-28 13:04:43 +03:00
|
|
|
console.log(`-> fetching Service ${serviceId}`);
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-28 13:04:43 +03:00
|
|
|
this._db.services.single({ id: serviceId }, (err, service) => {
|
2017-06-03 01:16:49 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!service) {
|
2017-06-28 13:04:43 +03:00
|
|
|
return cb(new Error(`service not found for id: ${serviceId}`));
|
2017-06-03 01:16:49 +03:00
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> fetching DeploymentGroup ${service.deployment_group_id}`);
|
|
|
|
|
2017-06-03 01:16:49 +03:00
|
|
|
this._db.deployment_groups.single({ id: service.deployment_group_id }, (err, deployment_group) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!deployment_group) {
|
2017-06-28 13:04:43 +03:00
|
|
|
return cb(new Error(`deployment group not found for service with service id: ${serviceId}`));
|
2017-06-03 01:16:49 +03:00
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> fetching Version ${deployment_group.version_id}`);
|
|
|
|
|
2017-06-03 01:16:49 +03:00
|
|
|
this._db.versions.single({ id: deployment_group.version_id }, (err, version) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!version) {
|
2017-06-28 13:04:43 +03:00
|
|
|
return cb(new Error(`version not found for service with service id: ${serviceId}`));
|
2017-06-03 01:16:49 +03:00
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> fetching Manifest ${version.manifest_id}`);
|
|
|
|
|
2017-06-03 01:16:49 +03:00
|
|
|
this._db.manifests.single({ id: version.manifest_id }, (err, manifest) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!manifest) {
|
2017-06-28 13:04:43 +03:00
|
|
|
return cb(new Error(`manifest not found for service with service id: ${serviceId}`));
|
2017-06-03 01:16:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
this._scale({ service, deployment_group, version, manifest, replicas }, cb);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_scale ({ service, deployment_group, version, manifest, replicas }, cb) {
|
|
|
|
let isFinished = false;
|
2017-06-22 20:09:13 +03:00
|
|
|
|
2017-06-03 01:16:49 +03:00
|
|
|
const finish = () => {
|
|
|
|
if (isFinished) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
isFinished = true;
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> docker-compose scaled "${service.name}" from DeploymentGroup ${deployment_group.id} to ${replicas} replicas`);
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
if (!version.service_scales || !version.service_scales.length) {
|
|
|
|
console.log(`-> no scale data found for service "${service.name}" from DeploymentGroup ${deployment_group.id} in current Version (${version.id})`);
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
version.service_scales = [{
|
|
|
|
service_name: service.name
|
|
|
|
}];
|
|
|
|
}
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
const clientVersion = {
|
|
|
|
deploymentGroupId: deployment_group.id,
|
2017-06-27 18:15:27 +03:00
|
|
|
manifest,
|
2017-06-22 20:09:13 +03:00
|
|
|
plan: version.plan,
|
|
|
|
scale: version.service_scales.map((scale) => {
|
|
|
|
if (scale.service_name !== service.name) {
|
|
|
|
return scale;
|
|
|
|
}
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
return {
|
|
|
|
serviceName: service.name,
|
|
|
|
replicas
|
|
|
|
};
|
|
|
|
})
|
|
|
|
};
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> creating new Version for DeploymentGroup ${deployment_group.id}`);
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
// createVersion updates the deployment group
|
|
|
|
this.createVersion(clientVersion, (...args) => {
|
|
|
|
isFinished = true;
|
|
|
|
cb(...args);
|
2017-06-03 01:16:49 +03:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> requesting docker-compose to scale "${service.name}" from DeploymentGroup ${deployment_group.id} to ${replicas} replicas`);
|
|
|
|
|
|
|
|
this._dockerCompose.scale({
|
2017-06-05 19:33:13 +03:00
|
|
|
projectName: deployment_group.name,
|
2017-06-22 20:09:13 +03:00
|
|
|
services: {
|
|
|
|
[service.name]: replicas
|
|
|
|
},
|
2017-06-03 01:16:49 +03:00
|
|
|
manifest: manifest.raw
|
2017-06-22 20:09:13 +03:00
|
|
|
}, (err, res) => {
|
2017-06-03 01:16:49 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
2017-06-22 20:09:13 +03:00
|
|
|
|
2017-06-03 01:16:49 +03:00
|
|
|
finish();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-31 01:08:06 +03:00
|
|
|
|
|
|
|
// manifests
|
|
|
|
|
|
|
|
provisionManifest (clientManifest, cb) {
|
2017-06-22 20:09:13 +03:00
|
|
|
// 1. check that the deploymentgroup exists
|
|
|
|
// 2. create a new manifest
|
|
|
|
// 3. create a new version
|
|
|
|
// 4. return said version
|
|
|
|
// 5. request docker-compose-api to provision manifest
|
|
|
|
// 6. create/update/prune services by calling provisionServices with the respose from docker-compose-api
|
|
|
|
// 7. update version with the provision plan and new service ids
|
|
|
|
|
|
|
|
// todo we are not doing anything with the action plans right now
|
|
|
|
// but if we were, we would do that in portal-watch. with that said, we might
|
|
|
|
// run into a race condition where the event happens before we update the
|
|
|
|
// new version with the plan
|
|
|
|
|
|
|
|
console.log('-> provision request received');
|
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
const provision = ({ deploymentGroup, manifest, newVersion }) => {
|
2017-06-22 20:09:13 +03:00
|
|
|
let isHandled = false;
|
|
|
|
|
|
|
|
console.log(`-> requesting docker-compose provision for DeploymentGroup ${deploymentGroup.name}`);
|
|
|
|
|
|
|
|
this._dockerCompose.provision({
|
|
|
|
projectName: deploymentGroup.name,
|
|
|
|
manifest: clientManifest.raw
|
|
|
|
}, (err, provisionRes) => {
|
|
|
|
if (err) {
|
|
|
|
this.emit('error', err);
|
|
|
|
return;
|
|
|
|
}
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
// callback can execute multiple times, ensure responses are only handled once
|
|
|
|
if (isHandled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
isHandled = true;
|
|
|
|
|
|
|
|
console.log('-> update/create/remove services based on response from docker-compose');
|
|
|
|
|
|
|
|
// create/update services based on hashes
|
|
|
|
// return the new set of service ids
|
|
|
|
this.provisionServices({
|
|
|
|
deploymentGroup,
|
|
|
|
provisionRes
|
|
|
|
}, (err, newServiceIds) => {
|
|
|
|
if (err) {
|
|
|
|
this.emit('error', err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`-> update Version ${newVersion.id} based on docker-compose response and new service ids`);
|
|
|
|
|
|
|
|
const actions = Object.keys(provisionRes).map((serviceName) => {
|
|
|
|
return ({
|
|
|
|
type: provisionRes[serviceName].plan.action,
|
|
|
|
service: serviceName,
|
|
|
|
machines: provisionRes[serviceName].plan.containers.map(({ id }) => { return id; })
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// create new version
|
|
|
|
this.updateVersion({
|
|
|
|
id: newVersion.id,
|
2017-06-27 18:15:27 +03:00
|
|
|
manifest,
|
2017-06-22 20:09:13 +03:00
|
|
|
newServiceIds,
|
|
|
|
plan: {
|
|
|
|
running: true,
|
|
|
|
actions: actions
|
|
|
|
}
|
|
|
|
}, (err) => {
|
|
|
|
if (err) {
|
|
|
|
this.emit('error', err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`-> updated Version ${newVersion.id}`);
|
|
|
|
console.log('-> provisionManifest DONE');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
const createVersion = ({ deploymentGroup, currentVersion, manifest }) => {
|
2017-06-22 20:09:13 +03:00
|
|
|
// create new version
|
|
|
|
this.createVersion({
|
2017-06-27 18:15:27 +03:00
|
|
|
manifest,
|
2017-06-22 20:09:13 +03:00
|
|
|
deploymentGroupId: deploymentGroup.id,
|
|
|
|
scale: currentVersion.scale,
|
|
|
|
plan: {
|
|
|
|
running: true,
|
|
|
|
actions: []
|
|
|
|
}
|
|
|
|
}, (err, newVersion) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`-> new Version created with id ${newVersion.id}`);
|
|
|
|
console.log('newVersion', newVersion);
|
|
|
|
|
|
|
|
setImmediate(() => {
|
2017-06-27 18:15:27 +03:00
|
|
|
provision({ deploymentGroup, manifest, newVersion });
|
2017-06-22 20:09:13 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
cb(null, newVersion);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
this.getDeploymentGroup({
|
|
|
|
id: clientManifest.deploymentGroupId
|
|
|
|
}, (err, deploymentGroup) => {
|
2017-05-31 01:08:06 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-03 01:16:49 +03:00
|
|
|
if (!deploymentGroup) {
|
|
|
|
return cb(new Error('Deployment group not found for manifest'));
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> new DeploymentGroup created with id ${deploymentGroup.id}`);
|
|
|
|
|
|
|
|
const newManifest = Transform.toManifest(clientManifest);
|
|
|
|
this._db.manifests.insert(newManifest, (err, manifestId) => {
|
2017-06-03 01:16:49 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log(`-> new Manifest created with id ${manifestId}`);
|
2017-06-03 01:16:49 +03:00
|
|
|
|
2017-06-27 19:44:14 +03:00
|
|
|
deploymentGroup.version().then((currentVersion) => {
|
|
|
|
if (!currentVersion) {
|
|
|
|
console.log(`-> detected first provision for DeploymentGroup ${deploymentGroup.id}`);
|
|
|
|
} else {
|
|
|
|
console.log(`-> creating new Version based on old version ${currentVersion.id}`);
|
2017-06-22 20:09:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return createVersion({
|
|
|
|
deploymentGroup,
|
2017-06-27 18:15:27 +03:00
|
|
|
manifest: { id: manifestId },
|
2017-06-27 19:44:14 +03:00
|
|
|
currentVersion: currentVersion || {}
|
2017-06-03 01:16:49 +03:00
|
|
|
});
|
2017-06-27 20:47:44 +03:00
|
|
|
}).catch((err) => { return cb(err); });
|
2017-06-03 01:16:49 +03:00
|
|
|
});
|
2017-05-31 01:08:06 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
getManifest ({ id }, cb) {
|
|
|
|
this._db.manifests.single({ id }, (err, manifest) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, Transform.fromManifest(manifest || {}));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
getManifests ({ type, deploymentGroupId }, cb) {
|
|
|
|
const query = type ? { type } : { deployment_group_id: deploymentGroupId };
|
|
|
|
this._db.manifests.query(query, (err, manifests) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
manifests = manifests || [];
|
|
|
|
cb(null, manifests.map(Transform.fromManifest));
|
|
|
|
});
|
|
|
|
}
|
2017-05-31 22:27:53 +03:00
|
|
|
|
|
|
|
|
|
|
|
// services
|
|
|
|
|
2017-06-27 18:15:27 +03:00
|
|
|
provisionServices ({ deploymentGroup, provisionRes }, cb) {
|
2017-06-22 20:09:13 +03:00
|
|
|
// 1. get current set of services
|
|
|
|
// 2. compare names and hashes
|
|
|
|
// 3. if name doesn't exist anymore, disable service
|
|
|
|
// 4. if hash is new, update service
|
|
|
|
// 5. compare previous services with new ones
|
|
|
|
// 6. deactivate pruned ones
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
console.log('-> provision services in our data layer');
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
const createService = ({ provision, serviceName }, cb) => {
|
|
|
|
console.log(`-> creating Service "${serviceName}" from DeploymentGroup ${deploymentGroup.id}`);
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
this.createService({
|
|
|
|
hash: provision.hash,
|
|
|
|
deploymentGroupId: deploymentGroup.id,
|
|
|
|
name: serviceName,
|
|
|
|
slug: ParamCase(serviceName)
|
|
|
|
}, (err, service) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
cb(null, service.id);
|
|
|
|
});
|
|
|
|
};
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
const updateService = ({ provision, service }, cb) => {
|
|
|
|
console.log(`-> updating Service "${service.name}" from DeploymentGroup ${deploymentGroup.id}`);
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
this.updateService({
|
|
|
|
id: service.id,
|
|
|
|
hash: provision.hash
|
|
|
|
}, (err) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
cb(null, service.id);
|
2017-06-02 00:25:45 +03:00
|
|
|
});
|
2017-06-22 20:09:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
const resolveService = (serviceName, next) => {
|
|
|
|
console.log(`-> fetching Service "${serviceName}" from DeploymentGroup ${deploymentGroup.id}`);
|
|
|
|
|
|
|
|
const provision = provisionRes[serviceName];
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
this.getServices({
|
|
|
|
name: serviceName,
|
|
|
|
deploymentGroupId: deploymentGroup.id
|
|
|
|
}, (err, services) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
// no services for given name
|
|
|
|
if (!services || !services.length) {
|
|
|
|
return createService({ provision, serviceName }, next);
|
|
|
|
}
|
|
|
|
|
|
|
|
const service = services.shift();
|
|
|
|
|
|
|
|
VAsync.forEachPipeline({
|
|
|
|
inputs: services,
|
|
|
|
// disable old services
|
|
|
|
func: ({ id }, next) => {
|
|
|
|
console.log(`-> deactivating Service ${id} from DeploymentGroup ${deploymentGroup.id}`);
|
|
|
|
this.updateService({ active: false, id }, next);
|
|
|
|
}
|
|
|
|
}, (err) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
// service changed
|
|
|
|
if (service.hash !== provision.hash) {
|
|
|
|
return updateService({ provision, service }, next);
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`-> no changes for Service "${serviceName}" from DeploymentGroup ${deploymentGroup.id}`);
|
|
|
|
return next(null, service.id);
|
|
|
|
});
|
2017-06-02 00:25:45 +03:00
|
|
|
});
|
2017-06-22 20:09:13 +03:00
|
|
|
};
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
const pruneService = ({ id, instances }, next) => {
|
|
|
|
// if it has instances, just mark as inactive
|
|
|
|
console.log(`-> pruning Service ${id} from DeploymentGroup ${deploymentGroup.id}`);
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
const update = () => { return this.updateService({ active: false, id }, next); };
|
|
|
|
const remove = () => { return this.deleteServices({ ids: [id] }, next); };
|
|
|
|
|
|
|
|
return (instances && instances.length) ?
|
|
|
|
update() :
|
|
|
|
remove();
|
|
|
|
};
|
|
|
|
|
2017-06-27 22:42:53 +03:00
|
|
|
// deactivate pruned services
|
2017-06-22 20:09:13 +03:00
|
|
|
const pruneServices = (err, result) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`-> pruning Services from DeploymentGroup ${deploymentGroup.id}`);
|
|
|
|
|
|
|
|
const new_service_ids = result.successes;
|
2017-06-02 00:25:45 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
this.getServices({
|
|
|
|
deploymentGroupId: deploymentGroup.id
|
|
|
|
}, (err, oldServices) => {
|
2017-06-02 00:25:45 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
const servicesToPrune = oldServices
|
|
|
|
.filter(({ id }) => { return new_service_ids.indexOf(id) < 0; });
|
|
|
|
|
|
|
|
VAsync.forEachPipeline({
|
|
|
|
inputs: servicesToPrune,
|
|
|
|
func: pruneService
|
|
|
|
}, (err) => { return cb(err, new_service_ids); });
|
2017-06-02 00:25:45 +03:00
|
|
|
});
|
2017-06-22 20:09:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
VAsync.forEachPipeline({
|
|
|
|
inputs: Object.keys(provisionRes),
|
|
|
|
func: resolveService
|
|
|
|
}, pruneServices);
|
2017-06-02 00:25:45 +03:00
|
|
|
}
|
|
|
|
|
2017-05-31 22:27:53 +03:00
|
|
|
createService (clientService, cb) {
|
2017-06-22 20:09:13 +03:00
|
|
|
const newService = Object.assign(Transform.toService(clientService), {
|
|
|
|
active: true
|
|
|
|
});
|
|
|
|
|
|
|
|
this._db.services.insert(newService, (err, key) => {
|
2017-05-31 22:27:53 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-02 00:25:45 +03:00
|
|
|
clientService.id = key;
|
|
|
|
cb(null, clientService);
|
2017-05-31 22:27:53 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
updateService (clientService, cb) {
|
|
|
|
this._db.services.update([Transform.toService(clientService)], (err, services) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-28 13:23:43 +03:00
|
|
|
if (!services || !services.length) {
|
2017-06-28 13:04:43 +03:00
|
|
|
return cb(null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, Transform.fromService(services[0]));
|
2017-06-22 20:09:13 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:27:53 +03:00
|
|
|
getService ({ id, hash }, cb) {
|
|
|
|
const query = id ? { id } : { version_hash: hash };
|
2017-06-02 00:25:45 +03:00
|
|
|
this._db.services.query(query, (err, service) => {
|
2017-05-31 22:27:53 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-02 00:25:45 +03:00
|
|
|
if (!service) {
|
|
|
|
return cb(null, null);
|
|
|
|
}
|
|
|
|
|
2017-06-08 23:50:12 +03:00
|
|
|
this._db.packages.single({ id: service.package_id }, (err, packages) => {
|
2017-05-31 22:27:53 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-08 23:50:12 +03:00
|
|
|
cb(null, Transform.fromService({ service, instances: this._instancesFilter(service.instance_ids), packages }));
|
2017-05-31 22:27:53 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-09 21:13:22 +03:00
|
|
|
_getDeploymentGroupServices (deploymentGroupSlug, cb) {
|
|
|
|
this.getDeploymentGroup({ slug: deploymentGroupSlug }, (err, deploymentGroup) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!deploymentGroup) {
|
|
|
|
return cb(null, {});
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.getServices({ deploymentGroupId: deploymentGroup.id }, cb);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-08 00:35:45 +03:00
|
|
|
getServices (options, cb) {
|
2017-06-09 21:13:22 +03:00
|
|
|
if (options.deploymentGroupSlug) {
|
|
|
|
return this._getDeploymentGroupServices(options.deploymentGroupSlug, cb);
|
|
|
|
}
|
|
|
|
|
2017-06-08 00:35:45 +03:00
|
|
|
const query = {};
|
|
|
|
if (options.ids && options.ids.length) {
|
|
|
|
query.id = this._db.or(options.ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.name) {
|
|
|
|
query.name = options.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.slug) {
|
|
|
|
query.slug = options.slug;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.parentId) {
|
|
|
|
query.parent_id = options.parentId;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.deploymentGroupId) {
|
|
|
|
query.deployment_group_id = options.deploymentGroupId;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._db.services.query(query, (err, services) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!services || !services.length) {
|
|
|
|
return cb();
|
|
|
|
}
|
|
|
|
|
|
|
|
return cb(null, services.map((service) => {
|
2017-06-08 23:50:12 +03:00
|
|
|
return Transform.fromService({ service, instances: this._instancesFilter(service.instance_ids) });
|
2017-06-08 00:35:45 +03:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
}
|
2017-05-31 22:27:53 +03:00
|
|
|
|
2017-06-08 23:50:12 +03:00
|
|
|
_instancesFilter (instanceIds) {
|
2017-06-09 23:30:48 +03:00
|
|
|
return (query) => {
|
2017-06-22 20:09:13 +03:00
|
|
|
query = query || {};
|
|
|
|
|
2017-06-08 23:50:12 +03:00
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-09 23:30:48 +03:00
|
|
|
query.ids = instanceIds;
|
2017-06-08 23:50:12 +03:00
|
|
|
|
2017-06-27 22:42:53 +03:00
|
|
|
this.getInstances(query, internals.resolveCb(resolve, reject));
|
2017-06-08 23:50:12 +03:00
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-06-08 21:43:24 +03:00
|
|
|
stopServices ({ ids }, cb) {
|
|
|
|
this._db.services.get(ids, (err, services) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!services || !services.length) {
|
|
|
|
return cb();
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
const instanceIds = services.reduce((instanceIds, service) => {
|
|
|
|
return instanceIds.concat(service.instance_ids);
|
|
|
|
}, []);
|
2017-06-08 21:43:24 +03:00
|
|
|
|
|
|
|
VAsync.forEachParallel({
|
|
|
|
func: (instanceId, next) => {
|
|
|
|
this._db.instances.get(instanceId, (err, instance) => {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
|
2017-06-28 13:23:43 +03:00
|
|
|
const container = this._docker.getContainer(instance.machine_id.split(/-/)[0]);
|
2017-06-22 20:09:13 +03:00
|
|
|
container.stop(next);
|
2017-06-08 21:43:24 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
inputs: instanceIds
|
|
|
|
}, (err, results) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getServices({ ids }, cb);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
startServices ({ ids }, cb) {
|
2017-06-08 23:50:12 +03:00
|
|
|
this._db.services.get(ids, (err, services) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!services || !services.length) {
|
|
|
|
return cb();
|
|
|
|
}
|
2017-06-08 21:43:24 +03:00
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
const instanceIds = services.reduce((instanceIds, service) => {
|
|
|
|
return instanceIds.concat(service.instance_ids);
|
|
|
|
}, []);
|
2017-06-08 23:50:12 +03:00
|
|
|
|
|
|
|
VAsync.forEachParallel({
|
|
|
|
func: (instanceId, next) => {
|
|
|
|
this._db.instances.get(instanceId, (err, instance) => {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
|
2017-06-28 13:23:43 +03:00
|
|
|
const container = this._docker.getContainer(instance.machine_id.split(/-/)[0]);
|
2017-06-22 20:09:13 +03:00
|
|
|
container.start(next);
|
2017-06-08 23:50:12 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
inputs: instanceIds
|
|
|
|
}, (err, results) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getServices({ ids }, cb);
|
|
|
|
});
|
|
|
|
});
|
2017-06-08 21:43:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
restartServices ({ ids }, cb) {
|
2017-06-08 23:50:12 +03:00
|
|
|
this._db.services.get(ids, (err, services) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
2017-06-08 21:43:24 +03:00
|
|
|
|
2017-06-08 23:50:12 +03:00
|
|
|
if (!services || !services.length) {
|
|
|
|
return cb();
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
const instanceIds = services.reduce((instanceIds, service) => {
|
|
|
|
return instanceIds.concat(service.instance_ids);
|
|
|
|
}, []);
|
2017-06-08 23:50:12 +03:00
|
|
|
|
|
|
|
VAsync.forEachParallel({
|
|
|
|
func: (instanceId, next) => {
|
|
|
|
this._db.instances.get(instanceId, (err, instance) => {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
|
2017-06-28 13:23:43 +03:00
|
|
|
const container = this._docker.getContainer(instance.machine_id.split(/-/)[0]);
|
2017-06-22 20:09:13 +03:00
|
|
|
container.restart(next);
|
2017-06-08 23:50:12 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
inputs: instanceIds
|
|
|
|
}, (err, results) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getServices({ ids }, cb);
|
|
|
|
});
|
|
|
|
});
|
2017-06-08 21:43:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
deleteServices ({ ids }, cb) {
|
2017-06-22 20:09:13 +03:00
|
|
|
// todo could this be done with scale = 0?
|
|
|
|
|
2017-06-08 23:50:12 +03:00
|
|
|
this._db.services.get(ids, (err, services) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
2017-06-08 21:43:24 +03:00
|
|
|
|
2017-06-08 23:50:12 +03:00
|
|
|
if (!services || !services.length) {
|
|
|
|
return cb();
|
|
|
|
}
|
|
|
|
|
|
|
|
VAsync.forEachParallel({
|
2017-06-28 18:04:34 +03:00
|
|
|
inputs: ids,
|
|
|
|
func: (serviceId, next) => {
|
|
|
|
this.updateService({
|
|
|
|
id: serviceId,
|
|
|
|
active: false
|
|
|
|
}, next);
|
|
|
|
}
|
|
|
|
}, (err) => {
|
2017-06-08 23:50:12 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-28 18:04:34 +03:00
|
|
|
this.getServices({ ids }, cb);
|
|
|
|
|
|
|
|
const instanceIds = services.reduce((instanceIds, service) => {
|
|
|
|
return instanceIds.concat(service.instance_ids);
|
|
|
|
}, []);
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
VAsync.forEachParallel({
|
2017-06-28 18:04:34 +03:00
|
|
|
func: (instanceId, next) => {
|
|
|
|
this._db.instances.get(instanceId, (err, instance) => {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
const container = this._docker.getContainer(instance.machine_id.split(/-/)[0]);
|
|
|
|
// Use force in case the container is running. TODO: should we keep force?
|
|
|
|
container.remove({ force: true }, next);
|
2017-06-22 20:09:13 +03:00
|
|
|
});
|
2017-06-28 18:04:34 +03:00
|
|
|
},
|
|
|
|
inputs: instanceIds
|
|
|
|
}, (err, results) => {
|
2017-06-22 20:09:13 +03:00
|
|
|
if (err) {
|
2017-06-28 18:04:34 +03:00
|
|
|
console.error(err);
|
2017-06-22 20:09:13 +03:00
|
|
|
}
|
|
|
|
});
|
2017-06-08 23:50:12 +03:00
|
|
|
});
|
|
|
|
});
|
2017-06-08 21:43:24 +03:00
|
|
|
}
|
|
|
|
|
2017-05-31 22:27:53 +03:00
|
|
|
|
|
|
|
// instances
|
|
|
|
|
|
|
|
createInstance (clientInstance, cb) {
|
|
|
|
this._db.instances.insert(Transform.toInstance(clientInstance), (err, key) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
clientInstance.id = key;
|
|
|
|
cb(null, clientInstance);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
getInstance ({ id }, cb) {
|
|
|
|
this._db.instances.single({ id }, (err, instance) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, instance ? Transform.fromInstance(instance) : {});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-09 23:30:48 +03:00
|
|
|
getInstances ({ ids, name, machineId, status }, cb) {
|
|
|
|
const query = {};
|
|
|
|
|
|
|
|
if (ids) {
|
|
|
|
query.id = this._db.or(ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name) {
|
|
|
|
query.name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (machineId) {
|
|
|
|
query.machine_id = machineId;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status) {
|
|
|
|
query.status = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._db.instances.query(query, (err, instances) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!instances || !instances.length) {
|
|
|
|
return cb(null, []);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, instances.map(Transform.fromInstance));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-08 21:43:24 +03:00
|
|
|
updateInstance ({ id, status }, cb) {
|
2017-06-22 20:09:13 +03:00
|
|
|
this._db.instances.update([{ id, status }], (err, instances) => {
|
2017-06-08 21:43:24 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:09:13 +03:00
|
|
|
cb(null, instances && instances.length ? Transform.fromInstance(instances[0]) : {});
|
2017-06-08 21:43:24 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-09 23:30:48 +03:00
|
|
|
stopInstances ({ ids }, cb) {
|
|
|
|
this._db.instances.get(ids, (err, instances) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!instances || !instances.length) {
|
|
|
|
return cb();
|
|
|
|
}
|
|
|
|
|
|
|
|
VAsync.forEachParallel({
|
|
|
|
func: (instance, next) => {
|
2017-06-28 13:23:43 +03:00
|
|
|
const container = this._docker.getContainer(instance.machine_id.split(/-/)[0]);
|
2017-06-22 20:09:13 +03:00
|
|
|
container.stop(next);
|
2017-06-09 23:30:48 +03:00
|
|
|
},
|
|
|
|
inputs: instances
|
|
|
|
}, (err, results) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getInstances({ ids }, cb);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
startInstances ({ ids }, cb) {
|
|
|
|
this._db.instances.get(ids, (err, instances) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!instances || !instances.length) {
|
|
|
|
return cb();
|
|
|
|
}
|
|
|
|
|
|
|
|
VAsync.forEachParallel({
|
|
|
|
func: (instance, next) => {
|
2017-06-28 13:23:43 +03:00
|
|
|
const container = this._docker.getContainer(instance.machine_id.split(/-/)[0]);
|
2017-06-27 22:42:53 +03:00
|
|
|
container.start((err) => {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the IPAddress for the instance
|
|
|
|
container.inspect((err, details) => {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._db.instances.update(instance.id, { ip_address: details.NetworkSettings.IPAddress }, next);
|
|
|
|
});
|
|
|
|
});
|
2017-06-09 23:30:48 +03:00
|
|
|
},
|
|
|
|
inputs: instances
|
2017-06-27 22:42:53 +03:00
|
|
|
}, (err) => {
|
2017-06-09 23:30:48 +03:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getInstances({ ids }, cb);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
restartInstances ({ ids }, cb) {
|
|
|
|
this._db.instances.get(ids, (err, instances) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!instances || !instances.length) {
|
|
|
|
return cb();
|
|
|
|
}
|
|
|
|
|
|
|
|
VAsync.forEachParallel({
|
|
|
|
func: (instance, next) => {
|
|
|
|
this.updateInstance({ id: instance.id, status: 'RESTARTING' }, () => {
|
2017-06-28 13:23:43 +03:00
|
|
|
const container = this._docker.getContainer(instance.machine_id.split(/-/)[0]);
|
2017-06-22 20:09:13 +03:00
|
|
|
container.restart(next);
|
2017-06-09 23:30:48 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
inputs: instances
|
|
|
|
}, (err, results) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getInstances({ ids }, cb);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:27:53 +03:00
|
|
|
|
|
|
|
// packages
|
|
|
|
|
|
|
|
createPackage (clientPackage, cb) {
|
|
|
|
this._db.packages.insert(Transform.toPackage(clientPackage), (err, key) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
clientPackage.id = key;
|
|
|
|
cb(null, clientPackage);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
getPackage ({ id }, cb) {
|
|
|
|
this._db.packages.single({ id }, (err, dbPackage) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, dbPackage ? Transform.fromPackage(dbPackage) : {});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
getPackages ({ name, type }, cb) {
|
|
|
|
const query = name ? { name } : { type };
|
|
|
|
this._db.packages.query(query, (err, dbPackages) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, dbPackages ? dbPackages.map(Transform.fromPackage) : []);
|
|
|
|
});
|
|
|
|
}
|
2017-06-23 00:59:25 +03:00
|
|
|
|
2017-06-26 17:29:12 +03:00
|
|
|
getConfig ({deploymentGroupName = '', type = '', format = '', raw = '' }, cb) {
|
2017-06-23 00:59:25 +03:00
|
|
|
if (type.toUpperCase() !== 'COMPOSE') {
|
|
|
|
return cb(new Error('"COMPOSE" is the only `type` supported'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (format.toUpperCase() !== 'YAML') {
|
|
|
|
return cb(new Error('"YAML" is the only `format` supported'));
|
|
|
|
}
|
|
|
|
|
|
|
|
let isFinished = false;
|
|
|
|
|
|
|
|
this._dockerCompose.config({
|
|
|
|
projectName: deploymentGroupName,
|
|
|
|
manifest: raw
|
|
|
|
}, (err, config = {}) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isFinished) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
isFinished = true;
|
|
|
|
|
|
|
|
const { services } = config;
|
|
|
|
|
|
|
|
if (!services || !Object.keys(services).length) {
|
|
|
|
return cb(null, []);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, Object.keys(services).reduce((acc, serviceName) => {
|
|
|
|
return acc.concat([{
|
|
|
|
id: Uuid(),
|
|
|
|
hash: Uuid(),
|
|
|
|
name: serviceName,
|
|
|
|
slug: ParamCase(serviceName),
|
|
|
|
instances: [],
|
|
|
|
package: {},
|
|
|
|
active: true,
|
|
|
|
image: services[serviceName].image
|
|
|
|
}]);
|
|
|
|
}, []));
|
|
|
|
});
|
|
|
|
}
|
2017-06-26 17:29:12 +03:00
|
|
|
|
|
|
|
getImportableDeploymentGroups (args, cb) {
|
|
|
|
if (!this._watcher) {
|
|
|
|
return cb(null, []);
|
|
|
|
}
|
|
|
|
|
|
|
|
const machines = this._watcher.getContainers();
|
|
|
|
|
|
|
|
if (!Array.isArray(machines)) {
|
|
|
|
return cb(null, []);
|
|
|
|
}
|
|
|
|
|
2017-06-27 18:14:00 +03:00
|
|
|
this.getDeploymentGroups({}, (err, dgs) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
const names = dgs.map(({ name }) => { return name; });
|
|
|
|
|
|
|
|
return cb(
|
|
|
|
null,
|
|
|
|
UniqBy(
|
|
|
|
machines
|
|
|
|
.filter(({ tags = {} }) => { return names.indexOf(tags[DEPLOYMENT_GROUP]) < 0; })
|
|
|
|
.filter(({ state }) => { return NON_IMPORTABLE_STATES.indexOf(state.toUpperCase()) < 0; })
|
|
|
|
.filter(({ tags = {} }) => { return [DEPLOYMENT_GROUP, SERVICE, HASH].every((name) => { return tags[name]; }); }
|
|
|
|
)
|
|
|
|
.map(({ tags = {} }) => {
|
|
|
|
return ({
|
|
|
|
id: Uuid(),
|
|
|
|
name: tags[DEPLOYMENT_GROUP],
|
|
|
|
slug: ParamCase(tags[DEPLOYMENT_GROUP])
|
|
|
|
});
|
|
|
|
}),
|
|
|
|
'slug'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
});
|
2017-06-26 17:29:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
importDeploymentGroup ({ deploymentGroupSlug }, cb) {
|
|
|
|
console.log(`-> import requested for ${deploymentGroupSlug}`);
|
|
|
|
|
|
|
|
if (!this._watcher) {
|
|
|
|
console.log('-> watcher not yet defined');
|
|
|
|
return cb(null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const machines = this._watcher.getContainers();
|
|
|
|
|
|
|
|
if (!Array.isArray(machines)) {
|
|
|
|
console.log('-> no machines found');
|
|
|
|
return cb(null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const containers = machines
|
|
|
|
.filter(
|
|
|
|
({ tags = {} }) => { return tags[DEPLOYMENT_GROUP] && ParamCase(tags[DEPLOYMENT_GROUP]) === deploymentGroupSlug; }
|
|
|
|
)
|
|
|
|
.filter(
|
|
|
|
({ state }) => { return NON_IMPORTABLE_STATES.indexOf(state.toUpperCase()) < 0; }
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!containers.length) {
|
|
|
|
console.log(`-> no containers found for ${deploymentGroupSlug}`);
|
|
|
|
return cb(null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const { tags = [] } = containers[0];
|
|
|
|
|
|
|
|
const services = containers.reduce((acc, { tags = [], id = '', state = '', name = '' }) => {
|
|
|
|
const hash = tags[HASH];
|
|
|
|
const slug = ParamCase(tags[SERVICE]);
|
|
|
|
const attr = `${hash}-${slug}`;
|
|
|
|
|
|
|
|
const instance = {
|
|
|
|
name: name,
|
|
|
|
machineId: id,
|
|
|
|
status: state.toUpperCase()
|
|
|
|
};
|
|
|
|
|
|
|
|
if (acc[attr]) {
|
|
|
|
acc[attr].instances.push(instance);
|
|
|
|
return acc;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Object.assign(acc, {
|
|
|
|
[attr]: {
|
|
|
|
hash,
|
|
|
|
name: tags[SERVICE],
|
|
|
|
slug,
|
|
|
|
instances: [instance]
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}, {});
|
|
|
|
|
|
|
|
const createService = (deploymentGroupId) => {
|
|
|
|
return (serviceId, next) => {
|
|
|
|
const service = services[serviceId];
|
|
|
|
|
|
|
|
console.log(`-> creating Service ${Util.inspect(service)}`);
|
|
|
|
|
|
|
|
VAsync.forEachParallel({
|
|
|
|
inputs: service.instances,
|
|
|
|
func: (instance, next) => { return this.createInstance(instance, next); }
|
|
|
|
}, (err, results) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`-> created Instances ${Util.inspect(results.successes)}`);
|
|
|
|
|
|
|
|
this.createService(Object.assign(service, {
|
|
|
|
instances: results.successes,
|
|
|
|
deploymentGroupId
|
|
|
|
}), next);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const deploymentGroup = {
|
|
|
|
name: tags[DEPLOYMENT_GROUP],
|
2017-06-27 18:13:15 +03:00
|
|
|
slug: ParamCase(tags[DEPLOYMENT_GROUP]),
|
|
|
|
imported: true
|
2017-06-26 17:29:12 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
console.log(`-> creating DeploymentGroup ${Util.inspect(deploymentGroup)}`);
|
|
|
|
|
|
|
|
this.createDeploymentGroup(deploymentGroup, (err, dg) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
VAsync.forEachParallel({
|
|
|
|
inputs: Object.keys(services),
|
|
|
|
func: createService(dg.id)
|
|
|
|
}, (err) => { return cb(err, dg); });
|
|
|
|
});
|
|
|
|
}
|
2017-05-11 23:18:51 +03:00
|
|
|
};
|