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