@wocker/ws
Version:
Docker workspace for web projects
130 lines (129 loc) • 5.4 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ComposeService = void 0;
const core_1 = require("@wocker/core");
const yaml_1 = __importDefault(require("yaml"));
const compose = __importStar(require("docker-compose"));
let ComposeService = class ComposeService {
constructor(logService) {
this.logService = logService;
}
async up(options) {
const { context, composefile } = options;
const res = await compose.upAll({
cwd: context,
configAsString: this.getConfigAsString(context, composefile),
callback: (chunk, streamSource) => this.processChunk(chunk, streamSource)
});
this.logService.debug("compose up", res);
}
async down(options) {
const { context, composefile } = options;
const res = await compose.downAll({
cwd: context,
configAsString: this.getConfigAsString(context, composefile),
callback: (chunk, streamSource) => this.processChunk(chunk, streamSource)
});
this.logService.debug("compose down", res);
}
async build(options) {
const { context, composefile } = options;
const res = await compose.buildAll({
cwd: context,
config: composefile,
callback: (chunk, streamSource) => this.processChunk(chunk, streamSource)
});
this.logService.debug("build", res);
}
async exec(options) {
const { service, args, context, composefile } = options;
const config = this.getConfig(context, composefile);
console.log(config);
await compose.exec(service, args, {
configAsString: this.getConfigAsString(context, composefile),
callback: (chunk, streamSource) => this.processChunk(chunk, streamSource)
});
}
getConfig(context, composefile) {
const fs = new core_1.FileSystem(context), config = fs.readYAML(composefile);
if (!config.networks) {
config.networks = {};
}
config.networks.workspace = {
external: true
};
for (const name in config.services) {
if (!config.services[name].networks) {
config.services[name].networks = [];
}
if (!config.services[name].networks.includes("workspace")) {
config.services[name].networks.push("workspace");
}
}
return config;
}
getConfigAsString(context, composefile) {
const config = this.getConfig(context, composefile);
return yaml_1.default.stringify(config);
}
processChunk(chunk, streamSource) {
switch (streamSource) {
case "stdout":
process.stdout.write(chunk);
break;
case "stderr":
process.stderr.write(chunk);
break;
}
}
};
exports.ComposeService = ComposeService;
exports.ComposeService = ComposeService = __decorate([
(0, core_1.Injectable)("DOCKER_COMPOSE_SERVICE"),
__metadata("design:paramtypes", [core_1.LogService])
], ComposeService);