2016-06-04 21:20:39 +00:00
|
|
|
"use strict";
|
2017-03-11 00:10:37 +00:00
|
|
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
|
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
|
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
|
|
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
|
|
|
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
|
|
});
|
|
|
|
};
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2016-07-18 14:56:53 +00:00
|
|
|
const plugins = require("./npmci.plugins");
|
|
|
|
const paths = require("./npmci.paths");
|
|
|
|
const NpmciEnv = require("./npmci.env");
|
|
|
|
const npmci_bash_1 = require("./npmci.bash");
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* builds a cwd of Dockerfiles by triggering a promisechain
|
|
|
|
*/
|
2017-03-11 00:10:37 +00:00
|
|
|
exports.build = () => __awaiter(this, void 0, void 0, function* () {
|
|
|
|
yield exports.readDockerfiles()
|
2016-06-05 12:27:56 +00:00
|
|
|
.then(exports.sortDockerfiles)
|
|
|
|
.then(exports.mapDockerfiles)
|
2016-06-05 14:43:27 +00:00
|
|
|
.then(exports.buildDockerfiles)
|
2017-03-11 00:10:37 +00:00
|
|
|
.then(exports.pushDockerfiles);
|
|
|
|
});
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* creates instance of class Dockerfile for all Dockerfiles in cwd
|
|
|
|
* @returns Promise<Dockerfile[]>
|
|
|
|
*/
|
2017-03-11 00:10:37 +00:00
|
|
|
exports.readDockerfiles = () => __awaiter(this, void 0, void 0, function* () {
|
|
|
|
let fileTree = yield plugins.smartfile.fs.listFileTree(paths.cwd, './Dockerfile*');
|
|
|
|
// create the Dockerfile array
|
2016-07-18 14:56:53 +00:00
|
|
|
let readDockerfilesArray = [];
|
2017-03-11 00:10:37 +00:00
|
|
|
for (let dockerfilePath of fileTree) {
|
2016-07-18 14:56:53 +00:00
|
|
|
let myDockerfile = new Dockerfile({
|
2017-03-11 00:10:37 +00:00
|
|
|
filePath: dockerfilePath,
|
2016-06-05 02:48:39 +00:00
|
|
|
read: true
|
2016-06-05 03:16:14 +00:00
|
|
|
});
|
2016-06-05 11:01:45 +00:00
|
|
|
readDockerfilesArray.push(myDockerfile);
|
2017-03-11 00:10:37 +00:00
|
|
|
}
|
|
|
|
return readDockerfilesArray;
|
|
|
|
});
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* sorts Dockerfiles into a dependency chain
|
|
|
|
* @param sortableArrayArg an array of instances of class Dockerfile
|
|
|
|
* @returns Promise<Dockerfile[]>
|
|
|
|
*/
|
2017-03-11 00:10:37 +00:00
|
|
|
exports.sortDockerfiles = (sortableArrayArg) => {
|
2016-07-18 14:56:53 +00:00
|
|
|
let done = plugins.q.defer();
|
|
|
|
let sortedArray = [];
|
|
|
|
let cleanTagsOriginal = exports.cleanTagsArrayFunction(sortableArrayArg, sortedArray);
|
|
|
|
let sorterFunctionCounter = 0;
|
|
|
|
let sorterFunction = function () {
|
|
|
|
sortableArrayArg.forEach((dockerfileArg) => {
|
|
|
|
let cleanTags = exports.cleanTagsArrayFunction(sortableArrayArg, sortedArray);
|
2016-11-24 22:21:40 +00:00
|
|
|
if (cleanTags.indexOf(dockerfileArg.baseImage) === -1 && sortedArray.indexOf(dockerfileArg) === -1) {
|
2016-06-05 09:08:20 +00:00
|
|
|
sortedArray.push(dockerfileArg);
|
|
|
|
}
|
2016-06-07 04:05:13 +00:00
|
|
|
;
|
2016-11-24 22:21:40 +00:00
|
|
|
if (cleanTagsOriginal.indexOf(dockerfileArg.baseImage) !== -1) {
|
2016-06-05 12:27:56 +00:00
|
|
|
dockerfileArg.localBaseImageDependent = true;
|
|
|
|
}
|
|
|
|
;
|
2016-06-05 04:20:05 +00:00
|
|
|
});
|
2016-11-24 22:21:40 +00:00
|
|
|
if (sortableArrayArg.length === sortedArray.length) {
|
2016-06-05 11:01:45 +00:00
|
|
|
done.resolve(sortedArray);
|
2016-06-05 04:20:05 +00:00
|
|
|
}
|
2016-06-05 11:50:45 +00:00
|
|
|
else if (sorterFunctionCounter < 10) {
|
2016-06-05 09:08:20 +00:00
|
|
|
sorterFunctionCounter++;
|
|
|
|
sorterFunction();
|
2016-06-05 04:20:05 +00:00
|
|
|
}
|
2016-06-05 09:08:20 +00:00
|
|
|
;
|
|
|
|
};
|
|
|
|
sorterFunction();
|
2016-06-05 04:20:05 +00:00
|
|
|
return done.promise;
|
|
|
|
};
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* maps local Dockerfiles dependencies to the correspoding Dockerfile class instances
|
|
|
|
*/
|
2017-03-11 00:10:37 +00:00
|
|
|
exports.mapDockerfiles = (sortedArray) => __awaiter(this, void 0, void 0, function* () {
|
2016-07-18 14:56:53 +00:00
|
|
|
sortedArray.forEach((dockerfileArg) => {
|
2016-06-05 12:27:56 +00:00
|
|
|
if (dockerfileArg.localBaseImageDependent) {
|
2016-07-18 14:56:53 +00:00
|
|
|
sortedArray.forEach((dockfile2) => {
|
2016-11-24 22:21:40 +00:00
|
|
|
if (dockfile2.cleanTag === dockerfileArg.baseImage) {
|
2016-06-05 12:27:56 +00:00
|
|
|
dockerfileArg.localBaseDockerfile = dockfile2;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
;
|
|
|
|
});
|
2017-03-11 00:10:37 +00:00
|
|
|
return sortedArray;
|
|
|
|
});
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* builds the correspoding real docker image for each Dockerfile class instance
|
|
|
|
*/
|
2017-03-11 00:10:37 +00:00
|
|
|
exports.buildDockerfiles = (sortedArrayArg) => __awaiter(this, void 0, void 0, function* () {
|
2017-03-11 01:27:48 +00:00
|
|
|
for (let dockerfileArg of sortedArrayArg) {
|
|
|
|
yield dockerfileArg.build();
|
|
|
|
}
|
2017-03-11 00:10:37 +00:00
|
|
|
return sortedArrayArg;
|
|
|
|
});
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* pushes the real Dockerfile images to a Docker registry
|
|
|
|
*/
|
2017-03-11 00:10:37 +00:00
|
|
|
exports.pushDockerfiles = (sortedArrayArg) => __awaiter(this, void 0, void 0, function* () {
|
2017-03-11 01:27:48 +00:00
|
|
|
for (let dockerfileArg of sortedArrayArg) {
|
2017-03-11 00:10:37 +00:00
|
|
|
yield dockerfileArg.push(NpmciEnv.buildStage);
|
2017-03-11 01:27:48 +00:00
|
|
|
}
|
2017-03-11 00:10:37 +00:00
|
|
|
return sortedArrayArg;
|
|
|
|
});
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* pulls corresponding real Docker images for instances of Dockerfile from a registry.
|
|
|
|
* This is needed if building, testing, and publishing of Docker images is carried out in seperate CI stages.
|
|
|
|
*/
|
2017-03-11 00:10:37 +00:00
|
|
|
exports.pullDockerfileImages = (sortableArrayArg, registryArg = 'registry.gitlab.com') => __awaiter(this, void 0, void 0, function* () {
|
2017-03-11 01:27:48 +00:00
|
|
|
for (let dockerfileArg of sortableArrayArg) {
|
2017-03-11 00:10:37 +00:00
|
|
|
yield dockerfileArg.pull(registryArg);
|
2017-03-11 01:27:48 +00:00
|
|
|
}
|
2017-03-11 00:10:37 +00:00
|
|
|
return sortableArrayArg;
|
|
|
|
});
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* tests all Dockerfiles in by calling class Dockerfile.test();
|
|
|
|
* @param sortedArrayArg Dockerfile[] that contains all Dockerfiles in cwd
|
|
|
|
*/
|
2017-03-11 00:10:37 +00:00
|
|
|
exports.testDockerfiles = (sortedArrayArg) => __awaiter(this, void 0, void 0, function* () {
|
2017-03-11 01:27:48 +00:00
|
|
|
for (let dockerfileArg of sortedArrayArg) {
|
2017-03-11 00:10:37 +00:00
|
|
|
yield dockerfileArg.test();
|
2017-03-11 01:27:48 +00:00
|
|
|
}
|
2017-03-11 00:10:37 +00:00
|
|
|
return sortedArrayArg;
|
|
|
|
});
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* class Dockerfile represents a Dockerfile on disk in npmci
|
|
|
|
*/
|
2016-07-18 14:56:53 +00:00
|
|
|
class Dockerfile {
|
|
|
|
constructor(options) {
|
2016-06-05 02:48:39 +00:00
|
|
|
this.filePath = options.filePath;
|
2016-11-24 22:21:40 +00:00
|
|
|
this.repo = NpmciEnv.repo.user + '/' + NpmciEnv.repo.repo;
|
2016-06-05 11:01:45 +00:00
|
|
|
this.version = exports.dockerFileVersion(plugins.path.parse(options.filePath).base);
|
2016-11-24 22:21:40 +00:00
|
|
|
this.cleanTag = this.repo + ':' + this.version;
|
2016-06-07 17:41:14 +00:00
|
|
|
this.buildTag = this.cleanTag;
|
2016-11-24 22:21:40 +00:00
|
|
|
this.testTag = exports.dockerTag('registry.gitlab.com', this.repo, this.version, 'test');
|
2016-06-07 17:41:14 +00:00
|
|
|
this.releaseTag = exports.dockerTag(NpmciEnv.dockerRegistry, this.repo, this.version);
|
2016-11-24 22:21:40 +00:00
|
|
|
this.containerName = 'dockerfile-' + this.version;
|
2016-06-05 02:48:39 +00:00
|
|
|
if (options.filePath && options.read) {
|
2016-06-23 20:22:03 +00:00
|
|
|
this.content = plugins.smartfile.fs.toStringSync(plugins.path.resolve(options.filePath));
|
2016-06-05 02:48:39 +00:00
|
|
|
}
|
|
|
|
;
|
2016-06-05 11:01:45 +00:00
|
|
|
this.baseImage = exports.dockerBaseImage(this.content);
|
2016-06-05 12:27:56 +00:00
|
|
|
this.localBaseImageDependent = false;
|
2016-06-05 02:48:39 +00:00
|
|
|
}
|
|
|
|
;
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* builds the Dockerfile
|
|
|
|
*/
|
2016-07-18 14:56:53 +00:00
|
|
|
build() {
|
2017-03-11 00:10:37 +00:00
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
plugins.beautylog.info('now building Dockerfile for ' + this.cleanTag);
|
|
|
|
yield npmci_bash_1.bashBare('docker build -t ' + this.buildTag + ' -f ' + this.filePath + ' .');
|
|
|
|
NpmciEnv.dockerFilesBuilt.push(this);
|
2017-03-11 01:27:48 +00:00
|
|
|
return;
|
2017-03-11 00:10:37 +00:00
|
|
|
});
|
2016-07-18 14:56:53 +00:00
|
|
|
}
|
2016-06-05 02:48:39 +00:00
|
|
|
;
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* pushes the Dockerfile to a registry
|
|
|
|
*/
|
2016-07-18 14:56:53 +00:00
|
|
|
push(stageArg) {
|
2017-03-11 00:10:37 +00:00
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
let pushTag;
|
|
|
|
switch (stageArg) {
|
|
|
|
case 'release':
|
|
|
|
pushTag = this.releaseTag;
|
|
|
|
break;
|
|
|
|
case 'test':
|
|
|
|
default:
|
|
|
|
pushTag = this.testTag;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
yield npmci_bash_1.bashBare('docker tag ' + this.buildTag + ' ' + pushTag);
|
|
|
|
yield npmci_bash_1.bashBare('docker push ' + pushTag);
|
|
|
|
});
|
2016-07-18 14:56:53 +00:00
|
|
|
}
|
2016-09-04 15:56:56 +00:00
|
|
|
;
|
|
|
|
/**
|
|
|
|
* pulls the Dockerfile from a registry
|
|
|
|
*/
|
2016-07-18 14:56:53 +00:00
|
|
|
pull(registryArg) {
|
2017-03-11 00:10:37 +00:00
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
let pullTag = this.testTag;
|
|
|
|
yield npmci_bash_1.bashBare('docker pull ' + pullTag);
|
|
|
|
yield npmci_bash_1.bashBare('docker tag ' + pullTag + ' ' + this.buildTag);
|
|
|
|
});
|
2016-07-18 14:56:53 +00:00
|
|
|
}
|
2016-06-07 01:59:47 +00:00
|
|
|
;
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* tests the Dockerfile;
|
|
|
|
*/
|
2016-07-18 14:56:53 +00:00
|
|
|
test() {
|
2017-03-11 00:10:37 +00:00
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
let testFile = plugins.path.join(paths.NpmciTestDir, 'test_' + this.version + '.sh');
|
|
|
|
let testFileExists = plugins.smartfile.fs.fileExistsSync(testFile);
|
|
|
|
if (testFileExists) {
|
|
|
|
// run tests
|
|
|
|
yield npmci_bash_1.bashBare('docker run --name npmci_test_container ' + this.buildTag + ' mkdir /npmci_test');
|
|
|
|
yield npmci_bash_1.bashBare('docker cp ' + testFile + ' npmci_test_container:/npmci_test/test.sh');
|
|
|
|
yield npmci_bash_1.bashBare('docker commit npmci_test_container npmci_test_image');
|
|
|
|
yield npmci_bash_1.bashBare('docker run npmci_test_image sh /npmci_test/test.sh');
|
|
|
|
yield npmci_bash_1.bashBare('docker rm npmci_test_container');
|
|
|
|
yield npmci_bash_1.bashBare('docker rmi --force npmci_test_image');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
plugins.beautylog.warn('skipping tests for ' + this.cleanTag + ' because no testfile was found!');
|
|
|
|
}
|
|
|
|
});
|
2016-07-18 14:56:53 +00:00
|
|
|
}
|
2016-06-07 01:59:47 +00:00
|
|
|
;
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
* gets the id of a Dockerfile
|
|
|
|
*/
|
2016-07-18 14:56:53 +00:00
|
|
|
getId() {
|
2017-03-11 00:10:37 +00:00
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
let containerId = yield npmci_bash_1.bashBare('docker inspect --type=image --format=\"{{.Id}}\" ' + this.buildTag);
|
|
|
|
return containerId;
|
|
|
|
});
|
2016-07-18 14:56:53 +00:00
|
|
|
}
|
2016-06-07 01:59:47 +00:00
|
|
|
;
|
2016-07-18 14:56:53 +00:00
|
|
|
}
|
2016-06-05 02:48:39 +00:00
|
|
|
exports.Dockerfile = Dockerfile;
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
2017-03-11 00:10:37 +00:00
|
|
|
* returns a version for a docker file
|
|
|
|
* @execution SYNC
|
2016-09-04 15:56:56 +00:00
|
|
|
*/
|
2017-03-11 00:10:37 +00:00
|
|
|
exports.dockerFileVersion = (dockerfileNameArg) => {
|
2016-07-18 14:56:53 +00:00
|
|
|
let versionString;
|
|
|
|
let versionRegex = /Dockerfile_([a-zA-Z0-9\.]*)$/;
|
|
|
|
let regexResultArray = versionRegex.exec(dockerfileNameArg);
|
2016-11-24 22:21:40 +00:00
|
|
|
if (regexResultArray && regexResultArray.length === 2) {
|
2016-06-05 02:48:39 +00:00
|
|
|
versionString = regexResultArray[1];
|
|
|
|
}
|
|
|
|
else {
|
2016-11-24 22:21:40 +00:00
|
|
|
versionString = 'latest';
|
2016-06-05 02:48:39 +00:00
|
|
|
}
|
|
|
|
return versionString;
|
|
|
|
};
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2016-06-05 11:01:45 +00:00
|
|
|
exports.dockerBaseImage = function (dockerfileContentArg) {
|
2016-07-18 14:56:53 +00:00
|
|
|
let baseImageRegex = /FROM\s([a-zA-z0-9\/\-\:]*)\n?/;
|
|
|
|
let regexResultArray = baseImageRegex.exec(dockerfileContentArg);
|
2016-06-05 02:48:39 +00:00
|
|
|
return regexResultArray[1];
|
|
|
|
};
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2016-06-07 17:41:14 +00:00
|
|
|
exports.dockerTag = function (registryArg, repoArg, versionArg, suffixArg) {
|
2016-07-18 14:56:53 +00:00
|
|
|
let tagString;
|
|
|
|
let registry = registryArg;
|
|
|
|
let repo = repoArg;
|
|
|
|
let version = versionArg;
|
2016-06-07 17:41:14 +00:00
|
|
|
if (suffixArg) {
|
2016-11-24 22:21:40 +00:00
|
|
|
version = versionArg + '_' + suffixArg;
|
2016-06-05 02:48:39 +00:00
|
|
|
}
|
2016-06-07 17:41:14 +00:00
|
|
|
;
|
2016-11-24 22:21:40 +00:00
|
|
|
tagString = registry + '/' + repo + ':' + version;
|
2016-06-05 02:48:39 +00:00
|
|
|
return tagString;
|
|
|
|
};
|
2016-09-04 15:56:56 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2016-06-05 12:27:56 +00:00
|
|
|
exports.cleanTagsArrayFunction = function (dockerfileArrayArg, trackingArrayArg) {
|
2016-07-18 14:56:53 +00:00
|
|
|
let cleanTagsArray = [];
|
2016-06-05 12:27:56 +00:00
|
|
|
dockerfileArrayArg.forEach(function (dockerfileArg) {
|
2016-11-24 22:21:40 +00:00
|
|
|
if (trackingArrayArg.indexOf(dockerfileArg) === -1) {
|
2016-06-05 12:27:56 +00:00
|
|
|
cleanTagsArray.push(dockerfileArg.cleanTag);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return cleanTagsArray;
|
|
|
|
};
|
2017-03-11 01:27:48 +00:00
|
|
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnBtY2kuYnVpbGQuZG9ja2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvbnBtY2kuYnVpbGQuZG9ja2VyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7QUFBQSwyQ0FBMEM7QUFDMUMsdUNBQXNDO0FBQ3RDLHdDQUF1QztBQUN2Qyw2Q0FBdUM7QUFFdkM7O0dBRUc7QUFDUSxRQUFBLEtBQUssR0FBRztJQUNqQixNQUFNLHVCQUFlLEVBQUU7U0FDcEIsSUFBSSxDQUFDLHVCQUFlLENBQUM7U0FDckIsSUFBSSxDQUFDLHNCQUFjLENBQUM7U0FDcEIsSUFBSSxDQUFDLHdCQUFnQixDQUFDO1NBQ3RCLElBQUksQ0FBQyx1QkFBZSxDQUFDLENBQUE7QUFDMUIsQ0FBQyxDQUFBLENBQUE7QUFFRDs7O0dBR0c7QUFDUSxRQUFBLGVBQWUsR0FBRztJQUMzQixJQUFJLFFBQVEsR0FBRyxNQUFNLE9BQU8sQ0FBQyxTQUFTLENBQUMsRUFBRSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsR0FBRyxFQUFFLGVBQWUsQ0FBQyxDQUFBO0lBRWxGLDhCQUE4QjtJQUM5QixJQUFJLG9CQUFvQixHQUFpQixFQUFFLENBQUE7SUFDM0MsR0FBRyxDQUFDLENBQUMsSUFBSSxjQUFjLElBQUksUUFBUSxDQUFDLENBQUMsQ0FBQztRQUNwQyxJQUFJLFlBQVksR0FBRyxJQUFJLFVBQVUsQ0FBQztZQUNoQyxRQUFRLEVBQUUsY0FBYztZQUN4QixJQUFJLEVBQUUsSUFBSTtTQUNYLENBQUMsQ0FBQTtRQUNGLG9CQUFvQixDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQTtJQUN6QyxDQUFDO0lBRUQsTUFBTSxDQUFDLG9CQUFvQixDQUFBO0FBRTdCLENBQUMsQ0FBQSxDQUFBO0FBRUQ7Ozs7R0FJRztBQUNRLFFBQUEsZUFBZSxHQUFHLENBQUMsZ0JBQThCO0lBQzFELElBQUksSUFBSSxHQUFHLE9BQU8sQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFn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
|