Compare commits
	
		
			50 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| b6ca597ca5 | |||
| 1539d49426 | |||
| 51fbc906a0 | |||
| 0e3732cade | |||
| 4f968472c8 | |||
| 68aa8d1302 | |||
| cbfe992ffc | |||
| 6614b1c3d3 | |||
| 20fd6a8d7b | |||
| 81eb0e252e | |||
| ac804886fa | |||
| 36cce95f1d | |||
| 0e4467e324 | |||
| 912063b9a8 | |||
| a7a41523fb | |||
| 1fdc9eb159 | |||
| d6f47a630e | |||
| 13012eaec4 | |||
| 32ef4c2f65 | |||
| 2bc892cb4c | |||
| 0ab1e1ab7c | |||
| c8c17e6cba | |||
| 23dfefd813 | |||
| e180c46ffa | |||
| d86d47f42b | |||
| 38cf8d5ac3 | |||
| 13ca161a8f | |||
| 01f5d9cb68 | |||
| a69a27cfad | |||
| 0c3ab87286 | |||
| 75be6f7974 | |||
| 8a556d6f9e | |||
| d4d4b9449d | |||
| 1d49c629a4 | |||
| 5e579901d5 | |||
| 91d10f8b8f | |||
| 2018dd98bf | |||
| 47667d0d59 | |||
| 49c2e0909d | |||
| 124d7b9f0a | |||
| a38e637e8d | |||
| 6971df069a | |||
| 78e6f13adf | |||
| 4a63e8f225 | |||
| aface1fec6 | |||
| a6424d113b | |||
| d295e36bf4 | |||
| c0aba5d487 | |||
| 0d34e2bc7f | |||
| 46c9df32d8 | 
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -1,3 +1,4 @@ | |||||||
|  | dist/ | ||||||
| node_modules/ | node_modules/ | ||||||
| coverage/ | coverage/ | ||||||
| public/ | public/ | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| # gitzone standard | # gitzone standard | ||||||
| image: hosttoday/ht-docker-node:stable | image: hosttoday/ht-docker-node:npmci | ||||||
|  |  | ||||||
| cache: | cache: | ||||||
|   paths: |   paths: | ||||||
| @@ -7,56 +7,77 @@ cache: | |||||||
|   key: "$CI_BUILD_STAGE" |   key: "$CI_BUILD_STAGE" | ||||||
|  |  | ||||||
| stages: | stages: | ||||||
|  | - security | ||||||
| - test | - test | ||||||
| - release | - release | ||||||
| - trigger | - trigger | ||||||
| - pages | - pages | ||||||
|  |  | ||||||
| before_script: | mirror: | ||||||
|   - yarn global add npmci@2.4.1 |   stage: security | ||||||
|  |   script: | ||||||
|  |   - npmci git mirror | ||||||
|  |   tags: | ||||||
|  |   - docker | ||||||
|  |  | ||||||
|  | snyk: | ||||||
|  |   stage: security | ||||||
|  |   script: | ||||||
|  |     - npmci command yarn global add snyk | ||||||
|  |     - npmci command yarn install --ignore-scripts | ||||||
|  |     - npmci command snyk test | ||||||
|  |   tags: | ||||||
|  |   - docker | ||||||
|  |  | ||||||
| testLEGACY: | testLEGACY: | ||||||
|   stage: test |   stage: test | ||||||
|   script: |   script: | ||||||
|     - npmci test legacy |   - npmci node install legacy | ||||||
|  |   - npmci npm install | ||||||
|  |   - npmci npm test | ||||||
|   coverage: /\d+.?\d+?\%\s*coverage/ |   coverage: /\d+.?\d+?\%\s*coverage/ | ||||||
|   tags: |   tags: | ||||||
|     - docker |   - docker | ||||||
|   allow_failure: true |   allow_failure: true | ||||||
|  |  | ||||||
| testLTS: | testLTS: | ||||||
|   stage: test |   stage: test | ||||||
|   script: |   script: | ||||||
|     - npmci test lts |   - npmci node install lts | ||||||
|  |   - npmci npm install | ||||||
|  |   - npmci npm test | ||||||
|   coverage: /\d+.?\d+?\%\s*coverage/ |   coverage: /\d+.?\d+?\%\s*coverage/ | ||||||
|   tags: |   tags: | ||||||
|     - docker |   - docker | ||||||
|      |      | ||||||
| testSTABLE: | testSTABLE: | ||||||
|   stage: test |   stage: test | ||||||
|   script: |   script: | ||||||
|     - npmci test stable |   - npmci node install stable | ||||||
|  |   - npmci npm install | ||||||
|  |   - npmci npm test | ||||||
|   coverage: /\d+.?\d+?\%\s*coverage/ |   coverage: /\d+.?\d+?\%\s*coverage/ | ||||||
|   tags: |   tags: | ||||||
|     - docker |   - docker | ||||||
|  |  | ||||||
| release: | release: | ||||||
|   stage: release |   stage: release | ||||||
|   script: |   script: | ||||||
|     - npmci publish npm |   - npmci npm prepare | ||||||
|  |   - npmci npm publish | ||||||
|   only: |   only: | ||||||
|     - tags |   - tags | ||||||
|   tags: |   tags: | ||||||
|     - docker |   - docker | ||||||
|  |  | ||||||
| trigger: | trigger: | ||||||
|   stage: trigger |   stage: trigger | ||||||
|   script: |   script: | ||||||
|     - npmci trigger |   - npmci trigger | ||||||
|   only: |   only: | ||||||
|     - tags |   - tags | ||||||
|   tags: |   tags: | ||||||
|     - docker |   - docker | ||||||
|  |  | ||||||
| pages: | pages: | ||||||
|   image: hosttoday/ht-docker-node:npmci |   image: hosttoday/ht-docker-node:npmci | ||||||
|   | |||||||
							
								
								
									
										15
									
								
								.snyk
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								.snyk
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,15 @@ | |||||||
|  | # Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. | ||||||
|  | version: v1.10.2 | ||||||
|  | # ignores vulnerabilities until expiry date; change duration by modifying expiry date | ||||||
|  | ignore: | ||||||
|  |   'npm:shelljs:20140723': | ||||||
|  |     - shelljs: | ||||||
|  |         reason: None given | ||||||
|  |         expires: '2018-05-04T20:41:54.426Z' | ||||||
|  |     - smartshell > shelljs: | ||||||
|  |         reason: None given | ||||||
|  |         expires: '2018-05-04T20:41:54.426Z' | ||||||
|  |     - smartssh > shelljs: | ||||||
|  |         reason: None given | ||||||
|  |         expires: '2018-05-04T20:41:54.426Z' | ||||||
|  | patch: {} | ||||||
							
								
								
									
										3
									
								
								dist/cli.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								dist/cli.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,3 +0,0 @@ | |||||||
| #!/usr/bin/env node |  | ||||||
| process.env.CLI_CALL = 'true' |  | ||||||
| var index = require("../dist/index.js"); |  | ||||||
							
								
								
									
										1
									
								
								dist/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/index.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1 +0,0 @@ | |||||||
| import './npmci.cli'; |  | ||||||
							
								
								
									
										4
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,4 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| require("./npmci.cli"); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLHVCQUFvQiJ9 |  | ||||||
							
								
								
									
										4
									
								
								dist/mod_clean/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								dist/mod_clean/index.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,4 +0,0 @@ | |||||||
| /** |  | ||||||
|  * cleans npmci config files |  | ||||||
|  */ |  | ||||||
| export declare let clean: () => Promise<void>; |  | ||||||
							
								
								
									
										20
									
								
								dist/mod_clean/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								dist/mod_clean/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,20 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./mod.plugins"); |  | ||||||
| const paths = require("../npmci.paths"); |  | ||||||
| /** |  | ||||||
|  * cleans npmci config files |  | ||||||
|  */ |  | ||||||
| exports.clean = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     plugins.smartfile.fs.removeSync(paths.NpmciPackageConfig); |  | ||||||
|     return; |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfY2xlYW4vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7OztBQUFBLHlDQUF3QztBQUN4Qyx3Q0FBdUM7QUFFdkM7O0dBRUc7QUFDUSxRQUFBLEtBQUssR0FBRztJQUNqQixPQUFPLENBQUMsU0FBUyxDQUFDLEVBQUUsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLGtCQUFrQixDQUFDLENBQUE7SUFDekQsTUFBTSxDQUFBO0FBQ1IsQ0FBQyxDQUFBLENBQUEifQ== |  | ||||||
							
								
								
									
										1
									
								
								dist/mod_clean/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/mod_clean/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1 +0,0 @@ | |||||||
| export * from '../npmci.plugins'; |  | ||||||
							
								
								
									
										7
									
								
								dist/mod_clean/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								dist/mod_clean/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,7 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| function __export(m) { |  | ||||||
|     for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; |  | ||||||
| } |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| __export(require("../npmci.plugins")); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfY2xlYW4vbW9kLnBsdWdpbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxzQ0FBZ0MifQ== |  | ||||||
							
								
								
									
										6
									
								
								dist/mod_cloudflare/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								dist/mod_cloudflare/index.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,6 +0,0 @@ | |||||||
| /** |  | ||||||
|  * handle cli input |  | ||||||
|  * @param argvArg |  | ||||||
|  */ |  | ||||||
| export declare let handleCli: (argvArg: any) => Promise<void>; |  | ||||||
| export declare let purge: (argvArg: any) => Promise<void>; |  | ||||||
							
								
								
									
										38
									
								
								dist/mod_cloudflare/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										38
									
								
								dist/mod_cloudflare/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,38 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./mod.plugins"); |  | ||||||
| let npmciCflare = new plugins.cflare.CflareAccount(); |  | ||||||
| /** |  | ||||||
|  * handle cli input |  | ||||||
|  * @param argvArg |  | ||||||
|  */ |  | ||||||
| exports.handleCli = (argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     if (argvArg._.length >= 2) { |  | ||||||
|         let action = argvArg._[1]; |  | ||||||
|         switch (action) { |  | ||||||
|             default: |  | ||||||
|                 plugins.beautylog.error(`>>npmci cloudflare ...<< action >>${action}<< not supported`); |  | ||||||
|                 process.exit(1); |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         plugins.beautylog.log(`>>npmci cloudflare ...<< cli arguments invalid... Please read the documentation.`); |  | ||||||
|         process.exit(1); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| exports.purge = (argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     npmciCflare.auth({ |  | ||||||
|         email: '', |  | ||||||
|         key: '' |  | ||||||
|     }); |  | ||||||
|     npmciCflare.purgeZone(argvArg._[1]); |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfY2xvdWRmbGFyZS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7O0FBQUEseUNBQXdDO0FBRXhDLElBQUksV0FBVyxHQUFHLElBQUksT0FBTyxDQUFDLE1BQU0sQ0FBQyxhQUFhLEVBQUUsQ0FBQTtBQUVwRDs7O0dBR0c7QUFDUSxRQUFBLFNBQVMsR0FBRyxDQUFPLE9BQU87SUFDbkMsRUFBRSxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxNQUFNLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUMxQixJQUFJLE1BQU0sR0FBVyxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFBO1FBQ2pDLE1BQU0sQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7WUFDZjtnQkFDRSxPQUFPLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxxQ0FBcUMsTUFBTSxrQkFBa0IsQ0FBQyxDQUFBO2dCQUN0RixPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFBO1FBQ25CLENBQUM7SUFDSCxDQUFDO0lBQUMsSUFBSSxDQUFDLENBQUM7UUFDTixPQUFPLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxrRkFBa0YsQ0FBQyxDQUFBO1FBQ3pHLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUE7SUFDakIsQ0FBQztBQUNILENBQUMsQ0FBQSxDQUFBO0FBRVUsUUFBQSxLQUFLLEdBQUcsQ0FBTyxPQUFPO0lBQy9CLFdBQVcsQ0FBQyxJQUFJLENBQUM7UUFDZixLQUFLLEVBQUUsRUFBRTtRQUNULEdBQUcsRUFBRSxFQUFFO0tBQ1IsQ0FBQyxDQUFBO0lBQ0YsV0FBVyxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7QUFDckMsQ0FBQyxDQUFBLENBQUEifQ== |  | ||||||
							
								
								
									
										3
									
								
								dist/mod_cloudflare/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								dist/mod_cloudflare/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,3 +0,0 @@ | |||||||
| export * from '../npmci.plugins'; |  | ||||||
| import * as cflare from 'cflare'; |  | ||||||
| export { cflare }; |  | ||||||
							
								
								
									
										9
									
								
								dist/mod_cloudflare/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								dist/mod_cloudflare/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,9 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| function __export(m) { |  | ||||||
|     for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; |  | ||||||
| } |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| __export(require("../npmci.plugins")); |  | ||||||
| const cflare = require("cflare"); |  | ||||||
| exports.cflare = cflare; |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfY2xvdWRmbGFyZS9tb2QucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHNDQUFnQztBQUVoQyxpQ0FBZ0M7QUFHNUIsd0JBQU0ifQ== |  | ||||||
							
								
								
									
										1
									
								
								dist/mod_command/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/mod_command/index.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1 +0,0 @@ | |||||||
| export declare let command: () => Promise<void>; |  | ||||||
							
								
								
									
										24
									
								
								dist/mod_command/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								dist/mod_command/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,24 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const npmci_bash_1 = require("../npmci.bash"); |  | ||||||
| exports.command = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let wrappedCommand = ''; |  | ||||||
|     let argvArray = process.argv; |  | ||||||
|     for (let i = 3; i < argvArray.length; i++) { |  | ||||||
|         wrappedCommand = wrappedCommand + argvArray[i]; |  | ||||||
|         if (i + 1 !== argvArray.length) { |  | ||||||
|             wrappedCommand = wrappedCommand + ' '; |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|     yield npmci_bash_1.bash(wrappedCommand); |  | ||||||
|     return; |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfY29tbWFuZC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7O0FBQ0EsOENBQW9DO0FBRXpCLFFBQUEsT0FBTyxHQUFHO0lBQ25CLElBQUksY0FBYyxHQUFXLEVBQUUsQ0FBQTtJQUMvQixJQUFJLFNBQVMsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFBO0lBQzVCLEdBQUcsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsU0FBUyxDQUFDLE1BQU0sRUFBRSxDQUFDLEVBQUUsRUFBRSxDQUFDO1FBQzFDLGNBQWMsR0FBRyxjQUFjLEdBQUcsU0FBUyxDQUFDLENBQUMsQ0FBQyxDQUFBO1FBQzlDLEVBQUUsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLEtBQUssU0FBUyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7WUFBQyxjQUFjLEdBQUcsY0FBYyxHQUFHLEdBQUcsQ0FBQTtRQUFDLENBQUM7SUFDM0UsQ0FBQztJQUNELE1BQU0saUJBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQTtJQUMxQixNQUFNLENBQUE7QUFDUixDQUFDLENBQUEsQ0FBQSJ9 |  | ||||||
							
								
								
									
										1
									
								
								dist/mod_command/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/mod_command/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1 +0,0 @@ | |||||||
| export * from '../npmci.plugins'; |  | ||||||
							
								
								
									
										7
									
								
								dist/mod_command/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								dist/mod_command/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,7 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| function __export(m) { |  | ||||||
|     for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; |  | ||||||
| } |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| __export(require("../npmci.plugins")); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfY29tbWFuZC9tb2QucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHNDQUFnQyJ9 |  | ||||||
							
								
								
									
										24
									
								
								dist/mod_docker/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								dist/mod_docker/index.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,24 +0,0 @@ | |||||||
| import * as helpers from './mod.helpers'; |  | ||||||
| import { Dockerfile } from './mod.classes.dockerfile'; |  | ||||||
| export { Dockerfile, helpers }; |  | ||||||
| export declare let modArgvArg: any; |  | ||||||
| /** |  | ||||||
|  * handle cli input |  | ||||||
|  * @param argvArg |  | ||||||
|  */ |  | ||||||
| export declare let handleCli: (argvArg: any) => Promise<void>; |  | ||||||
| /** |  | ||||||
|  * builds a cwd of Dockerfiles by triggering a promisechain |  | ||||||
|  */ |  | ||||||
| export declare let build: () => Promise<void>; |  | ||||||
| /** |  | ||||||
|  * login to the DockerRegistries |  | ||||||
|  */ |  | ||||||
| export declare let login: () => Promise<void>; |  | ||||||
| /** |  | ||||||
|  * logs in docker |  | ||||||
|  */ |  | ||||||
| export declare let prepare: () => Promise<void>; |  | ||||||
| export declare let push: (argvArg: any) => Promise<void>; |  | ||||||
| export declare let pull: (argvArg: any) => Promise<void>; |  | ||||||
| export declare let test: () => Promise<Dockerfile[]>; |  | ||||||
							
								
								
									
										130
									
								
								dist/mod_docker/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										130
									
								
								dist/mod_docker/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,130 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./mod.plugins"); |  | ||||||
| const helpers = require("./mod.helpers"); |  | ||||||
| exports.helpers = helpers; |  | ||||||
| // classes |  | ||||||
| const mod_classes_dockerfile_1 = require("./mod.classes.dockerfile"); |  | ||||||
| exports.Dockerfile = mod_classes_dockerfile_1.Dockerfile; |  | ||||||
| const mod_classes_dockerregistry_1 = require("./mod.classes.dockerregistry"); |  | ||||||
| const mod_classes_registrystorage_1 = require("./mod.classes.registrystorage"); |  | ||||||
| // instances |  | ||||||
| let npmciRegistryStorage = new mod_classes_registrystorage_1.RegistryStorage(); |  | ||||||
| /** |  | ||||||
|  * handle cli input |  | ||||||
|  * @param argvArg |  | ||||||
|  */ |  | ||||||
| exports.handleCli = (argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     exports.modArgvArg = argvArg; |  | ||||||
|     if (argvArg._.length >= 2) { |  | ||||||
|         let action = argvArg._[1]; |  | ||||||
|         switch (action) { |  | ||||||
|             case 'build': |  | ||||||
|                 yield exports.build(); |  | ||||||
|                 break; |  | ||||||
|             case 'login': |  | ||||||
|                 yield exports.login(); |  | ||||||
|                 break; |  | ||||||
|             case 'test': |  | ||||||
|                 yield exports.test(); |  | ||||||
|                 break; |  | ||||||
|             case 'push': |  | ||||||
|                 yield exports.push(argvArg); |  | ||||||
|                 break; |  | ||||||
|             case 'pull': |  | ||||||
|                 yield exports.pull(argvArg); |  | ||||||
|                 break; |  | ||||||
|             default: |  | ||||||
|                 plugins.beautylog.error(`>>npmci docker ...<< action >>${action}<< not supported`); |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         plugins.beautylog.log(`>>npmci docker ...<< cli arguments invalid... Please read the documentation.`); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| /** |  | ||||||
|  * builds a cwd of Dockerfiles by triggering a promisechain |  | ||||||
|  */ |  | ||||||
| exports.build = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     yield exports.prepare(); |  | ||||||
|     plugins.beautylog.log('now building Dockerfiles...'); |  | ||||||
|     yield helpers.readDockerfiles() |  | ||||||
|         .then(helpers.sortDockerfiles) |  | ||||||
|         .then(helpers.mapDockerfiles) |  | ||||||
|         .then(helpers.buildDockerfiles); |  | ||||||
| }); |  | ||||||
| /** |  | ||||||
|  * login to the DockerRegistries |  | ||||||
|  */ |  | ||||||
| exports.login = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     yield exports.prepare(); |  | ||||||
|     yield npmciRegistryStorage.loginAll(); |  | ||||||
| }); |  | ||||||
| /** |  | ||||||
|  * logs in docker |  | ||||||
|  */ |  | ||||||
| exports.prepare = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     // Always login to GitLab Registry |  | ||||||
|     if (!process.env.CI_BUILD_TOKEN || process.env.CI_BUILD_TOKEN === '') { |  | ||||||
|         plugins.beautylog.error('No registry token specified by gitlab!'); |  | ||||||
|         process.exit(1); |  | ||||||
|     } |  | ||||||
|     npmciRegistryStorage.addRegistry(new mod_classes_dockerregistry_1.DockerRegistry({ |  | ||||||
|         registryUrl: 'registry.gitlab.com', |  | ||||||
|         username: 'gitlab-ci-token', |  | ||||||
|         password: process.env.CI_BUILD_TOKEN |  | ||||||
|     })); |  | ||||||
|     // handle registries |  | ||||||
|     yield plugins.smartparam.forEachMinimatch(process.env, 'NPMCI_LOGIN_DOCKER*', (envString) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|         npmciRegistryStorage.addRegistry(mod_classes_dockerregistry_1.DockerRegistry.fromEnvString(envString)); |  | ||||||
|     })); |  | ||||||
|     return; |  | ||||||
| }); |  | ||||||
| exports.push = (argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     yield exports.prepare(); |  | ||||||
|     let registryUrlArg = argvArg._[2]; |  | ||||||
|     let suffix = null; |  | ||||||
|     if (argvArg._.length >= 4) { |  | ||||||
|         suffix = argvArg._[3]; |  | ||||||
|     } |  | ||||||
|     let dockerfileArray = yield helpers.readDockerfiles() |  | ||||||
|         .then(helpers.sortDockerfiles) |  | ||||||
|         .then(helpers.mapDockerfiles); |  | ||||||
|     let localDockerRegistry = npmciRegistryStorage.getRegistryByUrl(registryUrlArg); |  | ||||||
|     if (!localDockerRegistry) { |  | ||||||
|         plugins.beautylog.error(`Cannot push to registry ${registryUrlArg}, because it was not found in the authenticated registry list.`); |  | ||||||
|         process.exit(1); |  | ||||||
|     } |  | ||||||
|     for (let dockerfile of dockerfileArray) { |  | ||||||
|         yield dockerfile.push(localDockerRegistry, suffix); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| exports.pull = (argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     yield exports.prepare(); |  | ||||||
|     let registryUrlArg = argvArg._[2]; |  | ||||||
|     let suffix = null; |  | ||||||
|     if (argvArg._.length >= 4) { |  | ||||||
|         suffix = argvArg._[3]; |  | ||||||
|     } |  | ||||||
|     let localDockerRegistry = npmciRegistryStorage.getRegistryByUrl(registryUrlArg); |  | ||||||
|     let dockerfileArray = yield helpers.readDockerfiles() |  | ||||||
|         .then(helpers.sortDockerfiles) |  | ||||||
|         .then(helpers.mapDockerfiles); |  | ||||||
|     for (let dockerfile of dockerfileArray) { |  | ||||||
|         yield dockerfile.pull(localDockerRegistry, suffix); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| exports.test = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     yield exports.prepare(); |  | ||||||
|     return yield helpers.readDockerfiles() |  | ||||||
|         .then(helpers.testDockerfiles); |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfZG9ja2VyL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7QUFBQSx5Q0FBd0M7QUFJeEMseUNBQXdDO0FBWXRDLDBCQUFPO0FBVlQsVUFBVTtBQUNWLHFFQUFxRDtBQVFuRCxxQkFSTyxtQ0FBVSxDQVFQO0FBUFosNkVBQTZEO0FBQzdELCtFQUErRDtBQUUvRCxZQUFZO0FBQ1osSUFBSSxvQkFBb0IsR0FBRyxJQUFJLDZDQUFlLEVBQUUsQ0FBQTtBQVNoRDs7O0dBR0c7QUFDUSxRQUFBLFNBQVMsR0FBRyxDQUFPLE9BQU87SUFDbkMsa0JBQVUsR0FBRyxPQUFPLENBQUE7SUFDcEIsRUFBRSxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxNQUFNLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUMxQixJQUFJLE1BQU0sR0FBVyxPQUFPLENBQUMsQ0FBQyxDQUFFLENBQUMsQ0FBRSxDQUFBO1FBQ25DLE1BQU0sQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7WUFDZixLQUFLLE9BQU87Z0JBQ1YsTUFBTSxhQUFLLEVBQUUsQ0FBQTtnQkFDYixLQUFLLENBQUE7WUFDUCxLQUFLLE9BQU87Z0JBQ1YsTUFBTSxhQUFLLEVBQUUsQ0FBQTtnQkFDYixLQUFLLENBQUE7WUFDUCxLQUFLLE1BQU07Z0JBQ1QsTUFBTSxZQUFJLEVBQUUsQ0FBQTtnQkFDWixLQUFLLENBQUE7WUFDUCxLQUFLLE1BQU07Z0JBQ1QsTUFBTSxZQUFJLENBQUMsT0FBTyxDQUFDLENBQUE7Z0JBQ25CLEtBQUssQ0FBQTtZQUNQLEtBQUssTUFBTTtnQkFDVCxNQUFNLFlBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQTtnQkFDbkIsS0FBSyxDQUFBO1lBQ1A7Z0JBQ0UsT0FBTyxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsaUNBQWlDLE1BQU0sa0JBQWtCLENBQUMsQ0FBQTtR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 |  | ||||||
							
								
								
									
										42
									
								
								dist/mod_docker/mod.classes.dockerfile.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										42
									
								
								dist/mod_docker/mod.classes.dockerfile.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,42 +0,0 @@ | |||||||
| /// <reference types="node" /> |  | ||||||
| import { DockerRegistry } from './mod.classes.dockerregistry'; |  | ||||||
| /** |  | ||||||
|  * class Dockerfile represents a Dockerfile on disk in npmci |  | ||||||
|  */ |  | ||||||
| export declare class Dockerfile { |  | ||||||
|     filePath: string; |  | ||||||
|     repo: string; |  | ||||||
|     version: string; |  | ||||||
|     cleanTag: string; |  | ||||||
|     buildTag: string; |  | ||||||
|     containerName: string; |  | ||||||
|     content: string; |  | ||||||
|     baseImage: string; |  | ||||||
|     localBaseImageDependent: boolean; |  | ||||||
|     localBaseDockerfile: Dockerfile; |  | ||||||
|     constructor(options: { |  | ||||||
|         filePath?: string; |  | ||||||
|         fileContents?: string | Buffer; |  | ||||||
|         read?: boolean; |  | ||||||
|     }); |  | ||||||
|     /** |  | ||||||
|      * builds the Dockerfile |  | ||||||
|      */ |  | ||||||
|     build(): Promise<void>; |  | ||||||
|     /** |  | ||||||
|      * pushes the Dockerfile to a registry |  | ||||||
|      */ |  | ||||||
|     push(dockerRegistryArg: DockerRegistry, versionSuffix?: string): Promise<void>; |  | ||||||
|     /** |  | ||||||
|      * pulls the Dockerfile from a registry |  | ||||||
|      */ |  | ||||||
|     pull(registryArg: DockerRegistry, versionSuffixArg?: string): Promise<void>; |  | ||||||
|     /** |  | ||||||
|      * tests the Dockerfile; |  | ||||||
|      */ |  | ||||||
|     test(): Promise<void>; |  | ||||||
|     /** |  | ||||||
|      * gets the id of a Dockerfile |  | ||||||
|      */ |  | ||||||
|     getId(): Promise<string>; |  | ||||||
| } |  | ||||||
							
								
								
									
										97
									
								
								dist/mod_docker/mod.classes.dockerfile.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										97
									
								
								dist/mod_docker/mod.classes.dockerfile.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,97 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./mod.plugins"); |  | ||||||
| const NpmciEnv = require("../npmci.env"); |  | ||||||
| const npmci_bash_1 = require("../npmci.bash"); |  | ||||||
| const paths = require("../npmci.paths"); |  | ||||||
| const helpers = require("./mod.helpers"); |  | ||||||
| /** |  | ||||||
|  * class Dockerfile represents a Dockerfile on disk in npmci |  | ||||||
|  */ |  | ||||||
| class Dockerfile { |  | ||||||
|     constructor(options) { |  | ||||||
|         this.filePath = options.filePath; |  | ||||||
|         this.repo = NpmciEnv.repo.user + '/' + NpmciEnv.repo.repo; |  | ||||||
|         this.version = helpers.dockerFileVersion(plugins.path.parse(options.filePath).base); |  | ||||||
|         this.cleanTag = this.repo + ':' + this.version; |  | ||||||
|         this.buildTag = this.cleanTag; |  | ||||||
|         this.containerName = 'dockerfile-' + this.version; |  | ||||||
|         if (options.filePath && options.read) { |  | ||||||
|             this.content = plugins.smartfile.fs.toStringSync(plugins.path.resolve(options.filePath)); |  | ||||||
|         } |  | ||||||
|         this.baseImage = helpers.dockerBaseImage(this.content); |  | ||||||
|         this.localBaseImageDependent = false; |  | ||||||
|     } |  | ||||||
|     /** |  | ||||||
|      * builds the Dockerfile |  | ||||||
|      */ |  | ||||||
|     build() { |  | ||||||
|         return __awaiter(this, void 0, void 0, function* () { |  | ||||||
|             plugins.beautylog.info('now building Dockerfile for ' + this.cleanTag); |  | ||||||
|             let buildArgsString = yield helpers.getDockerBuildArgs(); |  | ||||||
|             let buildCommand = `docker build -t ${this.buildTag} -f ${this.filePath} ${buildArgsString} .`; |  | ||||||
|             yield npmci_bash_1.bash(buildCommand); |  | ||||||
|             return; |  | ||||||
|         }); |  | ||||||
|     } |  | ||||||
|     /** |  | ||||||
|      * pushes the Dockerfile to a registry |  | ||||||
|      */ |  | ||||||
|     push(dockerRegistryArg, versionSuffix = null) { |  | ||||||
|         return __awaiter(this, void 0, void 0, function* () { |  | ||||||
|             let pushTag = helpers.getDockerTagString(dockerRegistryArg.registryUrl, this.repo, this.version, versionSuffix); |  | ||||||
|             yield npmci_bash_1.bash(`docker tag ${this.buildTag} ${pushTag}`); |  | ||||||
|             yield npmci_bash_1.bash(`docker push ${pushTag}`); |  | ||||||
|         }); |  | ||||||
|     } |  | ||||||
|     /** |  | ||||||
|      * pulls the Dockerfile from a registry |  | ||||||
|      */ |  | ||||||
|     pull(registryArg, versionSuffixArg = null) { |  | ||||||
|         return __awaiter(this, void 0, void 0, function* () { |  | ||||||
|             let pullTag = helpers.getDockerTagString(registryArg.registryUrl, this.repo, this.version, versionSuffixArg); |  | ||||||
|             yield npmci_bash_1.bash(`docker pull ${pullTag}`); |  | ||||||
|             yield npmci_bash_1.bash(`docker tag ${pullTag} ${this.buildTag}`); |  | ||||||
|         }); |  | ||||||
|     } |  | ||||||
|     /** |  | ||||||
|      * tests the Dockerfile; |  | ||||||
|      */ |  | ||||||
|     test() { |  | ||||||
|         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.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'); |  | ||||||
|             } |  | ||||||
|             else { |  | ||||||
|                 plugins.beautylog.warn('skipping tests for ' + this.cleanTag + ' because no testfile was found!'); |  | ||||||
|             } |  | ||||||
|         }); |  | ||||||
|     } |  | ||||||
|     /** |  | ||||||
|      * gets the id of a Dockerfile |  | ||||||
|      */ |  | ||||||
|     getId() { |  | ||||||
|         return __awaiter(this, void 0, void 0, function* () { |  | ||||||
|             let containerId = yield npmci_bash_1.bash('docker inspect --type=image --format=\"{{.Id}}\" ' + this.buildTag); |  | ||||||
|             return containerId; |  | ||||||
|         }); |  | ||||||
|     } |  | ||||||
| } |  | ||||||
| exports.Dockerfile = Dockerfile; |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLmNsYXNzZXMuZG9ja2VyZmlsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3RzL21vZF9kb2NrZXIvbW9kLmNsYXNzZXMuZG9ja2VyZmlsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7O0FBQUEseUNBQXdDO0FBQ3hDLHlDQUF3QztBQUN4Qyw4Q0FBb0M7QUFDcEMsd0NBQXVDO0FBR3ZDLHlDQUF3QztBQUV4Qzs7R0FFRztBQUNIO0lBV0UsWUFBYSxPQUE4RTtRQUN6RixJQUFJLENBQUMsUUFBUSxHQUFHLE9BQU8sQ0FBQyxRQUFRLENBQUE7UUFDaEMsSUFBSSxDQUFDLElBQUksR0FBRyxRQUFRLENBQUMsSUFBSSxDQUFDLElBQUksR0FBRyxHQUFHLEdBQUcsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUE7UUFDekQsSUFBSSxDQUFDLE9BQU8sR0FBRyxPQUFPLENBQUMsaUJBQWlCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFBO1FBQ25GLElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDLElBQUksR0FBRyxHQUFHLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQTtRQUM5QyxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUE7UUFFN0IsSUFBSSxDQUFDLGFBQWEsR0FBRyxhQUFhLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQTtRQUNqRCxFQUFFLENBQUMsQ0FBQyxPQUFPLENBQUMsUUFBUSxJQUFJLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDO1lBQ3JDLElBQUksQ0FBQyxPQUFPLEdBQUcsT0FBTyxDQUFDLFNBQVMsQ0FBQyxFQUFFLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFBO1FBQzFGLENBQUM7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 |  | ||||||
							
								
								
									
										13
									
								
								dist/mod_docker/mod.classes.dockerregistry.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										13
									
								
								dist/mod_docker/mod.classes.dockerregistry.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,13 +0,0 @@ | |||||||
| export interface IDockerRegistryConstructorOptions { |  | ||||||
|     registryUrl: string; |  | ||||||
|     username: string; |  | ||||||
|     password: string; |  | ||||||
| } |  | ||||||
| export declare class DockerRegistry { |  | ||||||
|     registryUrl: string; |  | ||||||
|     username: string; |  | ||||||
|     password: string; |  | ||||||
|     constructor(optionsArg: IDockerRegistryConstructorOptions); |  | ||||||
|     static fromEnvString(envString: string): DockerRegistry; |  | ||||||
|     login(): Promise<void>; |  | ||||||
| } |  | ||||||
							
								
								
									
										50
									
								
								dist/mod_docker/mod.classes.dockerregistry.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										50
									
								
								dist/mod_docker/mod.classes.dockerregistry.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,50 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./mod.plugins"); |  | ||||||
| const npmci_bash_1 = require("../npmci.bash"); |  | ||||||
| class DockerRegistry { |  | ||||||
|     constructor(optionsArg) { |  | ||||||
|         this.registryUrl = optionsArg.registryUrl; |  | ||||||
|         this.username = optionsArg.username; |  | ||||||
|         this.password = optionsArg.password; |  | ||||||
|         plugins.beautylog.info(`created DockerRegistry for ${this.registryUrl}`); |  | ||||||
|     } |  | ||||||
|     static fromEnvString(envString) { |  | ||||||
|         let dockerRegexResultArray = envString.split('|'); |  | ||||||
|         if (dockerRegexResultArray.length !== 3) { |  | ||||||
|             plugins.beautylog.error('malformed docker env var...'); |  | ||||||
|             process.exit(1); |  | ||||||
|             return; |  | ||||||
|         } |  | ||||||
|         let registryUrl = dockerRegexResultArray[0]; |  | ||||||
|         let username = dockerRegexResultArray[1]; |  | ||||||
|         let password = dockerRegexResultArray[2]; |  | ||||||
|         return new DockerRegistry({ |  | ||||||
|             registryUrl: registryUrl, |  | ||||||
|             username: username, |  | ||||||
|             password: password |  | ||||||
|         }); |  | ||||||
|     } |  | ||||||
|     login() { |  | ||||||
|         return __awaiter(this, void 0, void 0, function* () { |  | ||||||
|             if (this.registryUrl === 'docker.io') { |  | ||||||
|                 yield npmci_bash_1.bash(`docker login -u ${this.username} -p ${this.password}`); |  | ||||||
|                 plugins.beautylog.info('Logged in to standard docker hub'); |  | ||||||
|             } |  | ||||||
|             else { |  | ||||||
|                 yield npmci_bash_1.bash(`docker login -u ${this.username} -p ${this.password} ${this.registryUrl}`); |  | ||||||
|             } |  | ||||||
|             plugins.beautylog.ok(`docker authenticated for ${this.registryUrl}!`); |  | ||||||
|         }); |  | ||||||
|     } |  | ||||||
| } |  | ||||||
| exports.DockerRegistry = DockerRegistry; |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLmNsYXNzZXMuZG9ja2VycmVnaXN0cnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfZG9ja2VyL21vZC5jbGFzc2VzLmRvY2tlcnJlZ2lzdHJ5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7QUFBQSx5Q0FBd0M7QUFDeEMsOENBQW9DO0FBUXBDO0lBSUUsWUFBYSxVQUE2QztRQUN4RCxJQUFJLENBQUMsV0FBVyxHQUFHLFVBQVUsQ0FBQyxXQUFXLENBQUE7UUFDekMsSUFBSSxDQUFDLFFBQVEsR0FBRyxVQUFVLENBQUMsUUFBUSxDQUFBO1FBQ25DLElBQUksQ0FBQyxRQUFRLEdBQUcsVUFBVSxDQUFDLFFBQVEsQ0FBQTtRQUNuQyxPQUFPLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyw4QkFBOEIsSUFBSSxDQUFDLFdBQVcsRUFBRSxDQUFDLENBQUE7SUFDMUUsQ0FBQztJQUVELE1BQU0sQ0FBQyxhQUFhLENBQUUsU0FBaUI7UUFDckMsSUFBSSxzQkFBc0IsR0FBRyxTQUFTLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFBO1FBQ2pELEVBQUUsQ0FBQyxDQUFDLHNCQUFzQixDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ3hDLE9BQU8sQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLDZCQUE2QixDQUFDLENBQUE7WUFDdEQsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQTtZQUNmLE1BQU0sQ0FBQTtRQUNSLENBQUM7UUFDRCxJQUFJLFdBQVcsR0FBRyxzQkFBc0IsQ0FBQyxDQUFDLENBQUMsQ0FBQTtRQUMzQyxJQUFJLFFBQVEsR0FBRyxzQkFBc0IsQ0FBQyxDQUFDLENBQUMsQ0FBQTtRQUN4QyxJQUFJLFFBQVEsR0FBRyxzQkFBc0IsQ0FBQyxDQUFDLENBQUMsQ0FBQTtRQUN4QyxNQUFNLENBQUMsSUFBSSxjQUFjLENBQUM7WUFDeEIsV0FBVyxFQUFFLFdBQVc7WUFDeEIsUUFBUSxFQUFFLFFBQVE7WUFDbEIsUUFBUSxFQUFFLFFBQVE7U0FDbkIsQ0FBQyxDQUFBO0lBQ0osQ0FBQztJQUVLLEtBQUs7O1lBQ1QsRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLFdBQVcsS0FBSyxXQUFXLENBQUMsQ0FBQyxDQUFDO2dCQUNyQyxNQUFNLGlCQUFJLENBQUMsbUJBQW1CLElBQUksQ0FBQyxRQUFRLE9BQU8sSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUE7Z0JBQ2xFLE9BQU8sQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLGtDQUFrQyxDQUFDLENBQUE7WUFDNUQsQ0FBQztZQUFDLElBQUksQ0FBQyxDQUFDO2dCQUNOLE1BQU0saUJBQUksQ0FBQyxtQkFBbUIsSUFBSSxDQUFDLFFBQVEsT0FBTyxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFBO1lBQ3hGLENBQUM7WUFDRCxPQUFPLENBQUMsU0FBUyxDQUFDLEVBQUUsQ0FBQyw0QkFBNEIsSUFBSSxDQUFDLFdBQVcsR0FBRyxDQUFDLENBQUE7UUFDdkUsQ0FBQztLQUFBO0NBQ0Y7QUFyQ0Qsd0NBcUNDIn0= |  | ||||||
| @@ -1,9 +0,0 @@ | |||||||
| import { Objectmap } from 'lik'; |  | ||||||
| import { DockerRegistry } from './mod.classes.dockerregistry'; |  | ||||||
| export declare class RegistryStorage { |  | ||||||
|     objectMap: Objectmap<DockerRegistry>; |  | ||||||
|     constructor(); |  | ||||||
|     addRegistry(registryArg: DockerRegistry): void; |  | ||||||
|     getRegistryByUrl(registryUrlArg: string): DockerRegistry; |  | ||||||
|     loginAll(): Promise<void>; |  | ||||||
| } |  | ||||||
							
								
								
									
										36
									
								
								dist/mod_docker/mod.classes.registrystorage.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										36
									
								
								dist/mod_docker/mod.classes.registrystorage.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,36 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./mod.plugins"); |  | ||||||
| const lik_1 = require("lik"); |  | ||||||
| class RegistryStorage { |  | ||||||
|     constructor() { |  | ||||||
|         this.objectMap = new lik_1.Objectmap(); |  | ||||||
|         // Nothing here |  | ||||||
|     } |  | ||||||
|     addRegistry(registryArg) { |  | ||||||
|         this.objectMap.add(registryArg); |  | ||||||
|     } |  | ||||||
|     getRegistryByUrl(registryUrlArg) { |  | ||||||
|         return this.objectMap.find(registryArg => { |  | ||||||
|             return registryArg.registryUrl === registryUrlArg; |  | ||||||
|         }); |  | ||||||
|     } |  | ||||||
|     loginAll() { |  | ||||||
|         return __awaiter(this, void 0, void 0, function* () { |  | ||||||
|             yield this.objectMap.forEach((registryArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|                 yield registryArg.login(); |  | ||||||
|             })); |  | ||||||
|             plugins.beautylog.success('logged in successfully into all available DockerRegistries!'); |  | ||||||
|         }); |  | ||||||
|     } |  | ||||||
| } |  | ||||||
| exports.RegistryStorage = RegistryStorage; |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLmNsYXNzZXMucmVnaXN0cnlzdG9yYWdlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHMvbW9kX2RvY2tlci9tb2QuY2xhc3Nlcy5yZWdpc3RyeXN0b3JhZ2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7OztBQUFBLHlDQUF3QztBQUN4Qyw2QkFBK0I7QUFJL0I7SUFFRTtRQURBLGNBQVMsR0FBRyxJQUFJLGVBQVMsRUFBa0IsQ0FBQTtRQUV6QyxlQUFlO0lBQ2pCLENBQUM7SUFFRCxXQUFXLENBQUUsV0FBMkI7UUFDdEMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsV0FBVyxDQUFDLENBQUE7SUFDakMsQ0FBQztJQUVELGdCQUFnQixDQUFFLGNBQXNCO1FBQ3RDLE1BQU0sQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxXQUFXO1lBQ3BDLE1BQU0sQ0FBQyxXQUFXLENBQUMsV0FBVyxLQUFLLGNBQWMsQ0FBQTtRQUNuRCxDQUFDLENBQUMsQ0FBQTtJQUNKLENBQUM7SUFFSyxRQUFROztZQUNaLE1BQU0sSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsQ0FBTSxXQUFXO2dCQUM1QyxNQUFNLFdBQVcsQ0FBQyxLQUFLLEVBQUUsQ0FBQTtZQUMzQixDQUFDLENBQUEsQ0FBQyxDQUFBO1lBQ0YsT0FBTyxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsNkRBQTZELENBQUMsQ0FBQTtRQUMxRixDQUFDO0tBQUE7Q0FDRjtBQXRCRCwwQ0FzQkMifQ== |  | ||||||
							
								
								
									
										43
									
								
								dist/mod_docker/mod.helpers.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										43
									
								
								dist/mod_docker/mod.helpers.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,43 +0,0 @@ | |||||||
| import { Dockerfile } from './mod.classes.dockerfile'; |  | ||||||
| /** |  | ||||||
|  * creates instance of class Dockerfile for all Dockerfiles in cwd |  | ||||||
|  * @returns Promise<Dockerfile[]> |  | ||||||
|  */ |  | ||||||
| export declare let readDockerfiles: () => Promise<Dockerfile[]>; |  | ||||||
| /** |  | ||||||
|  * sorts Dockerfiles into a dependency chain |  | ||||||
|  * @param sortableArrayArg an array of instances of class Dockerfile |  | ||||||
|  * @returns Promise<Dockerfile[]> |  | ||||||
|  */ |  | ||||||
| export declare let sortDockerfiles: (sortableArrayArg: Dockerfile[]) => Promise<Dockerfile[]>; |  | ||||||
| /** |  | ||||||
|  * maps local Dockerfiles dependencies to the correspoding Dockerfile class instances |  | ||||||
|  */ |  | ||||||
| export declare let mapDockerfiles: (sortedArray: Dockerfile[]) => Promise<Dockerfile[]>; |  | ||||||
| /** |  | ||||||
|  * builds the correspoding real docker image for each Dockerfile class instance |  | ||||||
|  */ |  | ||||||
| export declare let buildDockerfiles: (sortedArrayArg: Dockerfile[]) => Promise<Dockerfile[]>; |  | ||||||
| /** |  | ||||||
|  * tests all Dockerfiles in by calling class Dockerfile.test(); |  | ||||||
|  * @param sortedArrayArg Dockerfile[] that contains all Dockerfiles in cwd |  | ||||||
|  */ |  | ||||||
| export declare let testDockerfiles: (sortedArrayArg: Dockerfile[]) => Promise<Dockerfile[]>; |  | ||||||
| /** |  | ||||||
|  * returns a version for a docker file |  | ||||||
|  * @execution SYNC |  | ||||||
|  */ |  | ||||||
| export declare let dockerFileVersion: (dockerfileNameArg: string) => string; |  | ||||||
| /** |  | ||||||
|  * returns the docker base image for a Dockerfile |  | ||||||
|  */ |  | ||||||
| export declare let dockerBaseImage: (dockerfileContentArg: string) => string; |  | ||||||
| /** |  | ||||||
|  * returns the docker tag |  | ||||||
|  */ |  | ||||||
| export declare let getDockerTagString: (registryArg: string, repoArg: string, versionArg: string, suffixArg?: string) => string; |  | ||||||
| export declare let getDockerBuildArgs: () => Promise<string>; |  | ||||||
| /** |  | ||||||
|  * |  | ||||||
|  */ |  | ||||||
| export declare let cleanTagsArrayFunction: (dockerfileArrayArg: Dockerfile[], trackingArrayArg: Dockerfile[]) => string[]; |  | ||||||
							
								
								
									
										172
									
								
								dist/mod_docker/mod.helpers.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										172
									
								
								dist/mod_docker/mod.helpers.js
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										1
									
								
								dist/mod_docker/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/mod_docker/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1 +0,0 @@ | |||||||
| export * from '../npmci.plugins'; |  | ||||||
							
								
								
									
										7
									
								
								dist/mod_docker/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								dist/mod_docker/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,7 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| function __export(m) { |  | ||||||
|     for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; |  | ||||||
| } |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| __export(require("../npmci.plugins")); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfZG9ja2VyL21vZC5wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsc0NBQWdDIn0= |  | ||||||
							
								
								
									
										6
									
								
								dist/mod_git/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								dist/mod_git/index.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,6 +0,0 @@ | |||||||
| /** |  | ||||||
|  * handle cli input |  | ||||||
|  * @param argvArg |  | ||||||
|  */ |  | ||||||
| export declare let handleCli: (argvArg: any) => Promise<void>; |  | ||||||
| export declare let mirror: () => Promise<void>; |  | ||||||
							
								
								
									
										33
									
								
								dist/mod_git/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										33
									
								
								dist/mod_git/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,33 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./mod.plugins"); |  | ||||||
| /** |  | ||||||
|  * handle cli input |  | ||||||
|  * @param argvArg |  | ||||||
|  */ |  | ||||||
| exports.handleCli = (argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     if (argvArg._.length >= 2) { |  | ||||||
|         let action = argvArg._[1]; |  | ||||||
|         switch (action) { |  | ||||||
|             case 'mirror': |  | ||||||
|                 yield exports.mirror(); |  | ||||||
|                 break; |  | ||||||
|             default: |  | ||||||
|                 plugins.beautylog.error(`>>npmci git ...<< action >>${action}<< not supported`); |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         plugins.beautylog.log(`>>npmci git ...<< cli arguments invalid... Please read the documentation.`); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| exports.mirror = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfZ2l0L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7QUFBQSx5Q0FBd0M7QUFFeEM7OztHQUdHO0FBQ1EsUUFBQSxTQUFTLEdBQUcsQ0FBTyxPQUFPO0lBQ25DLEVBQUUsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDMUIsSUFBSSxNQUFNLEdBQVcsT0FBTyxDQUFDLENBQUMsQ0FBRSxDQUFDLENBQUUsQ0FBQTtRQUNuQyxNQUFNLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO1lBQ2YsS0FBSyxRQUFRO2dCQUNYLE1BQU0sY0FBTSxFQUFFLENBQUE7Z0JBQ2QsS0FBSyxDQUFBO1lBQ1A7Z0JBQ0UsT0FBTyxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsOEJBQThCLE1BQU0sa0JBQWtCLENBQUMsQ0FBQTtRQUNuRixDQUFDO0lBQ0gsQ0FBQztJQUFDLElBQUksQ0FBQyxDQUFDO1FBQ04sT0FBTyxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsMkVBQTJFLENBQUMsQ0FBQTtJQUNwRyxDQUFDO0FBQ0gsQ0FBQyxDQUFBLENBQUE7QUFFVSxRQUFBLE1BQU0sR0FBRztBQUVwQixDQUFDLENBQUEsQ0FBQSJ9 |  | ||||||
							
								
								
									
										1
									
								
								dist/mod_git/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/mod_git/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1 +0,0 @@ | |||||||
| export * from '../npmci.plugins'; |  | ||||||
							
								
								
									
										7
									
								
								dist/mod_git/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								dist/mod_git/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,7 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| function __export(m) { |  | ||||||
|     for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; |  | ||||||
| } |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| __export(require("../npmci.plugins")); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfZ2l0L21vZC5wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsc0NBQWdDIn0= |  | ||||||
							
								
								
									
										10
									
								
								dist/mod_node/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										10
									
								
								dist/mod_node/index.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,10 +0,0 @@ | |||||||
| /** |  | ||||||
|  * handle cli input |  | ||||||
|  * @param argvArg |  | ||||||
|  */ |  | ||||||
| export declare let handleCli: (argvArg: any) => Promise<void>; |  | ||||||
| /** |  | ||||||
|  * Install a specific version of node |  | ||||||
|  * @param versionArg |  | ||||||
|  */ |  | ||||||
| export declare let install: (versionArg: any) => Promise<void>; |  | ||||||
							
								
								
									
										87
									
								
								dist/mod_node/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										87
									
								
								dist/mod_node/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,87 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("../npmci.plugins"); |  | ||||||
| const npmciConfig = require("../npmci.config"); |  | ||||||
| const npmci_bash_1 = require("../npmci.bash"); |  | ||||||
| /** |  | ||||||
|  * handle cli input |  | ||||||
|  * @param argvArg |  | ||||||
|  */ |  | ||||||
| exports.handleCli = (argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     if (argvArg._.length >= 3) { |  | ||||||
|         let action = argvArg._[1]; |  | ||||||
|         switch (action) { |  | ||||||
|             case 'install': |  | ||||||
|                 yield exports.install(argvArg._[2]); |  | ||||||
|                 break; |  | ||||||
|             default: |  | ||||||
|                 plugins.beautylog.error(`>>npmci node ...<< action >>${action}<< not supported`); |  | ||||||
|                 process.exit(1); |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         plugins.beautylog.error(`>>npmci node ...<< cli arguments invalid... Please read the documentation.`); |  | ||||||
|         process.exit(1); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| /** |  | ||||||
|  * Install a specific version of node |  | ||||||
|  * @param versionArg |  | ||||||
|  */ |  | ||||||
| exports.install = (versionArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     plugins.beautylog.log(`now installing node version ${versionArg}`); |  | ||||||
|     let version; |  | ||||||
|     if (versionArg === 'stable') { |  | ||||||
|         version = 'stable'; |  | ||||||
|     } |  | ||||||
|     else if (versionArg === 'lts') { |  | ||||||
|         version = '6'; |  | ||||||
|     } |  | ||||||
|     else if (versionArg === 'legacy') { |  | ||||||
|         version = '6'; |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         version = versionArg; |  | ||||||
|     } |  | ||||||
|     if (yield npmci_bash_1.nvmAvailable.promise) { |  | ||||||
|         yield npmci_bash_1.bash(`nvm install ${version} && nvm alias default ${version}`); |  | ||||||
|         plugins.beautylog.success(`Node version ${version} successfully installed!`); |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         plugins.beautylog.warn('Nvm not in path so staying at installed node version!'); |  | ||||||
|     } |  | ||||||
|     yield npmci_bash_1.bash('node -v'); |  | ||||||
|     yield npmci_bash_1.bash('npm -v'); |  | ||||||
|     // lets look for further config |  | ||||||
|     yield npmciConfig.getConfig() |  | ||||||
|         .then((configArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|         plugins.beautylog.log('Now checking for needed global npm tools...'); |  | ||||||
|         for (let npmTool of configArg.npmGlobalTools) { |  | ||||||
|             plugins.beautylog.info(`Checking for global "${npmTool}"`); |  | ||||||
|             let whichOutput = yield npmci_bash_1.bashNoError(`which ${npmTool}`); |  | ||||||
|             let toolAvailable = !((/not\sfound/.test(whichOutput)) || whichOutput === ''); |  | ||||||
|             if (toolAvailable) { |  | ||||||
|                 plugins.beautylog.log(`Tool ${npmTool} is available`); |  | ||||||
|             } |  | ||||||
|             else { |  | ||||||
|                 plugins.beautylog.info(`globally installing ${npmTool} from npm`); |  | ||||||
|                 if (yield npmci_bash_1.yarnAvailable.promise) { |  | ||||||
|                     yield npmci_bash_1.bash(`yarn global add ${npmTool}`); |  | ||||||
|                 } |  | ||||||
|                 else { |  | ||||||
|                     yield npmci_bash_1.bash(`npm install ${npmTool} -q -g`); |  | ||||||
|                 } |  | ||||||
|             } |  | ||||||
|         } |  | ||||||
|         plugins.beautylog.success('all global npm tools specified in npmextra.json are now available!'); |  | ||||||
|     })); |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2Rfbm9kZS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7O0FBQUEsNENBQTJDO0FBQzNDLCtDQUE4QztBQUM5Qyw4Q0FLc0I7QUFFdEI7OztHQUdHO0FBQ1EsUUFBQSxTQUFTLEdBQUcsQ0FBTyxPQUFPO0lBQ25DLEVBQUUsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDMUIsSUFBSSxNQUFNLEdBQVcsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQTtRQUNqQyxNQUFNLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO1lBQ2YsS0FBSyxTQUFTO2dCQUNaLE1BQU0sZUFBTyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQTtnQkFDM0IsS0FBSyxDQUFBO1lBQ1A7Z0JBQ0UsT0FBTyxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsK0JBQStCLE1BQU0sa0JBQWtCLENBQUMsQ0FBQTtnQkFDaEYsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQTtRQUNuQixDQUFDO0lBQ0gsQ0FBQztJQUFDLElBQUksQ0FBQyxDQUFDO1FBQ04sT0FBTyxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsNEVBQTRFLENBQUMsQ0FBQTtRQUNyRyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFBO0lBQ2pCLENBQUM7QUFFSCxDQUFDLENBQUEsQ0FBQTtBQUVEOzs7R0FHRztBQUNRLFFBQUEsT0FBTyxHQUFHLENBQU8sVUFBVTtJQUNwQyxPQUFPLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQywrQkFBK0IsVUFBVSxFQUFFLENBQUMsQ0FBQTtJQUNsRSxJQUFJLE9BQWUsQ0FBQTtJQUNuQixFQUFFLENBQUMsQ0FBQyxVQUFVLEtBQUssUUFB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 |  | ||||||
							
								
								
									
										6
									
								
								dist/mod_npm/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								dist/mod_npm/index.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,6 +0,0 @@ | |||||||
| /** |  | ||||||
|  * handle cli input |  | ||||||
|  * @param argvArg |  | ||||||
|  */ |  | ||||||
| export declare let handleCli: (argvArg: any) => Promise<void>; |  | ||||||
| export declare let test: () => Promise<void>; |  | ||||||
							
								
								
									
										76
									
								
								dist/mod_npm/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										76
									
								
								dist/mod_npm/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,76 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./mod.plugins"); |  | ||||||
| const npmci_bash_1 = require("../npmci.bash"); |  | ||||||
| /** |  | ||||||
|  * handle cli input |  | ||||||
|  * @param argvArg |  | ||||||
|  */ |  | ||||||
| exports.handleCli = (argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     if (argvArg._.length >= 2) { |  | ||||||
|         let action = argvArg._[1]; |  | ||||||
|         switch (action) { |  | ||||||
|             case 'install': |  | ||||||
|                 yield install(); |  | ||||||
|                 break; |  | ||||||
|             case 'prepare': |  | ||||||
|                 yield prepare(); |  | ||||||
|                 break; |  | ||||||
|             case 'test': |  | ||||||
|                 yield exports.test(); |  | ||||||
|                 break; |  | ||||||
|             case 'publish': |  | ||||||
|                 yield publish(); |  | ||||||
|                 break; |  | ||||||
|             default: |  | ||||||
|                 plugins.beautylog.error(`>>npmci npm ...<< action >>${action}<< not supported`); |  | ||||||
|                 process.exit(1); |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         plugins.beautylog.log(`>>npmci npm ...<< cli arguments invalid... Please read the documentation.`); |  | ||||||
|         process.exit(1); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| /** |  | ||||||
|  * authenticates npm with token from env var |  | ||||||
|  */ |  | ||||||
| let prepare = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let npmrcPrefix = '//registry.npmjs.org/:_authToken='; |  | ||||||
|     let npmToken = process.env.NPMCI_TOKEN_NPM; |  | ||||||
|     let npmrcFileString = npmrcPrefix + npmToken; |  | ||||||
|     if (npmToken) { |  | ||||||
|         plugins.beautylog.info('found access token'); |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         plugins.beautylog.error('no access token found! Exiting!'); |  | ||||||
|         process.exit(1); |  | ||||||
|     } |  | ||||||
|     plugins.smartfile.memory.toFsSync(npmrcFileString, '/root/.npmrc'); |  | ||||||
|     return; |  | ||||||
| }); |  | ||||||
| let publish = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     yield npmci_bash_1.bash('npm publish'); |  | ||||||
| }); |  | ||||||
| let install = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     plugins.beautylog.info('now installing dependencies:'); |  | ||||||
|     if (yield npmci_bash_1.yarnAvailable.promise) { |  | ||||||
|         yield npmci_bash_1.bash('yarn install'); |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         yield npmci_bash_1.bash('npm install'); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| exports.test = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     plugins.beautylog.info('now starting tests:'); |  | ||||||
|     yield npmci_bash_1.bash('yarn test'); |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfbnBtL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7QUFBQSx5Q0FBd0M7QUFFeEMsOENBS3NCO0FBRXRCOzs7R0FHRztBQUNRLFFBQUEsU0FBUyxHQUFHLENBQU8sT0FBTztJQUNuQyxFQUFFLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLE1BQU0sSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQzFCLElBQUksTUFBTSxHQUFXLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7UUFDakMsTUFBTSxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQztZQUNmLEtBQUssU0FBUztnQkFDWixNQUFNLE9BQU8sRUFBRSxDQUFBO2dCQUNmLEtBQUssQ0FBQTtZQUNQLEtBQUssU0FBUztnQkFDWixNQUFNLE9BQU8sRUFBRSxDQUFBO2dCQUNmLEtBQUssQ0FBQTtZQUNQLEtBQUssTUFBTTtnQkFDVCxNQUFNLFlBQUksRUFBRSxDQUFBO2dCQUNaLEtBQUssQ0FBQTtZQUNQLEtBQUssU0FBUztnQkFDWixNQUFNLE9BQU8sRUFBRSxDQUFBO2dCQUNmLEtBQUssQ0FBQTtZQUNQO2dCQUNFLE9BQU8sQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLDhCQUE4QixNQUFNLGtCQUFrQixDQUFDLENBQUE7Z0JBQy9FLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUE7UUFDbkIsQ0FBQztJQUNILENBQUM7SUFBQyxJQUFJLENBQUMsQ0FBQztRQUNOLE9BQU8sQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLDJFQUEyRSxDQUFDLENBQUE7UUFDbEcsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQTtJQUNqQixDQUFDO0FBQ0gsQ0FBQyxDQUFBLENBQUE7QUFFRDs7R0FFRztBQUNILElBQUksT0FBTyxHQUFHO0lBQ1osSUFBSSxXQUFXLEdBQVcsbUNBQW1DLENBQUE7SUFDN0QsSUFBSSxRQUFRLEdBQVcsT0FBTyxDQUFDLEdBQUcsQ0FBQyxlQUFlLENBQUE7SUFDbEQsSUFBSSxlQUFlLEdBQVcsV0FBVyxHQUFHLFFBQVEsQ0FBQTtJQUNwRCxFQUFFLENBQUMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDO1FBQ2IsT0FBTyxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsb0JBQW9CLENBQUMsQ0FBQTtJQUM5QyxDQUFDO0lBQUMsSUFBSSxDQUFDLENBQUM7UUFDTixPQUFPLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxpQ0FBaUMsQ0FBQyxDQUFBO1FBQzFELE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUE7SUFDakIsQ0FBQztJQUNELE9BQU8sQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxlQUFlLEVBQUUsY0FBYyxDQUFDLENBQUE7SUFDbEUsTUFBTSxDQUFBO0FBQ1IsQ0FBQyxDQUFBLENBQUE7QUFFRCxJQUFJLE9BQU8sR0FBRztJQUNaLE1BQU0saUJBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQTtBQUMzQixDQUFDLENBQUEsQ0FBQTtBQUVELElBQUksT0FBTyxHQUFHO0lBQ1osT0FBTyxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsOEJBQThCLENBQUMsQ0FBQTtJQUN0RCxFQUFFLENBQUMsQ0FBQyxNQUFNLDBCQUFhLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQztRQUNoQyxNQUFNLGlCQUFJLENBQUMsY0FBYyxDQUFDLENBQUE7SUFDNUIsQ0FBQztJQUFDLElBQUksQ0FBQyxDQUFDO1FBQ04sTUFBTSxpQkFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFBO0lBQzNCLENBQUM7QUFDSCxDQUFDLENBQUEsQ0FBQTtBQUVVLFFBQUEsSUFBSSxHQUFHO0lBQ2hCLE9BQU8sQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUE7SUFDN0MsTUFBTSxpQkFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFBO0FBQ3pCLENBQUMsQ0FBQSxDQUFBIn0= |  | ||||||
							
								
								
									
										1
									
								
								dist/mod_npm/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/mod_npm/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1 +0,0 @@ | |||||||
| export * from '../npmci.plugins'; |  | ||||||
							
								
								
									
										7
									
								
								dist/mod_npm/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								dist/mod_npm/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,7 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| function __export(m) { |  | ||||||
|     for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; |  | ||||||
| } |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| __export(require("../npmci.plugins")); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfbnBtL21vZC5wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsc0NBQWdDIn0= |  | ||||||
							
								
								
									
										5
									
								
								dist/mod_ssh/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								dist/mod_ssh/index.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,5 +0,0 @@ | |||||||
| export declare let handleCli: (argvArg: any) => Promise<void>; |  | ||||||
| /** |  | ||||||
|  * checks for ENV vars in form of NPMCI_SSHKEY_* and deploys any found ones |  | ||||||
|  */ |  | ||||||
| export declare let prepare: () => Promise<void>; |  | ||||||
							
								
								
									
										71
									
								
								dist/mod_ssh/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										71
									
								
								dist/mod_ssh/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,71 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./mod.plugins"); |  | ||||||
| let sshInstance; |  | ||||||
| exports.handleCli = (argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     if (argvArg._.length >= 2) { |  | ||||||
|         let action = argvArg._[1]; |  | ||||||
|         switch (action) { |  | ||||||
|             case 'prepare': |  | ||||||
|                 yield exports.prepare(); |  | ||||||
|                 break; |  | ||||||
|             default: |  | ||||||
|                 plugins.beautylog.error(`action >>${action}<< not supported`); |  | ||||||
|                 process.exit(1); |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         plugins.beautylog.error(`>>npmci ssh ...<< please specify an action!`); |  | ||||||
|         process.exit(1); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| /** |  | ||||||
|  * checks if not undefined |  | ||||||
|  */ |  | ||||||
| let notUndefined = (stringArg) => { |  | ||||||
|     return (stringArg && stringArg !== 'undefined' && stringArg !== '##'); |  | ||||||
| }; |  | ||||||
| /** |  | ||||||
|  * checks for ENV vars in form of NPMCI_SSHKEY_* and deploys any found ones |  | ||||||
|  */ |  | ||||||
| exports.prepare = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     sshInstance = new plugins.smartssh.SshInstance(); // init ssh instance |  | ||||||
|     plugins.smartparam.forEachMinimatch(process.env, 'NPMCI_SSHKEY_*', evaluateSshEnv); |  | ||||||
|     if (!process.env.NPMTS_TEST) { |  | ||||||
|         sshInstance.writeToDisk(); |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         plugins.beautylog.log('In test mode, so not storing SSH keys to disk!'); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| /** |  | ||||||
|  * gets called for each found SSH ENV Var and deploys it |  | ||||||
|  */ |  | ||||||
| let evaluateSshEnv = (sshkeyEnvVarArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let sshEnvArray = sshkeyEnvVarArg.split('|'); |  | ||||||
|     let sshKey = new plugins.smartssh.SshKey(); |  | ||||||
|     plugins.beautylog.info('Found SSH identity for ' + sshEnvArray[1]); |  | ||||||
|     if (notUndefined(sshEnvArray[0])) { |  | ||||||
|         plugins.beautylog.log('---> host defined!'); |  | ||||||
|         sshKey.host = sshEnvArray[0]; |  | ||||||
|     } |  | ||||||
|     if (notUndefined(sshEnvArray[1])) { |  | ||||||
|         plugins.beautylog.log('---> privKey defined!'); |  | ||||||
|         sshKey.privKeyBase64 = sshEnvArray[1]; |  | ||||||
|     } |  | ||||||
|     if (notUndefined(sshEnvArray[2])) { |  | ||||||
|         plugins.beautylog.log('---> pubKey defined!'); |  | ||||||
|         sshKey.pubKeyBase64 = sshEnvArray[2]; |  | ||||||
|     } |  | ||||||
|     sshInstance.addKey(sshKey); |  | ||||||
|     return; |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2Rfc3NoL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7QUFBQSx5Q0FBd0M7QUFDeEMsSUFBSSxXQUF5QyxDQUFBO0FBRWxDLFFBQUEsU0FBUyxHQUFHLENBQU8sT0FBTztJQUNuQyxFQUFFLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLE1BQU0sSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQzFCLElBQUksTUFBTSxHQUFXLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7UUFDakMsTUFBTSxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQztZQUNmLEtBQUssU0FBUztnQkFDWixNQUFNLGVBQU8sRUFBRSxDQUFBO2dCQUNmLEtBQUssQ0FBQTtZQUNQO2dCQUNFLE9BQU8sQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLFlBQVksTUFBTSxrQkFBa0IsQ0FBQyxDQUFBO2dCQUM3RCxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFBO1FBQ25CLENBQUM7SUFDSCxDQUFDO0lBQUMsSUFBSSxDQUFDLENBQUM7UUFDTixPQUFPLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyw2Q0FBNkMsQ0FBQyxDQUFBO1FBQ3RFLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUE7SUFDakIsQ0FBQztBQUNILENBQUMsQ0FBQSxDQUFBO0FBRUQ7O0dBRUc7QUFDSCxJQUFJLFlBQVksR0FBRyxDQUFDLFNBQWlCO0lBQ25DLE1BQU0sQ0FBQyxDQUFDLFNBQVMsSUFBSSxTQUFTLEtBQUssV0FBVyxJQUFJLFNBQVMsS0FBSyxJQUFJLENBQUMsQ0FBQTtBQUN2RSxDQUFDLENBQUE7QUFFRDs7R0FFRztBQUNRLFFBQUEsT0FBTyxHQUFHO0lBQ25CLFdBQVcsR0FBRyxJQUFJLE9BQU8sQ0FBQyxRQUFRLENBQUMsV0FBVyxFQUFFLENBQUEsQ0FBQyxvQkFBb0I7SUFDckUsT0FBTyxDQUFDLFVBQVUsQ0FBQyxnQkFBZ0IsQ0FBQyxPQUFPLENBQUMsR0FBRyxFQUFFLGdCQUFnQixFQUFFLGNBQWMsQ0FBQyxDQUFBO0lBQ2xGLEVBQUUsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDO1FBQzVCLFdBQVcsQ0FBQyxXQUFXLEVBQUUsQ0FBQTtJQUMzQixDQUFDO0lBQUMsSUFBSSxDQUFDLENBQUM7UUFDTixPQUFPLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxnREFBZ0QsQ0FBQyxDQUFBO0lBQ3pFLENBQUM7QUFDSCxDQUFDLENBQUEsQ0FBQTtBQUVEOztHQUVHO0FBQ0gsSUFBSSxjQUFjLEdBQUcsQ0FBTyxlQUF1QjtJQUNqRCxJQUFJLFdBQVcsR0FBRyxlQUFlLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFBO0lBQzVDLElBQUksTUFBTSxHQUFHLElBQUksT0FBTyxDQUFDLFFBQVEsQ0FBQyxNQUFNLEVBQUUsQ0FBQTtJQUMxQyxPQUFPLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyx5QkFBeUIsR0FBRyxXQUFXLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQTtJQUNsRSxFQUFFLENBQUMsQ0FBQyxZQUFZLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ2pDLE9BQU8sQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLG9CQUFvQixDQUFDLENBQUE7UUFDM0MsTUFBTSxDQUFDLElBQUksR0FBRyxXQUFXLENBQUMsQ0FBQyxDQUFDLENBQUE7SUFDOUIsQ0FBQztJQUNELEVBQUUsQ0FBQyxDQUFDLFlBQVksQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDakMsT0FBTyxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsdUJBQXVCLENBQUMsQ0FBQTtRQUM5QyxNQUFNLENBQUMsYUFBYSxHQUFHLFdBQVcsQ0FBQyxDQUFDLENBQUMsQ0FBQTtJQUN2QyxDQUFDO0lBQ0QsRUFBRSxDQUFDLENBQUMsWUFBWSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNqQyxPQUFPLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFBO1FBQzdDLE1BQU0sQ0FBQyxZQUFZLEdBQUcsV0FBVyxDQUFDLENBQUMsQ0FBQyxDQUFBO0lBQ3RDLENBQUM7SUFFRCxXQUFXLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFBO0lBQzFCLE1BQU0sQ0FBQTtBQUNSLENBQUMsQ0FBQSxDQUFBIn0= |  | ||||||
							
								
								
									
										1
									
								
								dist/mod_ssh/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/mod_ssh/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1 +0,0 @@ | |||||||
| export * from '../npmci.plugins'; |  | ||||||
							
								
								
									
										7
									
								
								dist/mod_ssh/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								dist/mod_ssh/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,7 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| function __export(m) { |  | ||||||
|     for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; |  | ||||||
| } |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| __export(require("../npmci.plugins")); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2Rfc3NoL21vZC5wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsc0NBQWdDIn0= |  | ||||||
							
								
								
									
										1
									
								
								dist/mod_trigger/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/mod_trigger/index.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1 +0,0 @@ | |||||||
| export declare let trigger: () => Promise<void>; |  | ||||||
							
								
								
									
										35
									
								
								dist/mod_trigger/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										35
									
								
								dist/mod_trigger/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,35 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./mod.plugins"); |  | ||||||
| let triggerValueRegex = /^([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|?([a-zA-Z0-9\.\-\/]*)/; |  | ||||||
| exports.trigger = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     plugins.beautylog.info('now running triggers'); |  | ||||||
|     plugins.smartparam.forEachMinimatch(process.env, 'NPMCI_TRIGGER_*', evaluateTrigger); |  | ||||||
| }); |  | ||||||
| let evaluateTrigger = (triggerEnvVarArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let triggerRegexResultArray = triggerValueRegex.exec(triggerEnvVarArg); |  | ||||||
|     let regexDomain = triggerRegexResultArray[1]; |  | ||||||
|     let regexProjectId = triggerRegexResultArray[2]; |  | ||||||
|     let regexProjectTriggerToken = triggerRegexResultArray[3]; |  | ||||||
|     let regexRefName = triggerRegexResultArray[4]; |  | ||||||
|     let regexTriggerName; |  | ||||||
|     if (triggerRegexResultArray.length === 6) { |  | ||||||
|         regexTriggerName = triggerRegexResultArray[5]; |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         regexTriggerName = 'Unnamed Trigger'; |  | ||||||
|     } |  | ||||||
|     plugins.beautylog.info('Found Trigger!'); |  | ||||||
|     plugins.beautylog.log('triggering build for ref ' + regexRefName + ' of ' + regexTriggerName); |  | ||||||
|     plugins.request.post('https://gitlab.com/api/v3/projects/' + regexProjectId + '/trigger/builds', { form: { token: regexProjectTriggerToken, ref: regexRefName } |  | ||||||
|     }); |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfdHJpZ2dlci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7O0FBQUEseUNBQXdDO0FBR3hDLElBQUksaUJBQWlCLEdBQUcsZ0dBQWdHLENBQUE7QUFFN0csUUFBQSxPQUFPLEdBQUc7SUFDbkIsT0FBTyxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsc0JBQXNCLENBQUMsQ0FBQTtJQUM5QyxPQUFPLENBQUMsVUFBVSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sQ0FBQyxHQUFHLEVBQUUsaUJBQWlCLEVBQUUsZUFBZSxDQUFDLENBQUE7QUFDdEYsQ0FBQyxDQUFBLENBQUE7QUFFRCxJQUFJLGVBQWUsR0FBRyxDQUFPLGdCQUFnQjtJQUMzQyxJQUFJLHVCQUF1QixHQUFHLGlCQUFpQixDQUFDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFBO0lBQ3RFLElBQUksV0FBVyxHQUFHLHVCQUF1QixDQUFDLENBQUMsQ0FBQyxDQUFBO0lBQzVDLElBQUksY0FBYyxHQUFHLHVCQUF1QixDQUFDLENBQUMsQ0FBQyxDQUFBO0lBQy9DLElBQUksd0JBQXdCLEdBQUcsdUJBQXVCLENBQUMsQ0FBQyxDQUFDLENBQUE7SUFDekQsSUFBSSxZQUFZLEdBQUcsdUJBQXVCLENBQUMsQ0FBQyxDQUFDLENBQUE7SUFDN0MsSUFBSSxnQkFBZ0IsQ0FBQTtJQUNwQixFQUFFLENBQUMsQ0FBQyx1QkFBdUIsQ0FBQyxNQUFNLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUN6QyxnQkFBZ0IsR0FBRyx1QkFBdUIsQ0FBQyxDQUFDLENBQUMsQ0FBQTtJQUMvQyxDQUFDO0lBQUMsSUFBSSxDQUFDLENBQUM7UUFDTixnQkFBZ0IsR0FBRyxpQkFBaUIsQ0FBQTtJQUN0QyxDQUFDO0lBQ0QsT0FBTyxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQTtJQUN4QyxPQUFPLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQywyQkFBMkIsR0FBRyxZQUFZLEdBQUcsTUFBTSxHQUFHLGdCQUFnQixDQUFDLENBQUE7SUFDN0YsT0FBTyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQ2xCLHFDQUFxQyxHQUFHLGNBQWMsR0FBRyxpQkFBaUIsRUFDMUUsRUFBRSxJQUFJLEVBQUUsRUFBRSxLQUFLLEVBQUUsd0JBQXdCLEVBQUUsR0FBRyxFQUFFLFlBQVksRUFBRTtLQUMvRCxDQUFDLENBQUE7QUFDSixDQUFDLENBQUEsQ0FBQSJ9 |  | ||||||
							
								
								
									
										1
									
								
								dist/mod_trigger/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/mod_trigger/mod.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1 +0,0 @@ | |||||||
| export * from '../npmci.plugins'; |  | ||||||
							
								
								
									
										7
									
								
								dist/mod_trigger/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								dist/mod_trigger/mod.plugins.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,7 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| function __export(m) { |  | ||||||
|     for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; |  | ||||||
| } |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| __export(require("../npmci.plugins")); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9tb2RfdHJpZ2dlci9tb2QucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHNDQUFnQyJ9 |  | ||||||
							
								
								
									
										16
									
								
								dist/npmci.bash.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								dist/npmci.bash.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,16 +0,0 @@ | |||||||
| import * as plugins from './npmci.plugins'; |  | ||||||
| /** |  | ||||||
|  * wether nvm is available or not |  | ||||||
|  */ |  | ||||||
| export declare let nvmAvailable: plugins.q.Deferred<boolean>; |  | ||||||
| export declare let yarnAvailable: plugins.q.Deferred<boolean>; |  | ||||||
| /** |  | ||||||
|  * bash() allows using bash with nvm in path |  | ||||||
|  * @param commandArg - The command to execute |  | ||||||
|  * @param retryArg - The retryArg: 0 to any positive number will retry, -1 will always succeed, -2 will return undefined |  | ||||||
|  */ |  | ||||||
| export declare let bash: (commandArg: string, retryArg?: number) => Promise<string>; |  | ||||||
| /** |  | ||||||
|  * bashNoError allows executing stuff without throwing an error |  | ||||||
|  */ |  | ||||||
| export declare let bashNoError: (commandArg: string) => Promise<string>; |  | ||||||
							
								
								
									
										106
									
								
								dist/npmci.bash.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										106
									
								
								dist/npmci.bash.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,106 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./npmci.plugins"); |  | ||||||
| const paths = require("./npmci.paths"); |  | ||||||
| const smartq = require("smartq"); |  | ||||||
| /** |  | ||||||
|  * wether nvm is available or not |  | ||||||
|  */ |  | ||||||
| exports.nvmAvailable = smartq.defer(); |  | ||||||
| exports.yarnAvailable = smartq.defer(); |  | ||||||
| /** |  | ||||||
|  * the smartshell instance for npmci |  | ||||||
|  */ |  | ||||||
| let npmciSmartshell = new plugins.smartshell.Smartshell({ |  | ||||||
|     executor: 'bash', |  | ||||||
|     sourceFilePaths: [] |  | ||||||
| }); |  | ||||||
| /** |  | ||||||
|  * check for tools. |  | ||||||
|  */ |  | ||||||
| let checkToolsAvailable = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     // check for nvm |  | ||||||
|     if (!process.env.NPMTS_TEST) { |  | ||||||
|         if ((yield plugins.smartshell.execSilent(`bash -c "source /usr/local/nvm/nvm.sh"`)).exitCode === 0) { |  | ||||||
|             npmciSmartshell.addSourceFiles([`/usr/local/nvm/nvm.sh`]); |  | ||||||
|             exports.nvmAvailable.resolve(true); |  | ||||||
|         } |  | ||||||
|         else if ((yield plugins.smartshell.execSilent(`bash -c "source ~/.nvm/nvm.sh"`)).exitCode === 0) { |  | ||||||
|             npmciSmartshell.addSourceFiles([`~/.nvm/nvm.sh`]); |  | ||||||
|             exports.nvmAvailable.resolve(true); |  | ||||||
|         } |  | ||||||
|         else { |  | ||||||
|             exports.nvmAvailable.resolve(false); |  | ||||||
|         } |  | ||||||
|         // check for yarn |  | ||||||
|         yield plugins.smartshell.which('yarn').then(() => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|             yield plugins.smartshell.exec(`yarn config set cache-folder ${plugins.path.join(paths.cwd, '.yarn')}`); |  | ||||||
|             exports.yarnAvailable.resolve(true); |  | ||||||
|         }), () => { exports.yarnAvailable.resolve(false); }); |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         exports.nvmAvailable.resolve(true); |  | ||||||
|         exports.yarnAvailable.resolve(true); |  | ||||||
|     } |  | ||||||
| }); |  | ||||||
| checkToolsAvailable(); |  | ||||||
| /** |  | ||||||
|  * bash() allows using bash with nvm in path |  | ||||||
|  * @param commandArg - The command to execute |  | ||||||
|  * @param retryArg - The retryArg: 0 to any positive number will retry, -1 will always succeed, -2 will return undefined |  | ||||||
|  */ |  | ||||||
| exports.bash = (commandArg, retryArg = 2) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     yield exports.nvmAvailable.promise; // make sure nvm check has run |  | ||||||
|     let execResult; |  | ||||||
|     // determine if we fail |  | ||||||
|     let failOnError = true; |  | ||||||
|     if (retryArg === -1) { |  | ||||||
|         failOnError = false; |  | ||||||
|         retryArg = 0; |  | ||||||
|     } |  | ||||||
|     if (!process.env.NPMTS_TEST) { |  | ||||||
|         for (let i = 0; i <= retryArg; i++) { |  | ||||||
|             if (process.env.DEBUG_NPMCI === 'true') { |  | ||||||
|                 console.log(commandArg); |  | ||||||
|             } |  | ||||||
|             execResult = yield npmciSmartshell.exec(commandArg); |  | ||||||
|             // determine how bash reacts to error and success |  | ||||||
|             if (execResult.exitCode !== 0 && i === retryArg) { |  | ||||||
|                 if (failOnError) { |  | ||||||
|                     plugins.beautylog.error('something went wrong and retries are exhausted'); |  | ||||||
|                     process.exit(1); |  | ||||||
|                 } |  | ||||||
|             } |  | ||||||
|             else if (execResult.exitCode === 0) { |  | ||||||
|                 i = retryArg + 1; // retry +1 breaks for loop, if everything works out ok retrials are not wanted |  | ||||||
|             } |  | ||||||
|             else { |  | ||||||
|                 plugins.beautylog.warn('Something went wrong! Exit Code: ' + execResult.exitCode.toString()); |  | ||||||
|                 plugins.beautylog.info('Retry ' + (i + 1).toString() + ' of ' + retryArg.toString()); |  | ||||||
|             } |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|     else { |  | ||||||
|         plugins.beautylog.log('ShellExec would be: ' + commandArg); |  | ||||||
|         execResult = { |  | ||||||
|             exitCode: 0, |  | ||||||
|             stdout: 'testOutput' |  | ||||||
|         }; |  | ||||||
|     } |  | ||||||
|     return execResult.stdout; |  | ||||||
| }); |  | ||||||
| /** |  | ||||||
|  * bashNoError allows executing stuff without throwing an error |  | ||||||
|  */ |  | ||||||
| exports.bashNoError = (commandArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     return yield exports.bash(commandArg, -1); |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnBtY2kuYmFzaC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL25wbWNpLmJhc2gudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7OztBQUFBLDJDQUEwQztBQUMxQyx1Q0FBc0M7QUFFdEMsaUNBQWdDO0FBRWhDOztHQUVHO0FBQ1EsUUFBQSxZQUFZLEdBQUcsTUFBTSxDQUFDLEtBQUssRUFBVyxDQUFBO0FBQ3RDLFFBQUEsYUFBYSxHQUFHLE1BQU0sQ0FBQyxLQUFLLEVBQVcsQ0FBQTtBQUNsRDs7R0FFRztBQUNILElBQUksZUFBZSxHQUFHLElBQUksT0FBTyxDQUFDLFVBQVUsQ0FBQyxVQUFVLENBQUM7SUFDdEQsUUFBUSxFQUFFLE1BQU07SUFDaEIsZUFBZSxFQUFFLEVBQUU7Q0FDcEIsQ0FBQyxDQUFBO0FBRUY7O0dBRUc7QUFDSCxJQUFJLG1CQUFtQixHQUFHO0lBQ3hCLGdCQUFnQjtJQUNoQixFQUFFLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQztRQUM1QixFQUFFLENBQUMsQ0FDRCxDQUFDLE1BQU0sT0FBTyxDQUFDLFVBQVUsQ0FBQyxVQUFVLENBQUMsd0NBQXdDLENBQUMsQ0FBQyxDQUFDLFFBQVEsS0FBSyxDQUMvRixDQUFDLENBQUMsQ0FBQztZQUNELGVBQWUsQ0FBQyxjQUFjLENBQUMsQ0FBRSx1QkFBdUIsQ0FBRSxDQUFDLENBQUE7WUFDM0Qsb0JBQVksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUE7UUFDNUIsQ0FBQztRQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsQ0FDUixDQUFDLE1BQU0sT0FBTyxDQUFDLFVBQVUsQ0FBQyxVQUFVLENBQUMsZ0NBQWdDLENBQUMsQ0FBQyxDQUFDLFFBQVEsS0FBSyxDQUN2RixDQUFDLENBQUMsQ0FBQztZQUNELGVBQWUsQ0FBQyxjQUFjLENBQUMsQ0FBRSxlQUFlLENBQUUsQ0FBQyxDQUFBO1lBQ25ELG9CQUFZ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 |  | ||||||
							
								
								
									
										0
									
								
								dist/npmci.cli.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										0
									
								
								dist/npmci.cli.d.ts
									
									
									
									
										vendored
									
									
								
							
							
								
								
									
										88
									
								
								dist/npmci.cli.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										88
									
								
								dist/npmci.cli.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,88 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./npmci.plugins"); |  | ||||||
| const paths = require("./npmci.paths"); |  | ||||||
| let npmciInfo = new plugins.projectinfo.ProjectinfoNpm(paths.NpmciPackageRoot); |  | ||||||
| plugins.beautylog.log('npmci version: ' + npmciInfo.version); |  | ||||||
| const npmciMods = require("./npmci.mods"); |  | ||||||
| let smartcli = new plugins.smartcli.Smartcli(); |  | ||||||
| smartcli.addVersion(npmciInfo.version); |  | ||||||
| // clean |  | ||||||
| smartcli.addCommand('clean') |  | ||||||
|     .then((argv) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let modClean = yield npmciMods.modClean.load(); |  | ||||||
|     yield modClean.clean(); |  | ||||||
| })).catch(err => { |  | ||||||
|     console.log(err); |  | ||||||
|     process.exit(1); |  | ||||||
| }); |  | ||||||
| // cloudflare |  | ||||||
| smartcli.addCommand('cloudflare') |  | ||||||
|     .then((argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let modPurge = yield npmciMods.modCloudflare.load(); |  | ||||||
|     yield modPurge.handleCli(argvArg); |  | ||||||
| })).catch(err => { |  | ||||||
|     console.log(err); |  | ||||||
| }); |  | ||||||
| // command |  | ||||||
| smartcli.addCommand('command') |  | ||||||
|     .then((argv) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let modCommand = yield npmciMods.modCommand.load(); |  | ||||||
|     yield modCommand.command(); |  | ||||||
| })).catch(err => { |  | ||||||
|     console.log(err); |  | ||||||
|     process.exit(1); |  | ||||||
| }); |  | ||||||
| // build |  | ||||||
| smartcli.addCommand('docker') |  | ||||||
|     .then((argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let modDocker = yield npmciMods.modDocker.load(); |  | ||||||
|     yield modDocker.handleCli(argvArg); |  | ||||||
| })).catch(err => { |  | ||||||
|     console.log(err); |  | ||||||
|     process.exit(1); |  | ||||||
| }); |  | ||||||
| // node |  | ||||||
| smartcli.addCommand('node') |  | ||||||
|     .then((argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let modNode = yield npmciMods.modNode.load(); |  | ||||||
|     yield modNode.handleCli(argvArg); |  | ||||||
| })).catch(err => { |  | ||||||
|     console.log(err); |  | ||||||
| }); |  | ||||||
| // npm |  | ||||||
| smartcli.addCommand('npm') |  | ||||||
|     .then((argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let modNpm = yield npmciMods.modNpm.load(); |  | ||||||
|     yield modNpm.handleCli(argvArg); |  | ||||||
| })).catch(err => { |  | ||||||
|     console.log(err); |  | ||||||
| }); |  | ||||||
| // trigger |  | ||||||
| smartcli.addCommand('ssh') |  | ||||||
|     .then((argvArg) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let modSsh = yield npmciMods.modSsh.load(); |  | ||||||
|     yield modSsh.handleCli(argvArg); |  | ||||||
| })).catch(err => { |  | ||||||
|     console.log(err); |  | ||||||
|     process.exit(1); |  | ||||||
| }); |  | ||||||
| // trigger |  | ||||||
| smartcli.addCommand('trigger') |  | ||||||
|     .then((argv) => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     let modTrigger = yield npmciMods.modTrigger.load(); |  | ||||||
|     yield modTrigger.trigger(); |  | ||||||
| })).catch(err => { |  | ||||||
|     console.log(err); |  | ||||||
|     process.exit(1); |  | ||||||
| }); |  | ||||||
| smartcli.startParse(); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnBtY2kuY2xpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvbnBtY2kuY2xpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7QUFBQSwyQ0FBMEM7QUFDMUMsdUNBQXNDO0FBQ3RDLElBQUksU0FBUyxHQUFHLElBQUksT0FBTyxDQUFDLFdBQVcsQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDLGdCQUFnQixDQUFDLENBQUE7QUFDOUUsT0FBTyxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsaUJBQWlCLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQyxDQUFBO0FBSTVELDBDQUF5QztBQUV6QyxJQUFJLFFBQVEsR0FBRyxJQUFJLE9BQU8sQ0FBQyxRQUFRLENBQUMsUUFBUSxFQUFFLENBQUE7QUFDOUMsUUFBUSxDQUFDLFVBQVUsQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLENBQUE7QUFFdEMsUUFBUTtBQUNSLFFBQVEsQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDO0tBQ3pCLElBQUksQ0FBQyxDQUFPLElBQUk7SUFDZixJQUFJLFFBQVEsR0FBRyxNQUFNLFNBQVMsQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLENBQUE7SUFDOUMsTUFBTSxRQUFRLENBQUMsS0FBSyxFQUFFLENBQUE7QUFDeEIsQ0FBQyxDQUFBLENBQUMsQ0FBQyxLQUFLLENBQUMsR0FBRztJQUNWLE9BQU8sQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUE7SUFDaEIsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQTtBQUNqQixDQUFDLENBQUMsQ0FBQTtBQUVKLGFBQWE7QUFDYixRQUFRLENBQUMsVUFBVSxDQUFDLFlBQVksQ0FBQztLQUNoQyxJQUFJLENBQUMsQ0FBTyxPQUFPO0lBQ2xCLElBQUksUUFBUSxHQUFHLE1BQU0sU0FBUyxDQUFDLGFBQWEsQ0FBQyxJQUFJLEVBQUUsQ0FBQTtJQUNuRCxNQUFNLFFBQVEsQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLENBQUE7QUFDbkMsQ0FBQyxDQUFBLENBQUMsQ0FBQyxLQUFLLENBQUMsR0FBRztJQUNWLE9BQU8sQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUE7QUFDbEIsQ0FBQyxDQUFDLENBQUE7QUFFRixVQUFVO0FBQ1YsUUFBUSxDQUFDLFVBQVUsQ0FBQyxTQUFTLENBQUM7S0FDM0IsSUFBSSxDQUFDLENBQU8sSUFBSTtJQUNmLElBQUksVUFBVSxHQUFHLE1BQU0sU0FBUyxDQUFDLFVBQVUsQ0FBQyxJQUFJLEVBQUUsQ0FBQTtJQUNsRCxNQUFNLFVBQVUsQ0FBQyxPQUFPLEVBQUUsQ0FBQTtBQUM1QixDQUFDLENBQUEsQ0FBQyxDQUFDLEtBQUssQ0FBQyxHQUFHO0lBQ1YsT0FBTyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQTtJQUNoQixPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFBO0FBQ2pCLENBQUMsQ0FBQyxDQUFBO0FBRUosUUFBUTtBQUNSLFFBQVEsQ0FBQyxVQUFVLENBQUMsUUFBUSxDQUFDO0tBQzFCLElBQUksQ0FBQyxDQUFNLE9BQU87SUFDakIsSUFBSSxTQUFTLEdBQUcsTUFBTSxTQUFTLENBQUMsU0FBUyxDQUFDLElBQUksRUFBRSxDQUFBO0lBQ2hELE1BQU0sU0FBUyxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsQ0FBQTtBQUNwQyxDQUFDLENBQUEsQ0FBQyxDQUFDLEtBQUssQ0FBQyxHQUFHO0lBQ1YsT0FBTyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQTtJQUNoQixPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFBO0FBQ2pCLENBQUMsQ0FBQyxDQUFBO0FBRUosT0FBTztBQUNQLFFBQVEsQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDO0tBQ3hCLElBQUksQ0FBQyxDQUFPLE9BQU87SUFDbEIsSUFBSSxPQUFPLEdBQUcsTUFBTSxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxDQUFBO0lBQzVDLE1BQU0sT0FBTyxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsQ0FBQTtBQUNsQyxDQUFDLENBQUEsQ0FBQyxDQUFDLEtBQUssQ0FBQyxHQUFHO0lBQ1YsT0FBTyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQTtBQUNsQixDQUFDLENBQUMsQ0FBQTtBQUVKLE1BQU07QUFDTixRQUFRLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQztLQUN2QixJQUFJLENBQUMsQ0FBTyxPQUFPO0lBQ2xCLElBQUksTUFBTSxHQUFHLE1BQU0sU0FBUyxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsQ0FBQTtJQUMxQyxNQUFNLE1BQU0sQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLENBQUE7QUFDakMsQ0FBQyxDQUFBLENBQUMsQ0FBQyxLQUFLLENBQUMsR0FBRztJQUNWLE9BQU8sQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUE7QUFDbEIsQ0FBQyxDQUFDLENBQUE7QUFFSixVQUFVO0FBQ1YsUUFBUSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUM7S0FDdkIsSUFBSSxDQUFDLENBQU8sT0FBTztJQUNsQixJQUFJLE1BQU0sR0FBRyxNQUFNLFNBQVMsQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLENBQUE7SUFDMUMsTUFBTSxNQUFNLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxDQUFBO0FBQ2pDLENBQUMsQ0FBQSxDQUFDLENBQUMsS0FBSyxDQUFDLEdBQUc7SUFDVixPQUFPLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFBO0lBQ2hCLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUE7QUFDakIsQ0FBQyxDQUFDLENBQUE7QUFFSixVQUFVO0FBQ1YsUUFBUSxDQUFDLFVBQVUsQ0FBQyxTQUFTLENBQUM7S0FDM0IsSUFBSSxDQUFDLENBQU8sSUFBSTtJQUNmLElBQUksVUFBVSxHQUFHLE1BQU0sU0FBUyxDQUFDLFVBQVUsQ0FBQyxJQUFJLEVBQUUsQ0FBQTtJQUNsRCxNQUFNLFVBQVUsQ0FBQyxPQUFPLEVBQUUsQ0FBQTtBQUM1QixDQUFDLENBQUEsQ0FBQyxDQUFDLEtBQUssQ0FBQyxHQUFHO0lBQ1YsT0FBTyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQTtJQUNoQixPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFBO0FBQ2pCLENBQUMsQ0FBQyxDQUFBO0FBRUosUUFBUSxDQUFDLFVBQVUsRUFBRSxDQUFBIn0= |  | ||||||
							
								
								
									
										9
									
								
								dist/npmci.config.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								dist/npmci.config.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,9 +0,0 @@ | |||||||
| import { KeyValueStore } from 'npmextra'; |  | ||||||
| export interface INpmciOptions { |  | ||||||
|     npmGlobalTools: string[]; |  | ||||||
|     dockerRegistryRepoMap: any; |  | ||||||
|     dockerBuildargEnvMap: any; |  | ||||||
| } |  | ||||||
| export declare let kvStorage: KeyValueStore; |  | ||||||
| export declare let configObject: INpmciOptions; |  | ||||||
| export declare let getConfig: () => Promise<INpmciOptions>; |  | ||||||
							
								
								
									
										28
									
								
								dist/npmci.config.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										28
									
								
								dist/npmci.config.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,28 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| 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 }); |  | ||||||
| const plugins = require("./npmci.plugins"); |  | ||||||
| const paths = require("./npmci.paths"); |  | ||||||
| const npmci_env_1 = require("./npmci.env"); |  | ||||||
| const npmextra_1 = require("npmextra"); |  | ||||||
| // instantiate a kvStorage for the current directory |  | ||||||
| exports.kvStorage = new npmextra_1.KeyValueStore('custom', `${npmci_env_1.repo.user}_${npmci_env_1.repo.repo}`); |  | ||||||
| // handle config retrival |  | ||||||
| let npmciNpmextra = new plugins.npmextra.Npmextra(paths.cwd); |  | ||||||
| let defaultConfig = { |  | ||||||
|     npmGlobalTools: [], |  | ||||||
|     dockerRegistryRepoMap: {}, |  | ||||||
|     dockerBuildargEnvMap: {} |  | ||||||
| }; |  | ||||||
| exports.configObject = npmciNpmextra.dataFor('npmci', defaultConfig); |  | ||||||
| exports.getConfig = () => __awaiter(this, void 0, void 0, function* () { |  | ||||||
|     return exports.configObject; |  | ||||||
| }); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnBtY2kuY29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvbnBtY2kuY29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7QUFFQSwyQ0FBMEM7QUFDMUMsdUNBQXNDO0FBRXRDLDJDQUFrQztBQUVsQyx1Q0FBd0M7QUFReEMsb0RBQW9EO0FBQ3pDLFFBQUEsU0FBUyxHQUFHLElBQUksd0JBQWEsQ0FBQyxRQUFRLEVBQUUsR0FBRyxnQkFBSSxDQUFDLElBQUksSUFBSSxnQkFBSSxDQUFDLElBQUksRUFBRSxDQUFDLENBQUE7QUFFL0UseUJBQXlCO0FBQ3pCLElBQUksYUFBYSxHQUFHLElBQUksT0FBTyxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFBO0FBQzVELElBQUksYUFBYSxHQUFrQjtJQUNqQyxjQUFjLEVBQUUsRUFBRTtJQUNsQixxQkFBcUIsRUFBRSxFQUFFO0lBQ3pCLG9CQUFvQixFQUFFLEVBQUU7Q0FDekIsQ0FBQTtBQUNVLFFBQUEsWUFBWSxHQUFHLGFBQWEsQ0FBQyxPQUFPLENBQWdCLE9BQU8sRUFBRSxhQUFhLENBQUMsQ0FBQTtBQUUzRSxRQUFBLFNBQVMsR0FBRztJQUNyQixNQUFNLENBQUMsb0JBQVksQ0FBQTtBQUNyQixDQUFDLENBQUEsQ0FBQSJ9 |  | ||||||
							
								
								
									
										5
									
								
								dist/npmci.env.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								dist/npmci.env.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,5 +0,0 @@ | |||||||
| import { GitRepo } from 'smartstring'; |  | ||||||
| /** |  | ||||||
|  * a info instance about the git respoitory at cwd :) |  | ||||||
|  */ |  | ||||||
| export declare let repo: GitRepo; |  | ||||||
							
								
								
									
										7
									
								
								dist/npmci.env.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								dist/npmci.env.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,7 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| const smartstring_1 = require("smartstring"); |  | ||||||
| if (process.env.CI_REPOSITORY_URL) { |  | ||||||
|     exports.repo = new smartstring_1.GitRepo(process.env.CI_REPOSITORY_URL); |  | ||||||
| } |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnBtY2kuZW52LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvbnBtY2kuZW52LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBRUEsNkNBQXFDO0FBT3JDLEVBQUUsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxDQUFDO0lBQ2xDLFlBQUksR0FBRyxJQUFJLHFCQUFPLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxpQkFBaUIsQ0FBQyxDQUFBO0FBQ25ELENBQUMifQ== |  | ||||||
							
								
								
									
										19
									
								
								dist/npmci.mods.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										19
									
								
								dist/npmci.mods.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,19 +0,0 @@ | |||||||
| import * as _modClean from './mod_clean/index'; |  | ||||||
| import * as _modCloudflare from './mod_cloudflare/index'; |  | ||||||
| import * as _modCommand from './mod_command/index'; |  | ||||||
| import * as _modDocker from './mod_docker/index'; |  | ||||||
| import * as _modGit from './mod_git/index'; |  | ||||||
| import * as _modNpm from './mod_npm/index'; |  | ||||||
| import * as _modNode from './mod_node/index'; |  | ||||||
| import * as _modSsh from './mod_ssh/index'; |  | ||||||
| import * as _modTrigger from './mod_trigger/index'; |  | ||||||
| import { LazyModule } from 'smartsystem'; |  | ||||||
| export declare let modClean: LazyModule<typeof _modClean>; |  | ||||||
| export declare let modCloudflare: LazyModule<typeof _modCloudflare>; |  | ||||||
| export declare let modCommand: LazyModule<typeof _modCommand>; |  | ||||||
| export declare let modGit: LazyModule<typeof _modGit>; |  | ||||||
| export declare let modDocker: LazyModule<typeof _modDocker>; |  | ||||||
| export declare let modNode: LazyModule<typeof _modNode>; |  | ||||||
| export declare let modNpm: LazyModule<typeof _modNpm>; |  | ||||||
| export declare let modSsh: LazyModule<typeof _modSsh>; |  | ||||||
| export declare let modTrigger: LazyModule<typeof _modTrigger>; |  | ||||||
							
								
								
									
										13
									
								
								dist/npmci.mods.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										13
									
								
								dist/npmci.mods.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,13 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| const smartsystem_1 = require("smartsystem"); |  | ||||||
| exports.modClean = new smartsystem_1.LazyModule('./mod_clean/index', __dirname); |  | ||||||
| exports.modCloudflare = new smartsystem_1.LazyModule('./mod_cloudflare/index', __dirname); |  | ||||||
| exports.modCommand = new smartsystem_1.LazyModule('./mod_command/index', __dirname); |  | ||||||
| exports.modGit = new smartsystem_1.LazyModule('./mod_git/index', __dirname); |  | ||||||
| exports.modDocker = new smartsystem_1.LazyModule('./mod_docker/index', __dirname); |  | ||||||
| exports.modNode = new smartsystem_1.LazyModule('./mod_node/index', __dirname); |  | ||||||
| exports.modNpm = new smartsystem_1.LazyModule('./mod_npm/index', __dirname); |  | ||||||
| exports.modSsh = new smartsystem_1.LazyModule('./mod_ssh/index', __dirname); |  | ||||||
| exports.modTrigger = new smartsystem_1.LazyModule('./mod_trigger/index', __dirname); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnBtY2kubW9kcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL25wbWNpLm1vZHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFVQSw2Q0FBd0M7QUFFN0IsUUFBQSxRQUFRLEdBQUcsSUFBSSx3QkFBVSxDQUFtQixtQkFBbUIsRUFBRSxTQUFTLENBQUMsQ0FBQTtBQUMzRSxRQUFBLGFBQWEsR0FBRyxJQUFJLHdCQUFVLENBQXdCLHdCQUF3QixFQUFFLFNBQVMsQ0FBQyxDQUFBO0FBQzFGLFFBQUEsVUFBVSxHQUFHLElBQUksd0JBQVUsQ0FBcUIscUJBQXFCLEVBQUUsU0FBUyxDQUFDLENBQUE7QUFDakYsUUFBQSxNQUFNLEdBQUcsSUFBSSx3QkFBVSxDQUFpQixpQkFBaUIsRUFBRSxTQUFTLENBQUMsQ0FBQTtBQUNyRSxRQUFBLFNBQVMsR0FBRyxJQUFJLHdCQUFVLENBQW9CLG9CQUFvQixFQUFFLFNBQVMsQ0FBQyxDQUFBO0FBQzlFLFFBQUEsT0FBTyxHQUFHLElBQUksd0JBQVUsQ0FBa0Isa0JBQWtCLEVBQUUsU0FBUyxDQUFDLENBQUE7QUFDeEUsUUFBQSxNQUFNLEdBQUcsSUFBSSx3QkFBVSxDQUFpQixpQkFBaUIsRUFBRSxTQUFTLENBQUMsQ0FBQTtBQUNyRSxRQUFBLE1BQU0sR0FBRyxJQUFJLHdCQUFVLENBQWlCLGlCQUFpQixFQUFFLFNBQVMsQ0FBQyxDQUFBO0FBQ3JFLFFBQUEsVUFBVSxHQUFHLElBQUksd0JBQVUsQ0FBcUIscUJBQXFCLEVBQUUsU0FBUyxDQUFDLENBQUEifQ== |  | ||||||
							
								
								
									
										2
									
								
								dist/npmci.monitor.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/npmci.monitor.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,2 +0,0 @@ | |||||||
| import { Smartmonitor } from 'smartmonitor'; |  | ||||||
| export declare let npmciMonitor: Smartmonitor; |  | ||||||
							
								
								
									
										18
									
								
								dist/npmci.monitor.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										18
									
								
								dist/npmci.monitor.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,18 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| const plugins = require("./npmci.plugins"); |  | ||||||
| const smartmonitor_1 = require("smartmonitor"); |  | ||||||
| exports.npmciMonitor = new smartmonitor_1.Smartmonitor(); |  | ||||||
| let monitorEnvString = process.env.NPMCI_MONITOR; |  | ||||||
| if (monitorEnvString) { |  | ||||||
|     let npmciMonitorKeys = monitorEnvString.split('|'); |  | ||||||
|     exports.npmciMonitor.addInstrumental({ |  | ||||||
|         apiKey: process.env.NPMCI_MONITOR |  | ||||||
|     }); |  | ||||||
|     plugins.beautylog.info('Monitoring activated'); |  | ||||||
| } |  | ||||||
| else { |  | ||||||
|     plugins.beautylog.warn('Monitoring could not be enabled due to missing API-KEY'); |  | ||||||
| } |  | ||||||
| exports.npmciMonitor.increment('lossless-ci.builds', 1); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnBtY2kubW9uaXRvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL25wbWNpLm1vbml0b3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSwyQ0FBMEM7QUFHMUMsK0NBQTJDO0FBRWhDLFFBQUEsWUFBWSxHQUFHLElBQUksMkJBQVksRUFBRSxDQUFBO0FBRTVDLElBQUksZ0JBQWdCLEdBQVcsT0FBTyxDQUFDLEdBQUcsQ0FBQyxhQUFhLENBQUE7QUFFeEQsRUFBRSxDQUFDLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDO0lBQ3JCLElBQUksZ0JBQWdCLEdBQWEsZ0JBQWdCLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFBO0lBQzVELG9CQUFZLENBQUMsZUFBZSxDQUFDO1FBQzNCLE1BQU0sRUFBRSxPQUFPLENBQUMsR0FBRyxDQUFDLGFBQWE7S0FDbEMsQ0FBQyxDQUFBO0lBQ0YsT0FBTyxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsc0JBQXNCLENBQUMsQ0FBQTtBQUNoRCxDQUFDO0FBQUMsSUFBSSxDQUFDLENBQUM7SUFDTixPQUFPLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyx3REFBd0QsQ0FBQyxDQUFBO0FBQ2xGLENBQUM7QUFFRCxvQkFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxDQUFDLENBQUMsQ0FBQSJ9 |  | ||||||
							
								
								
									
										5
									
								
								dist/npmci.paths.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								dist/npmci.paths.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,5 +0,0 @@ | |||||||
| export declare let cwd: string; |  | ||||||
| export declare let NpmciPackageRoot: string; |  | ||||||
| export declare let NpmciPackageConfig: string; |  | ||||||
| export declare let NpmciProjectDir: string; |  | ||||||
| export declare let NpmciTestDir: string; |  | ||||||
							
								
								
									
										9
									
								
								dist/npmci.paths.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								dist/npmci.paths.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,9 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| const plugins = require("./npmci.plugins"); |  | ||||||
| exports.cwd = process.cwd(); |  | ||||||
| exports.NpmciPackageRoot = plugins.path.join(__dirname, '../'); |  | ||||||
| exports.NpmciPackageConfig = plugins.path.join(exports.NpmciPackageRoot, './config.json'); |  | ||||||
| exports.NpmciProjectDir = exports.cwd; |  | ||||||
| exports.NpmciTestDir = plugins.path.join(exports.cwd, './test'); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnBtY2kucGF0aHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9ucG1jaS5wYXRocy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLDJDQUEwQztBQUUvQixRQUFBLEdBQUcsR0FBRyxPQUFPLENBQUMsR0FBRyxFQUFFLENBQUE7QUFFbkIsUUFBQSxnQkFBZ0IsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLEVBQUMsS0FBSyxDQUFDLENBQUE7QUFDckQsUUFBQSxrQkFBa0IsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyx3QkFBZ0IsRUFBQyxlQUFlLENBQUMsQ0FBQTtBQUN4RSxRQUFBLGVBQWUsR0FBRyxXQUFHLENBQUE7QUFDckIsUUFBQSxZQUFZLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsV0FBRyxFQUFDLFFBQVEsQ0FBQyxDQUFBIn0= |  | ||||||
							
								
								
									
										23
									
								
								dist/npmci.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										23
									
								
								dist/npmci.plugins.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -1,23 +0,0 @@ | |||||||
| import 'typings-global'; |  | ||||||
| export import beautylog = require('beautylog'); |  | ||||||
| export declare let gulp: any; |  | ||||||
| export import gulpFunction = require('gulp-function'); |  | ||||||
| export import lodash = require('lodash'); |  | ||||||
| export import npmextra = require('npmextra'); |  | ||||||
| export import path = require('path'); |  | ||||||
| export import projectinfo = require('projectinfo'); |  | ||||||
| export import q = require('smartq'); |  | ||||||
| export declare let request: any; |  | ||||||
| export import smartcli = require('smartcli'); |  | ||||||
| export import smartdelay = require('smartdelay'); |  | ||||||
| export import smartfile = require('smartfile'); |  | ||||||
| export import shelljs = require('shelljs'); |  | ||||||
| export import smartmonitor = require('smartmonitor'); |  | ||||||
| export import smartparam = require('smartparam'); |  | ||||||
| export import smartq = require('smartq'); |  | ||||||
| export import smartshell = require('smartshell'); |  | ||||||
| export import smartsocket = require('smartsocket'); |  | ||||||
| export import smartsystem = require('smartsystem'); |  | ||||||
| export import smartssh = require('smartssh'); |  | ||||||
| export import smartstring = require('smartstring'); |  | ||||||
| export import through2 = require('through2'); |  | ||||||
							
								
								
									
										26
									
								
								dist/npmci.plugins.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										26
									
								
								dist/npmci.plugins.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,26 +0,0 @@ | |||||||
| "use strict"; |  | ||||||
| Object.defineProperty(exports, "__esModule", { value: true }); |  | ||||||
| require("typings-global"); |  | ||||||
| exports.beautylog = require("beautylog"); |  | ||||||
| exports.gulp = require('gulp'); |  | ||||||
| exports.gulpFunction = require("gulp-function"); |  | ||||||
| exports.lodash = require("lodash"); |  | ||||||
| exports.npmextra = require("npmextra"); |  | ||||||
| exports.path = require("path"); |  | ||||||
| exports.projectinfo = require("projectinfo"); |  | ||||||
| exports.q = require("smartq"); |  | ||||||
| exports.request = require('request'); |  | ||||||
| exports.smartcli = require("smartcli"); |  | ||||||
| exports.smartdelay = require("smartdelay"); |  | ||||||
| exports.smartfile = require("smartfile"); |  | ||||||
| exports.shelljs = require("shelljs"); |  | ||||||
| exports.smartmonitor = require("smartmonitor"); |  | ||||||
| exports.smartparam = require("smartparam"); |  | ||||||
| exports.smartq = require("smartq"); |  | ||||||
| exports.smartshell = require("smartshell"); |  | ||||||
| exports.smartsocket = require("smartsocket"); |  | ||||||
| exports.smartsystem = require("smartsystem"); |  | ||||||
| exports.smartssh = require("smartssh"); |  | ||||||
| exports.smartstring = require("smartstring"); |  | ||||||
| exports.through2 = require("through2"); |  | ||||||
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnBtY2kucGx1Z2lucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL25wbWNpLnBsdWdpbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSwwQkFBdUI7QUFDdkIseUNBQThDO0FBQ25DLFFBQUEsSUFBSSxHQUFHLE9BQU8sQ0FBQyxNQUFNLENBQUMsQ0FBQTtBQUNqQyxnREFBcUQ7QUFDckQsbUNBQXdDO0FBQ3hDLHVDQUE0QztBQUM1QywrQkFBb0M7QUFDcEMsNkNBQWtEO0FBQ2xELDhCQUFtQztBQUN4QixRQUFBLE9BQU8sR0FBRyxPQUFPLENBQUMsU0FBUyxDQUFDLENBQUE7QUFDdkMsdUNBQTRDO0FBQzVDLDJDQUFnRDtBQUNoRCx5Q0FBOEM7QUFDOUMscUNBQTBDO0FBQzFDLCtDQUFvRDtBQUNwRCwyQ0FBZ0Q7QUFDaEQsbUNBQXdDO0FBQ3hDLDJDQUFnRDtBQUNoRCw2Q0FBa0Q7QUFDbEQsNkNBQWtEO0FBQ2xELHVDQUE0QztBQUM1Qyw2Q0FBa0Q7QUFDbEQsdUNBQTRDIn0= |  | ||||||
| @@ -1,13 +1,16 @@ | |||||||
| # npmci | # npmci | ||||||
|  |  | ||||||
| node and docker in gitlab ci on steroids | node and docker in gitlab ci on steroids | ||||||
|  |  | ||||||
| ## Availabililty | ## Availabililty | ||||||
|  |  | ||||||
| [](https://www.npmjs.com/package/npmci) | [](https://www.npmjs.com/package/npmci) | ||||||
| [](https://GitLab.com/gitzone/npmci) | [](https://GitLab.com/gitzone/npmci) | ||||||
| [](https://github.com/gitzone/npmci) | [](https://github.com/gitzone/npmci) | ||||||
| [](https://gitzone.gitlab.io/npmci/) | [](https://gitzone.gitlab.io/npmci/) | ||||||
|  |  | ||||||
| ## Status for master | ## Status for master | ||||||
|  |  | ||||||
| [](https://GitLab.com/gitzone/npmci/commits/master) | [](https://GitLab.com/gitzone/npmci/commits/master) | ||||||
| [](https://GitLab.com/gitzone/npmci/commits/master) | [](https://GitLab.com/gitzone/npmci/commits/master) | ||||||
| [](https://www.npmjs.com/package/npmci) | [](https://www.npmjs.com/package/npmci) | ||||||
| @@ -19,6 +22,7 @@ node and docker in gitlab ci on steroids | |||||||
| [](http://standardjs.com/) | [](http://standardjs.com/) | ||||||
|  |  | ||||||
| ## Usage | ## Usage | ||||||
|  |  | ||||||
| Use TypeScript for best in class instellisense. | Use TypeScript for best in class instellisense. | ||||||
|  |  | ||||||
| npmci is designed to work in docker CI environments. The following docker images come with npmci presinstalled: | npmci is designed to work in docker CI environments. The following docker images come with npmci presinstalled: | ||||||
| @@ -26,11 +30,12 @@ npmci is designed to work in docker CI environments. The following docker images | |||||||
| Docker Hub: | Docker Hub: | ||||||
|  |  | ||||||
| * [hosttoday/ht-docker-node:npmci](https://hub.docker.com/r/hosttoday/ht-docker-node/)   | * [hosttoday/ht-docker-node:npmci](https://hub.docker.com/r/hosttoday/ht-docker-node/)   | ||||||
| has LTS node version and npmci preinstalled. |   has LTS node version and npmci preinstalled. | ||||||
| * [hosttoday/ht-docker-dbase](https://hub.docker.com/r/hosttoday/ht-docker-dbase/)   | * [hosttoday/ht-docker-dbase](https://hub.docker.com/r/hosttoday/ht-docker-dbase/)   | ||||||
| based on docker:git, can be used to build docker images in conjunction with docker:dind |   based on docker:git, can be used to build docker images in conjunction with docker:dind | ||||||
|  |  | ||||||
| npmci can be called from commandline: | npmci can be called from commandline: | ||||||
|  |  | ||||||
| ```shell | ```shell | ||||||
| # Install any node version: | # Install any node version: | ||||||
| npmci install lts # will install latest LTS node version and update PATH for node and npm versions | npmci install lts # will install latest LTS node version and update PATH for node and npm versions | ||||||
| @@ -68,32 +73,28 @@ npmci trigger # will look for NPMCI_TRIGGER_1 to NPMCI_TRIGGER_100 in form domai | |||||||
| ``` | ``` | ||||||
|  |  | ||||||
| ## Configuration | ## Configuration | ||||||
|  |  | ||||||
| npmci supports the use of npmextra. | npmci supports the use of npmextra. | ||||||
|  |  | ||||||
| To configure npmci create a `npmextra.json` file at the root of your project | To configure npmci create a `npmextra.json` file at the root of your project | ||||||
|  |  | ||||||
| ```json | ```json | ||||||
| { | { | ||||||
|     "npmci": { |   "npmci": { | ||||||
|         "globalNpmTools": [ |     "globalNpmTools": ["npm-check-updates", "protractor", "npmts", "gitzone"] | ||||||
|             "npm-check-updates", |   } | ||||||
|             "protractor", |  | ||||||
|             "npmts", |  | ||||||
|             "gitzone" |  | ||||||
|         ] |  | ||||||
|     } |  | ||||||
| } | } | ||||||
| ``` | ``` | ||||||
|  |  | ||||||
| **Available options** | **Available options** | ||||||
|  |  | ||||||
| setting | example | description | | setting        | example                       | description                                                                                       | | ||||||
| --- | --- | --- | | -------------- | ----------------------------- | ------------------------------------------------------------------------------------------------- | | ||||||
| globalNpmTools | "globalNpmTools": ["gitbook"] | Will look for the specified package names locally and (if not yet present) install them from npm.  | | globalNpmTools | "globalNpmTools": ["gitbook"] | Will look for the specified package names locally and (if not yet present) install them from npm. | | ||||||
|  |  | ||||||
| For further information read the linked docs at the top of this README. | For further information read the linked docs at the top of this README. | ||||||
|  |  | ||||||
| > MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh) | > MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh) | ||||||
| | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html) | > | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html) | ||||||
|  |  | ||||||
| [](https://push.rocks) | [](https://push.rocks) | ||||||
|   | |||||||
| @@ -1,9 +1,11 @@ | |||||||
| # SSH | # SSH | ||||||
|  |  | ||||||
| npmci allows easy usage of ssh: | npmci allows easy usage of ssh: | ||||||
|  |  | ||||||
| ## Add the SSH KEY to the environment | ## Add the SSH KEY to the environment | ||||||
|  |  | ||||||
| To make npmci aware of any SSH KEY add it to the environment in the following format | To make npmci aware of any SSH KEY add it to the environment in the following format | ||||||
|  |  | ||||||
| ``` | ``` | ||||||
| # Key | # Key | ||||||
| NPMCI_SSHKEY_[A_NAME_FROM_YOU] | NPMCI_SSHKEY_[A_NAME_FROM_YOU] | ||||||
| @@ -12,6 +14,7 @@ NPMCI_SSHKEY_[A_NAME_FROM_YOU] | |||||||
| ``` | ``` | ||||||
|  |  | ||||||
| ## Use npmci cli tool in your ci script | ## Use npmci cli tool in your ci script | ||||||
|  |  | ||||||
| ``` | ``` | ||||||
| npmci prepare ssh | npmci prepare ssh | ||||||
| npmci command git remote add heroku ssh://git@heroku.com/[you project name].git | npmci command git remote add heroku ssh://git@heroku.com/[you project name].git | ||||||
|   | |||||||
| @@ -10,7 +10,8 @@ | |||||||
|         ], |         ], | ||||||
|         "npmGlobalTools": [ |         "npmGlobalTools": [ | ||||||
|             "npmts" |             "npmts" | ||||||
|         ] |         ], | ||||||
|  |         "npmAccessLevel": "public" | ||||||
|     }, |     }, | ||||||
|     "npmdocker":{ |     "npmdocker":{ | ||||||
|         "baseImage":"hosttoday/ht-docker-node:npmci", |         "baseImage":"hosttoday/ht-docker-node:npmci", | ||||||
|   | |||||||
							
								
								
									
										21
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										21
									
								
								package.json
									
									
									
									
									
								
							| @@ -1,6 +1,6 @@ | |||||||
| { | { | ||||||
|   "name": "npmci", |   "name": "@shipzone/npmci", | ||||||
|   "version": "3.0.10", |   "version": "3.0.33", | ||||||
|   "description": "node and docker in gitlab ci on steroids", |   "description": "node and docker in gitlab ci on steroids", | ||||||
|   "main": "dist/index.js", |   "main": "dist/index.js", | ||||||
|   "typings": "dist/index.d.ts", |   "typings": "dist/index.d.ts", | ||||||
| @@ -9,6 +9,7 @@ | |||||||
|   }, |   }, | ||||||
|   "scripts": { |   "scripts": { | ||||||
|     "test": "(rm -f config.json) && (npmts) && (npm run testVersion)", |     "test": "(rm -f config.json) && (npmts) && (npm run testVersion)", | ||||||
|  |     "build": "(rm -f config.json) && (npmts) && (npm run testVersion)", | ||||||
|     "testVersion": "(cd test/assets/ && node ../../dist/cli.js -v)" |     "testVersion": "(cd test/assets/ && node ../../dist/cli.js -v)" | ||||||
|   }, |   }, | ||||||
|   "repository": { |   "repository": { | ||||||
| @@ -22,35 +23,31 @@ | |||||||
|   }, |   }, | ||||||
|   "homepage": "https://gitlab.com/gitzone/npmci#README", |   "homepage": "https://gitlab.com/gitzone/npmci#README", | ||||||
|   "devDependencies": { |   "devDependencies": { | ||||||
|     "tapbundle": "^1.1.1" |     "tapbundle": "^2.0.0" | ||||||
|   }, |   }, | ||||||
|   "dependencies": { |   "dependencies": { | ||||||
|     "@types/lodash": "^4.14.74", |     "@types/lodash": "^4.14.74", | ||||||
|     "@types/node": "^8.0.25", |  | ||||||
|     "@types/shelljs": "^0.7.4", |     "@types/shelljs": "^0.7.4", | ||||||
|     "@types/through2": "^2.0.33", |     "@types/through2": "^2.0.33", | ||||||
|     "beautylog": "^6.1.10", |     "beautylog": "^6.1.10", | ||||||
|     "cflare": "^1.0.5", |     "cflare": "^1.0.5", | ||||||
|     "gulp": "^3.9.1", |     "lik": "^2.0.5", | ||||||
|     "gulp-function": "^2.2.9", |  | ||||||
|     "lik": "^1.0.40", |  | ||||||
|     "lodash": "^4.17.4", |     "lodash": "^4.17.4", | ||||||
|     "npmextra": "^2.0.9", |     "npmextra": "^2.0.9", | ||||||
|     "projectinfo": "^3.0.2", |     "projectinfo": "^3.0.2", | ||||||
|     "request": "^2.81.0", |     "request": "^2.81.0", | ||||||
|     "shelljs": "^0.7.8", |     "shelljs": "^0.8.1", | ||||||
|  |     "smartanalytics": "^2.0.9", | ||||||
|     "smartcli": "^2.0.7", |     "smartcli": "^2.0.7", | ||||||
|     "smartdelay": "^1.0.3", |     "smartdelay": "^1.0.3", | ||||||
|     "smartfile": "^4.2.20", |     "smartfile": "^4.2.20", | ||||||
|     "smartmonitor": "^1.0.3", |  | ||||||
|     "smartparam": "^1.0.2", |     "smartparam": "^1.0.2", | ||||||
|     "smartq": "^1.1.6", |     "smartq": "^1.1.6", | ||||||
|     "smartshell": "^1.0.13", |     "smartshell": "^1.0.18", | ||||||
|     "smartsocket": "^1.1.10", |     "smartsocket": "^1.1.10", | ||||||
|     "smartssh": "^1.2.2", |     "smartssh": "^1.2.2", | ||||||
|     "smartstring": "^2.0.24", |     "smartstring": "^2.0.24", | ||||||
|     "smartsystem": "^2.0.2", |     "smartsystem": "^2.0.2", | ||||||
|     "through2": "^2.0.3", |     "through2": "^2.0.3" | ||||||
|     "typings-global": "^1.0.20" |  | ||||||
|   } |   } | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										28
									
								
								readme.md
									
									
									
									
									
								
							
							
						
						
									
										28
									
								
								readme.md
									
									
									
									
									
								
							| @@ -1,29 +1,33 @@ | |||||||
| # npmci | # npmci | ||||||
|  |  | ||||||
| node and docker in gitlab ci on steroids | node and docker in gitlab ci on steroids | ||||||
|  |  | ||||||
| ## Availabililty | ## Availabililty | ||||||
| [](https://www.npmjs.com/package/npmci) |  | ||||||
| [](https://GitLab.com/gitzone/npmci) | [](https://www.npmjs.com/package/@shipzone/npmci) | ||||||
| [](https://github.com/gitzone/npmci) | [](https://GitLab.com/shipzone/npmci) | ||||||
| [](https://gitzone.gitlab.io/npmci/) | [](https://github.com/shipzone/npmci) | ||||||
|  | [](https://shipzone.gitlab.io/npmci/) | ||||||
|  |  | ||||||
| ## Status for master | ## Status for master | ||||||
| [](https://GitLab.com/gitzone/npmci/commits/master) |  | ||||||
| [](https://GitLab.com/gitzone/npmci/commits/master) | [](https://GitLab.com/shipzone/npmci/commits/master) | ||||||
| [](https://www.npmjs.com/package/npmci) | [](https://GitLab.com/shipzone/npmci/commits/master) | ||||||
| [](https://david-dm.org/gitzonetools/npmci) | [](https://www.npmjs.com/package/@shipzone/npmci) | ||||||
| [](https://www.bithound.io/github/gitzonetools/npmci/master/dependencies/npm) | [](https://david-dm.org/shipzone/npmci) | ||||||
| [](https://www.bithound.io/github/gitzonetools/npmci) | [](https://www.bithound.io/github/shipzone/npmci/master/dependencies/npm) | ||||||
|  | [](https://www.bithound.io/github/shipzone/npmci) | ||||||
| [](https://nodejs.org/dist/latest-v6.x/docs/api/) | [](https://nodejs.org/dist/latest-v6.x/docs/api/) | ||||||
| [](https://nodejs.org/dist/latest-v6.x/docs/api/) | [](https://nodejs.org/dist/latest-v6.x/docs/api/) | ||||||
| [](http://standardjs.com/) | [](http://standardjs.com/) | ||||||
|  |  | ||||||
| ## Usage | ## Usage | ||||||
|  |  | ||||||
| Use TypeScript for best in class instellisense. | Use TypeScript for best in class instellisense. | ||||||
|  |  | ||||||
| For further information read the linked docs at the top of this README. | For further information read the linked docs at the top of this README. | ||||||
|  |  | ||||||
| > MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh) | > MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh) | ||||||
| | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html) | > | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html) | ||||||
|  |  | ||||||
| [](https://push.rocks) | [](https://push.rocks) | ||||||
|   | |||||||
							
								
								
									
										33
									
								
								test/assets/package.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								test/assets/package.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,33 @@ | |||||||
|  | { | ||||||
|  |   "name": "sandbox-npmts", | ||||||
|  |   "version": "1.0.1", | ||||||
|  |   "description": "a cool test repo for npmts", | ||||||
|  |   "main": "dist/index.js", | ||||||
|  |   "typings": "dist/index.d.ts", | ||||||
|  |   "directories": { | ||||||
|  |     "test": "test" | ||||||
|  |   }, | ||||||
|  |   "scripts": { | ||||||
|  |     "test": "(npmts)", | ||||||
|  |     "testDev": "node ../../pushrocks/npmts/dist/index.js" | ||||||
|  |   }, | ||||||
|  |   "repository": { | ||||||
|  |     "type": "git", | ||||||
|  |     "url": "git+ssh://git@gitlab.com/sandboxzone/sandbox-npmts.git" | ||||||
|  |   }, | ||||||
|  |   "author": "Lossless GmbH", | ||||||
|  |   "license": "MIT", | ||||||
|  |   "bugs": { | ||||||
|  |     "url": "https://gitlab.com/sandboxzone/sandbox-npmts/issues" | ||||||
|  |   }, | ||||||
|  |   "homepage": "https://gitlab.com/sandboxzone/sandbox-npmts#README", | ||||||
|  |   "dependencies": { | ||||||
|  |     "smartchai": "^1.0.3", | ||||||
|  |     "smartci": "^1.0.2", | ||||||
|  |     "smartq": "^1.1.6" | ||||||
|  |   }, | ||||||
|  |   "devDependencies": { | ||||||
|  |     "qenv": "^1.1.7", | ||||||
|  |     "tapbundle": "^1.1.1" | ||||||
|  |   } | ||||||
|  | } | ||||||
							
								
								
									
										145
									
								
								test/test.ts
									
									
									
									
									
								
							
							
						
						
									
										145
									
								
								test/test.ts
									
									
									
									
									
								
							| @@ -1,141 +1,116 @@ | |||||||
| import { tap, expect } from 'tapbundle' | import { tap, expect } from 'tapbundle'; | ||||||
| import * as path from 'path' | import * as path from 'path'; | ||||||
|  |  | ||||||
| // Setup test | // Setup test | ||||||
| process.env.NPMTS_TEST = 'true' | process.env.NPMTS_TEST = 'true'; | ||||||
|  |  | ||||||
| // set up environment | // set up environment | ||||||
| process.env.CI_REPOSITORY_URL = 'https://yyyyyy:xxxxxxxx@gitlab.com/mygroup/myrepo.git' | process.env.CI_REPOSITORY_URL = 'https://yyyyyy:xxxxxxxx@gitlab.com/mygroup/myrepo.git'; | ||||||
| process.env.CI_BUILD_TOKEN = 'kjlkjfiudofiufs' | process.env.CI_BUILD_TOKEN = 'kjlkjfiudofiufs'; | ||||||
|  |  | ||||||
| // Docker | // Docker | ||||||
| process.env.NPMCI_LOGIN_DOCKER = 'docker.io|someuser|somepass' | process.env.NPMCI_LOGIN_DOCKER = 'docker.io|someuser|somepass'; | ||||||
|  |  | ||||||
| // SSH env | // SSH env | ||||||
| process.env.NPMCI_SSHKEY_1 = 'hostString|somePrivKey|##' | process.env.NPMCI_SSHKEY_1 = 'hostString|somePrivKey|##'; | ||||||
|  |  | ||||||
| process.cwd = () => { | process.cwd = () => { | ||||||
|   return path.join(__dirname, 'assets/') |   return path.join(__dirname, 'assets/'); | ||||||
| } | }; | ||||||
|  |  | ||||||
| // require NPMCI files | // require NPMCI files | ||||||
| import '../ts/index' | import '../ts/index'; | ||||||
| import npmciModDocker = require('../ts/mod_docker/index') | import npmciModDocker = require('../ts/mod_docker/index'); | ||||||
| import npmciModNpm = require('../ts/mod_npm/index') | import npmciModNpm = require('../ts/mod_npm/index'); | ||||||
| import npmciModNode = require('../ts/mod_node/index') | import npmciModNode = require('../ts/mod_node/index'); | ||||||
| import npmciModSsh = require('../ts/mod_ssh/index') | import npmciModSsh = require('../ts/mod_ssh/index'); | ||||||
| import npmciEnv = require('../ts/npmci.env') | import npmciEnv = require('../ts/npmci.env'); | ||||||
|  |  | ||||||
| // ====== | // ====== | ||||||
| // Docker | // Docker | ||||||
| // ====== | // ====== | ||||||
|  |  | ||||||
| let dockerfile1: npmciModDocker.Dockerfile | let dockerfile1: npmciModDocker.Dockerfile; | ||||||
| let dockerfile2: npmciModDocker.Dockerfile | let dockerfile2: npmciModDocker.Dockerfile; | ||||||
| let sortableArray: npmciModDocker.Dockerfile[] | let sortableArray: npmciModDocker.Dockerfile[]; | ||||||
|  |  | ||||||
| tap.test('should return valid Dockerfiles', async () => { | tap.test('should return valid Dockerfiles', async () => { | ||||||
|   dockerfile1 = new npmciModDocker.Dockerfile({ filePath: './Dockerfile', read: true }) |   dockerfile1 = new npmciModDocker.Dockerfile({ filePath: './Dockerfile', read: true }); | ||||||
|   dockerfile2 = new npmciModDocker.Dockerfile({ filePath: './Dockerfile_sometag1', read: true }) |   dockerfile2 = new npmciModDocker.Dockerfile({ filePath: './Dockerfile_sometag1', read: true }); | ||||||
|   expect(dockerfile1.version).to.equal('latest') |   expect(dockerfile1.version).to.equal('latest'); | ||||||
|   return expect(dockerfile2.version).to.equal('sometag1') |   return expect(dockerfile2.version).to.equal('sometag1'); | ||||||
| }) | }); | ||||||
|  |  | ||||||
| tap.test('should read a directory of Dockerfiles', async () => { | tap.test('should read a directory of Dockerfiles', async () => { | ||||||
|   return npmciModDocker.helpers.readDockerfiles() |   return npmciModDocker.helpers | ||||||
|  |     .readDockerfiles() | ||||||
|     .then(async (readDockerfilesArrayArg: npmciModDocker.Dockerfile[]) => { |     .then(async (readDockerfilesArrayArg: npmciModDocker.Dockerfile[]) => { | ||||||
|       sortableArray = readDockerfilesArrayArg |       sortableArray = readDockerfilesArrayArg; | ||||||
|       return expect(readDockerfilesArrayArg[1].version).to.equal('sometag1') |       return expect(readDockerfilesArrayArg[1].version).to.equal('sometag1'); | ||||||
|     }) |     }); | ||||||
| }) | }); | ||||||
|  |  | ||||||
| tap.test('should sort an array of Dockerfiles', async () => { | tap.test('should sort an array of Dockerfiles', async () => { | ||||||
|   return npmciModDocker.helpers.sortDockerfiles(sortableArray) |   return npmciModDocker.helpers | ||||||
|  |     .sortDockerfiles(sortableArray) | ||||||
|     .then(async (sortedArrayArg: npmciModDocker.Dockerfile[]) => { |     .then(async (sortedArrayArg: npmciModDocker.Dockerfile[]) => { | ||||||
|       console.log(sortedArrayArg) |       console.log(sortedArrayArg); | ||||||
|     }) |     }); | ||||||
| }) | }); | ||||||
|  |  | ||||||
| tap.test('should build all Dockerfiles', async () => { | tap.test('should build all Dockerfiles', async () => { | ||||||
|   return npmciModDocker.handleCli({ |   return npmciModDocker.handleCli({ | ||||||
|     _: [ |     _: ['docker', 'build'] | ||||||
|       'docker', |   }); | ||||||
|       'build' | }); | ||||||
|     ] |  | ||||||
|   }) |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| tap.test('should test all Dockerfiles', async () => { | tap.test('should test all Dockerfiles', async () => { | ||||||
|   return await npmciModDocker.handleCli({ |   return await npmciModDocker.handleCli({ | ||||||
|     _: [ |     _: ['docker', 'test'] | ||||||
|       'docker', |   }); | ||||||
|       'test' | }); | ||||||
|     ] |  | ||||||
|   }) |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| tap.test('should test dockerfiles', async () => { | tap.test('should test dockerfiles', async () => { | ||||||
|   return await npmciModDocker.handleCli({ |   return await npmciModDocker.handleCli({ | ||||||
|     _: [ |     _: ['docker', 'test'] | ||||||
|       'docker', |   }); | ||||||
|       'test' | }); | ||||||
|     ] |  | ||||||
|   }) |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| tap.test('should login docker daemon', async () => { | tap.test('should login docker daemon', async () => { | ||||||
|   return await npmciModDocker.handleCli({ |   return await npmciModDocker.handleCli({ | ||||||
|     _: [ |     _: ['docker', 'login'] | ||||||
|       'docker', |   }); | ||||||
|       'login' | }); | ||||||
|     ] |  | ||||||
|   }) |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| // === | // === | ||||||
| // SSH | // SSH | ||||||
| // === | // === | ||||||
| tap.test('should prepare SSH keys', async () => { | tap.test('should prepare SSH keys', async () => { | ||||||
|   return await npmciModSsh.handleCli({ |   return await npmciModSsh.handleCli({ | ||||||
|     _: [ |     _: ['ssh', 'prepare'] | ||||||
|       'ssh', |   }); | ||||||
|       'prepare' | }); | ||||||
|     ] |  | ||||||
|   }) |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| // ==== | // ==== | ||||||
| // node | // node | ||||||
| // ==== | // ==== | ||||||
| tap.test('should install a certain version of node', async () => { | tap.test('should install a certain version of node', async () => { | ||||||
|   await npmciModNode.handleCli({ |   await npmciModNode.handleCli({ | ||||||
|     _: [ |     _: ['node', 'install', 'stable'] | ||||||
|       'node', |   }); | ||||||
|       'install', |  | ||||||
|       'stable' |  | ||||||
|     ] |  | ||||||
|   }) |  | ||||||
|   await npmciModNode.handleCli({ |   await npmciModNode.handleCli({ | ||||||
|     _: [ |     _: ['node', 'install', 'lts'] | ||||||
|       'node', |   }); | ||||||
|       'install', |  | ||||||
|       'lts' |  | ||||||
|     ] |  | ||||||
|   }) |  | ||||||
|   await npmciModNode.handleCli({ |   await npmciModNode.handleCli({ | ||||||
|     _: [ |     _: ['node', 'install', 'legacy'] | ||||||
|       'node', |   }); | ||||||
|       'install', | }); | ||||||
|       'legacy' |  | ||||||
|     ] |  | ||||||
|   }) |  | ||||||
| }) |  | ||||||
|  |  | ||||||
| // make sure test ends all right | // make sure test ends all right | ||||||
| tap.test('reset paths', async () => { | tap.test('reset paths', async () => { | ||||||
|   process.cwd = () => { |   process.cwd = () => { | ||||||
|     return path.join(__dirname, '../') |     return path.join(__dirname, '../'); | ||||||
|   } |   }; | ||||||
| }) | }); | ||||||
|  |  | ||||||
| tap.start() | tap.start(); | ||||||
|   | |||||||
| @@ -1,2 +1 @@ | |||||||
| import './npmci.cli' | import './npmci.cli'; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,10 +1,10 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
| import * as paths from '../npmci.paths' | import * as paths from '../npmci.paths'; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * cleans npmci config files |  * cleans npmci config files | ||||||
|  */ |  */ | ||||||
| export let clean = async (): Promise<void> => { | export let clean = async (): Promise<void> => { | ||||||
|   plugins.smartfile.fs.removeSync(paths.NpmciPackageConfig) |   plugins.smartfile.fs.removeSync(paths.NpmciPackageConfig); | ||||||
|   return |   return; | ||||||
| } | }; | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| export * from '../npmci.plugins' | export * from '../npmci.plugins'; | ||||||
|   | |||||||
| @@ -1,29 +1,31 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
|  |  | ||||||
| let npmciCflare = new plugins.cflare.CflareAccount() | let npmciCflare = new plugins.cflare.CflareAccount(); | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * handle cli input |  * handle cli input | ||||||
|  * @param argvArg |  * @param argvArg | ||||||
|  */ |  */ | ||||||
| export let handleCli = async (argvArg) => { | export let handleCli = async argvArg => { | ||||||
|   if (argvArg._.length >= 2) { |   if (argvArg._.length >= 2) { | ||||||
|     let action: string = argvArg._[1] |     let action: string = argvArg._[1]; | ||||||
|     switch (action) { |     switch (action) { | ||||||
|       default: |       default: | ||||||
|         plugins.beautylog.error(`>>npmci cloudflare ...<< action >>${action}<< not supported`) |         plugins.beautylog.error(`>>npmci cloudflare ...<< action >>${action}<< not supported`); | ||||||
|         process.exit(1) |         process.exit(1); | ||||||
|     } |     } | ||||||
|   } else { |   } else { | ||||||
|     plugins.beautylog.log(`>>npmci cloudflare ...<< cli arguments invalid... Please read the documentation.`) |     plugins.beautylog.log( | ||||||
|     process.exit(1) |       `>>npmci cloudflare ...<< cli arguments invalid... Please read the documentation.` | ||||||
|  |     ); | ||||||
|  |     process.exit(1); | ||||||
|   } |   } | ||||||
| } | }; | ||||||
|  |  | ||||||
| export let purge = async (argvArg) => { | export let purge = async argvArg => { | ||||||
|   npmciCflare.auth({ |   npmciCflare.auth({ | ||||||
|     email: '', |     email: '', | ||||||
|     key: '' |     key: '' | ||||||
|   }) |   }); | ||||||
|   npmciCflare.purgeZone(argvArg._[1]) |   npmciCflare.purgeZone(argvArg._[1]); | ||||||
| } | }; | ||||||
|   | |||||||
| @@ -1,7 +1,5 @@ | |||||||
| export * from '../npmci.plugins' | export * from '../npmci.plugins'; | ||||||
|  |  | ||||||
| import * as cflare from 'cflare' | import * as cflare from 'cflare'; | ||||||
|  |  | ||||||
| export { | export { cflare }; | ||||||
|     cflare |  | ||||||
| } |  | ||||||
|   | |||||||
| @@ -1,13 +1,15 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
| import { bash } from '../npmci.bash' | import { bash } from '../npmci.bash'; | ||||||
|  |  | ||||||
| export let command = async () => { | export let command = async () => { | ||||||
|   let wrappedCommand: string = '' |   let wrappedCommand: string = ''; | ||||||
|   let argvArray = process.argv |   let argvArray = process.argv; | ||||||
|   for (let i = 3; i < argvArray.length; i++) { |   for (let i = 3; i < argvArray.length; i++) { | ||||||
|     wrappedCommand = wrappedCommand + argvArray[i] |     wrappedCommand = wrappedCommand + argvArray[i]; | ||||||
|     if (i + 1 !== argvArray.length) { wrappedCommand = wrappedCommand + ' ' } |     if (i + 1 !== argvArray.length) { | ||||||
|  |       wrappedCommand = wrappedCommand + ' '; | ||||||
|  |     } | ||||||
|   } |   } | ||||||
|   await bash(wrappedCommand) |   await bash(wrappedCommand); | ||||||
|   return |   return; | ||||||
| } | }; | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| export * from '../npmci.plugins' | export * from '../npmci.plugins'; | ||||||
|   | |||||||
| @@ -1,75 +1,76 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
| import * as paths from '../npmci.paths' | import * as paths from '../npmci.paths'; | ||||||
| import { bash } from '../npmci.bash' | import { bash } from '../npmci.bash'; | ||||||
|  |  | ||||||
| import * as helpers from './mod.helpers' | import * as helpers from './mod.helpers'; | ||||||
|  |  | ||||||
| // classes | // classes | ||||||
| import { Dockerfile } from './mod.classes.dockerfile' | import { Dockerfile } from './mod.classes.dockerfile'; | ||||||
| import { DockerRegistry } from './mod.classes.dockerregistry' | import { DockerRegistry } from './mod.classes.dockerregistry'; | ||||||
| import { RegistryStorage } from './mod.classes.registrystorage' | import { RegistryStorage } from './mod.classes.registrystorage'; | ||||||
|  |  | ||||||
| // instances | // instances | ||||||
| let npmciRegistryStorage = new RegistryStorage() | let npmciRegistryStorage = new RegistryStorage(); | ||||||
|  |  | ||||||
| export { | export { Dockerfile, helpers }; | ||||||
|   Dockerfile, |  | ||||||
|   helpers |  | ||||||
| } |  | ||||||
|  |  | ||||||
| export let modArgvArg // will be set through the build command | export let modArgvArg; // will be set through the build command | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * handle cli input |  * handle cli input | ||||||
|  * @param argvArg |  * @param argvArg | ||||||
|  */ |  */ | ||||||
| export let handleCli = async (argvArg) => { | export let handleCli = async argvArg => { | ||||||
|   modArgvArg = argvArg |   modArgvArg = argvArg; | ||||||
|   if (argvArg._.length >= 2) { |   if (argvArg._.length >= 2) { | ||||||
|     let action: string = argvArg._[ 1 ] |     let action: string = argvArg._[1]; | ||||||
|     switch (action) { |     switch (action) { | ||||||
|       case 'build': |       case 'build': | ||||||
|         await build() |         await build(); | ||||||
|         break |         break; | ||||||
|       case 'login': |       case 'login': | ||||||
|         await login() |       case 'prepare': | ||||||
|         break |         await login(); | ||||||
|  |         break; | ||||||
|       case 'test': |       case 'test': | ||||||
|         await test() |         await test(); | ||||||
|         break |         break; | ||||||
|       case 'push': |       case 'push': | ||||||
|         await push(argvArg) |         await push(argvArg); | ||||||
|         break |         break; | ||||||
|       case 'pull': |       case 'pull': | ||||||
|         await pull(argvArg) |         await pull(argvArg); | ||||||
|         break |         break; | ||||||
|       default: |       default: | ||||||
|         plugins.beautylog.error(`>>npmci docker ...<< action >>${action}<< not supported`) |         plugins.beautylog.error(`>>npmci docker ...<< action >>${action}<< not supported`); | ||||||
|     } |     } | ||||||
|   } else { |   } else { | ||||||
|     plugins.beautylog.log(`>>npmci docker ...<< cli arguments invalid... Please read the documentation.`) |     plugins.beautylog.log( | ||||||
|  |       `>>npmci docker ...<< cli arguments invalid... Please read the documentation.` | ||||||
|  |     ); | ||||||
|   } |   } | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * builds a cwd of Dockerfiles by triggering a promisechain |  * builds a cwd of Dockerfiles by triggering a promisechain | ||||||
|  */ |  */ | ||||||
| export let build = async () => { | export let build = async () => { | ||||||
|   await prepare() |   await prepare(); | ||||||
|   plugins.beautylog.log('now building Dockerfiles...') |   plugins.beautylog.log('now building Dockerfiles...'); | ||||||
|   await helpers.readDockerfiles() |   await helpers | ||||||
|  |     .readDockerfiles() | ||||||
|     .then(helpers.sortDockerfiles) |     .then(helpers.sortDockerfiles) | ||||||
|     .then(helpers.mapDockerfiles) |     .then(helpers.mapDockerfiles) | ||||||
|     .then(helpers.buildDockerfiles) |     .then(helpers.buildDockerfiles); | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * login to the DockerRegistries |  * login to the DockerRegistries | ||||||
|  */ |  */ | ||||||
| export let login = async () => { | export let login = async () => { | ||||||
|   await prepare() |   await prepare(); | ||||||
|   await npmciRegistryStorage.loginAll() |   await npmciRegistryStorage.loginAll(); | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * logs in docker |  * logs in docker | ||||||
| @@ -77,62 +78,65 @@ export let login = async () => { | |||||||
| export let prepare = async () => { | export let prepare = async () => { | ||||||
|   // Always login to GitLab Registry |   // Always login to GitLab Registry | ||||||
|   if (!process.env.CI_BUILD_TOKEN || process.env.CI_BUILD_TOKEN === '') { |   if (!process.env.CI_BUILD_TOKEN || process.env.CI_BUILD_TOKEN === '') { | ||||||
|     plugins.beautylog.error('No registry token specified by gitlab!') |     plugins.beautylog.error('No registry token specified by gitlab!'); | ||||||
|     process.exit(1) |     process.exit(1); | ||||||
|   } |   } | ||||||
|   npmciRegistryStorage.addRegistry(new DockerRegistry({ |   npmciRegistryStorage.addRegistry( | ||||||
|     registryUrl: 'registry.gitlab.com', |     new DockerRegistry({ | ||||||
|     username: 'gitlab-ci-token', |       registryUrl: 'registry.gitlab.com', | ||||||
|     password: process.env.CI_BUILD_TOKEN |       username: 'gitlab-ci-token', | ||||||
|   })) |       password: process.env.CI_BUILD_TOKEN | ||||||
|  |     }) | ||||||
|  |   ); | ||||||
|  |  | ||||||
|   // handle registries |   // handle registries | ||||||
|   await plugins.smartparam.forEachMinimatch(process.env, 'NPMCI_LOGIN_DOCKER*', async (envString) => { |   await plugins.smartparam.forEachMinimatch(process.env, 'NPMCI_LOGIN_DOCKER*', async envString => { | ||||||
|     npmciRegistryStorage.addRegistry( |     npmciRegistryStorage.addRegistry(DockerRegistry.fromEnvString(envString)); | ||||||
|       DockerRegistry.fromEnvString(envString) |   }); | ||||||
|     ) |   return; | ||||||
|   }) | }; | ||||||
|   return |  | ||||||
| } |  | ||||||
|  |  | ||||||
| export let push = async (argvArg) => { | export let push = async argvArg => { | ||||||
|   await prepare() |   await prepare(); | ||||||
|   let registryUrlArg = argvArg._[ 2 ] |   let registryUrlArg = argvArg._[2]; | ||||||
|   let suffix = null |   let suffix = null; | ||||||
|   if (argvArg._.length >= 4) { |   if (argvArg._.length >= 4) { | ||||||
|     suffix = argvArg._[ 3 ] |     suffix = argvArg._[3]; | ||||||
|   } |   } | ||||||
|   let dockerfileArray = await helpers.readDockerfiles() |   let dockerfileArray = await helpers | ||||||
|  |     .readDockerfiles() | ||||||
|     .then(helpers.sortDockerfiles) |     .then(helpers.sortDockerfiles) | ||||||
|     .then(helpers.mapDockerfiles) |     .then(helpers.mapDockerfiles); | ||||||
|   let localDockerRegistry = npmciRegistryStorage.getRegistryByUrl(registryUrlArg) |   let localDockerRegistry = npmciRegistryStorage.getRegistryByUrl(registryUrlArg); | ||||||
|   if (!localDockerRegistry) { |   if (!localDockerRegistry) { | ||||||
|     plugins.beautylog.error(`Cannot push to registry ${registryUrlArg}, because it was not found in the authenticated registry list.`) |     plugins.beautylog.error( | ||||||
|     process.exit(1) |       `Cannot push to registry ${registryUrlArg}, because it was not found in the authenticated registry list.` | ||||||
|  |     ); | ||||||
|  |     process.exit(1); | ||||||
|   } |   } | ||||||
|   for (let dockerfile of dockerfileArray) { |   for (let dockerfile of dockerfileArray) { | ||||||
|     await dockerfile.push(localDockerRegistry, suffix) |     await dockerfile.push(localDockerRegistry, suffix); | ||||||
|   } |   } | ||||||
| } | }; | ||||||
|  |  | ||||||
| export let pull = async (argvArg) => { | export let pull = async argvArg => { | ||||||
|   await prepare() |   await prepare(); | ||||||
|   let registryUrlArg = argvArg._[ 2 ] |   let registryUrlArg = argvArg._[2]; | ||||||
|   let suffix = null |   let suffix = null; | ||||||
|   if (argvArg._.length >= 4) { |   if (argvArg._.length >= 4) { | ||||||
|     suffix = argvArg._[ 3 ] |     suffix = argvArg._[3]; | ||||||
|   } |   } | ||||||
|   let localDockerRegistry = npmciRegistryStorage.getRegistryByUrl(registryUrlArg) |   let localDockerRegistry = npmciRegistryStorage.getRegistryByUrl(registryUrlArg); | ||||||
|   let dockerfileArray = await helpers.readDockerfiles() |   let dockerfileArray = await helpers | ||||||
|  |     .readDockerfiles() | ||||||
|     .then(helpers.sortDockerfiles) |     .then(helpers.sortDockerfiles) | ||||||
|     .then(helpers.mapDockerfiles) |     .then(helpers.mapDockerfiles); | ||||||
|   for (let dockerfile of dockerfileArray) { |   for (let dockerfile of dockerfileArray) { | ||||||
|     await dockerfile.pull(localDockerRegistry, suffix) |     await dockerfile.pull(localDockerRegistry, suffix); | ||||||
|   } |   } | ||||||
| } | }; | ||||||
|  |  | ||||||
| export let test = async () => { | export let test = async () => { | ||||||
|   await prepare() |   await prepare(); | ||||||
|   return await helpers.readDockerfiles() |   return await helpers.readDockerfiles().then(helpers.testDockerfiles); | ||||||
|     .then(helpers.testDockerfiles) | }; | ||||||
| } |  | ||||||
|   | |||||||
| @@ -1,93 +1,109 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
| import * as NpmciEnv from '../npmci.env' | import * as NpmciEnv from '../npmci.env'; | ||||||
| import { bash } from '../npmci.bash' | import { bash } from '../npmci.bash'; | ||||||
| import * as paths from '../npmci.paths' | import * as paths from '../npmci.paths'; | ||||||
|  |  | ||||||
| import { DockerRegistry } from './mod.classes.dockerregistry' | import { DockerRegistry } from './mod.classes.dockerregistry'; | ||||||
| import * as helpers from './mod.helpers' | import * as helpers from './mod.helpers'; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * class Dockerfile represents a Dockerfile on disk in npmci |  * class Dockerfile represents a Dockerfile on disk in npmci | ||||||
|  */ |  */ | ||||||
| export class Dockerfile { | export class Dockerfile { | ||||||
|   filePath: string |   filePath: string; | ||||||
|   repo: string |   repo: string; | ||||||
|   version: string |   version: string; | ||||||
|   cleanTag: string |   cleanTag: string; | ||||||
|   buildTag: string |   buildTag: string; | ||||||
|   containerName: string |   containerName: string; | ||||||
|   content: string |   content: string; | ||||||
|   baseImage: string |   baseImage: string; | ||||||
|   localBaseImageDependent: boolean |   localBaseImageDependent: boolean; | ||||||
|   localBaseDockerfile: Dockerfile |   localBaseDockerfile: Dockerfile; | ||||||
|   constructor (options: { filePath?: string, fileContents?: string | Buffer, read?: boolean }) { |   constructor(options: { filePath?: string; fileContents?: string | Buffer; read?: boolean }) { | ||||||
|     this.filePath = options.filePath |     this.filePath = options.filePath; | ||||||
|     this.repo = NpmciEnv.repo.user + '/' + NpmciEnv.repo.repo |     this.repo = NpmciEnv.repo.user + '/' + NpmciEnv.repo.repo; | ||||||
|     this.version = helpers.dockerFileVersion(plugins.path.parse(options.filePath).base) |     this.version = helpers.dockerFileVersion(plugins.path.parse(options.filePath).base); | ||||||
|     this.cleanTag = this.repo + ':' + this.version |     this.cleanTag = this.repo + ':' + this.version; | ||||||
|     this.buildTag = this.cleanTag |     this.buildTag = this.cleanTag; | ||||||
|  |  | ||||||
|     this.containerName = 'dockerfile-' + this.version |     this.containerName = 'dockerfile-' + this.version; | ||||||
|     if (options.filePath && options.read) { |     if (options.filePath && options.read) { | ||||||
|       this.content = plugins.smartfile.fs.toStringSync(plugins.path.resolve(options.filePath)) |       this.content = plugins.smartfile.fs.toStringSync(plugins.path.resolve(options.filePath)); | ||||||
|     } |     } | ||||||
|     this.baseImage = helpers.dockerBaseImage(this.content) |     this.baseImage = helpers.dockerBaseImage(this.content); | ||||||
|     this.localBaseImageDependent = false |     this.localBaseImageDependent = false; | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * builds the Dockerfile |    * builds the Dockerfile | ||||||
|    */ |    */ | ||||||
|   async build () { |   async build() { | ||||||
|     plugins.beautylog.info('now building Dockerfile for ' + this.cleanTag) |     plugins.beautylog.info('now building Dockerfile for ' + this.cleanTag); | ||||||
|     let buildArgsString = await helpers.getDockerBuildArgs() |     let buildArgsString = await helpers.getDockerBuildArgs(); | ||||||
|     let buildCommand = `docker build -t ${this.buildTag} -f ${this.filePath} ${buildArgsString} .` |     let buildCommand = `docker build -t ${this.buildTag} -f ${this.filePath} ${buildArgsString} .`; | ||||||
|     await bash(buildCommand) |     await bash(buildCommand); | ||||||
|     return |     return; | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * pushes the Dockerfile to a registry |    * pushes the Dockerfile to a registry | ||||||
|    */ |    */ | ||||||
|   async push (dockerRegistryArg: DockerRegistry, versionSuffix: string = null) { |   async push(dockerRegistryArg: DockerRegistry, versionSuffix: string = null) { | ||||||
|     let pushTag = helpers.getDockerTagString(dockerRegistryArg.registryUrl, this.repo, this.version, versionSuffix) |     let pushTag = helpers.getDockerTagString( | ||||||
|     await bash(`docker tag ${this.buildTag} ${pushTag}`) |       dockerRegistryArg.registryUrl, | ||||||
|     await bash(`docker push ${pushTag}`) |       this.repo, | ||||||
|  |       this.version, | ||||||
|  |       versionSuffix | ||||||
|  |     ); | ||||||
|  |     await bash(`docker tag ${this.buildTag} ${pushTag}`); | ||||||
|  |     await bash(`docker push ${pushTag}`); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * pulls the Dockerfile from a registry |    * pulls the Dockerfile from a registry | ||||||
|    */ |    */ | ||||||
|   async pull (registryArg: DockerRegistry, versionSuffixArg: string = null) { |   async pull(registryArg: DockerRegistry, versionSuffixArg: string = null) { | ||||||
|     let pullTag = helpers.getDockerTagString(registryArg.registryUrl,this.repo, this.version, versionSuffixArg) |     let pullTag = helpers.getDockerTagString( | ||||||
|     await bash(`docker pull ${pullTag}`) |       registryArg.registryUrl, | ||||||
|     await bash(`docker tag ${pullTag} ${this.buildTag}`) |       this.repo, | ||||||
|  |       this.version, | ||||||
|  |       versionSuffixArg | ||||||
|  |     ); | ||||||
|  |     await bash(`docker pull ${pullTag}`); | ||||||
|  |     await bash(`docker tag ${pullTag} ${this.buildTag}`); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * tests the Dockerfile; |    * tests the Dockerfile; | ||||||
|    */ |    */ | ||||||
|   async test () { |   async test() { | ||||||
|     let testFile: string = plugins.path.join(paths.NpmciTestDir, 'test_' + this.version + '.sh') |     let testFile: string = plugins.path.join(paths.NpmciTestDir, 'test_' + this.version + '.sh'); | ||||||
|     let testFileExists: boolean = plugins.smartfile.fs.fileExistsSync(testFile) |     let testFileExists: boolean = plugins.smartfile.fs.fileExistsSync(testFile); | ||||||
|     if (testFileExists) { |     if (testFileExists) { | ||||||
|       // run tests |       // run tests | ||||||
|       await bash('docker run --name npmci_test_container ' + this.buildTag + ' mkdir /npmci_test') |       await bash( | ||||||
|       await bash('docker cp ' + testFile + ' npmci_test_container:/npmci_test/test.sh') |         `docker run --name npmci_test_container --entrypoint="bash" ${ | ||||||
|       await bash('docker commit npmci_test_container npmci_test_image') |           this.buildTag | ||||||
|       await bash('docker run npmci_test_image sh /npmci_test/test.sh') |         } -c "mkdir /npmci_test"` | ||||||
|       await bash('docker rm npmci_test_container') |       ); | ||||||
|       await bash('docker rmi --force npmci_test_image') |       await bash(`docker cp ${testFile} npmci_test_container:/npmci_test/test.sh`); | ||||||
|  |       await bash(`docker commit npmci_test_container npmci_test_image`); | ||||||
|  |       await bash(`docker run --entrypoint="bash" npmci_test_image -x /npmci_test/test.sh`); | ||||||
|  |       await bash(`docker rm npmci_test_container`); | ||||||
|  |       await bash(`docker rmi --force npmci_test_image`); | ||||||
|     } else { |     } else { | ||||||
|       plugins.beautylog.warn('skipping tests for ' + this.cleanTag + ' because no testfile was found!') |       plugins.beautylog.warn( | ||||||
|  |         'skipping tests for ' + this.cleanTag + ' because no testfile was found!' | ||||||
|  |       ); | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * gets the id of a Dockerfile |    * gets the id of a Dockerfile | ||||||
|    */ |    */ | ||||||
|   async getId () { |   async getId() { | ||||||
|     let containerId = await bash('docker inspect --type=image --format=\"{{.Id}}\" ' + this.buildTag) |     let containerId = await bash('docker inspect --type=image --format="{{.Id}}" ' + this.buildTag); | ||||||
|     return containerId |     return containerId; | ||||||
|   } |   } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -1,47 +1,47 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
| import { bash } from '../npmci.bash' | import { bash } from '../npmci.bash'; | ||||||
|  |  | ||||||
| export interface IDockerRegistryConstructorOptions { | export interface IDockerRegistryConstructorOptions { | ||||||
|   registryUrl: string, |   registryUrl: string; | ||||||
|   username: string, |   username: string; | ||||||
|   password: string |   password: string; | ||||||
| } | } | ||||||
|  |  | ||||||
| export class DockerRegistry { | export class DockerRegistry { | ||||||
|   registryUrl: string |   registryUrl: string; | ||||||
|   username: string |   username: string; | ||||||
|   password: string |   password: string; | ||||||
|   constructor (optionsArg: IDockerRegistryConstructorOptions) { |   constructor(optionsArg: IDockerRegistryConstructorOptions) { | ||||||
|     this.registryUrl = optionsArg.registryUrl |     this.registryUrl = optionsArg.registryUrl; | ||||||
|     this.username = optionsArg.username |     this.username = optionsArg.username; | ||||||
|     this.password = optionsArg.password |     this.password = optionsArg.password; | ||||||
|     plugins.beautylog.info(`created DockerRegistry for ${this.registryUrl}`) |     plugins.beautylog.info(`created DockerRegistry for ${this.registryUrl}`); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   static fromEnvString (envString: string): DockerRegistry { |   static fromEnvString(envString: string): DockerRegistry { | ||||||
|     let dockerRegexResultArray = envString.split('|') |     let dockerRegexResultArray = envString.split('|'); | ||||||
|     if (dockerRegexResultArray.length !== 3) { |     if (dockerRegexResultArray.length !== 3) { | ||||||
|       plugins.beautylog.error('malformed docker env var...') |       plugins.beautylog.error('malformed docker env var...'); | ||||||
|       process.exit(1) |       process.exit(1); | ||||||
|       return |       return; | ||||||
|     } |     } | ||||||
|     let registryUrl = dockerRegexResultArray[0] |     let registryUrl = dockerRegexResultArray[0]; | ||||||
|     let username = dockerRegexResultArray[1] |     let username = dockerRegexResultArray[1]; | ||||||
|     let password = dockerRegexResultArray[2] |     let password = dockerRegexResultArray[2]; | ||||||
|     return new DockerRegistry({ |     return new DockerRegistry({ | ||||||
|       registryUrl: registryUrl, |       registryUrl: registryUrl, | ||||||
|       username: username, |       username: username, | ||||||
|       password: password |       password: password | ||||||
|     }) |     }); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   async login () { |   async login() { | ||||||
|     if (this.registryUrl === 'docker.io') { |     if (this.registryUrl === 'docker.io') { | ||||||
|       await bash(`docker login -u ${this.username} -p ${this.password}`) |       await bash(`docker login -u ${this.username} -p ${this.password}`); | ||||||
|       plugins.beautylog.info('Logged in to standard docker hub') |       plugins.beautylog.info('Logged in to standard docker hub'); | ||||||
|     } else { |     } else { | ||||||
|       await bash(`docker login -u ${this.username} -p ${this.password} ${this.registryUrl}`) |       await bash(`docker login -u ${this.username} -p ${this.password} ${this.registryUrl}`); | ||||||
|     } |     } | ||||||
|     plugins.beautylog.ok(`docker authenticated for ${this.registryUrl}!`) |     plugins.beautylog.ok(`docker authenticated for ${this.registryUrl}!`); | ||||||
|   } |   } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -1,28 +1,28 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
| import { Objectmap } from 'lik' | import { Objectmap } from 'lik'; | ||||||
|  |  | ||||||
| import { DockerRegistry } from './mod.classes.dockerregistry' | import { DockerRegistry } from './mod.classes.dockerregistry'; | ||||||
|  |  | ||||||
| export class RegistryStorage { | export class RegistryStorage { | ||||||
|   objectMap = new Objectmap<DockerRegistry>() |   objectMap = new Objectmap<DockerRegistry>(); | ||||||
|   constructor () { |   constructor() { | ||||||
|     // Nothing here |     // Nothing here | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   addRegistry (registryArg: DockerRegistry) { |   addRegistry(registryArg: DockerRegistry) { | ||||||
|     this.objectMap.add(registryArg) |     this.objectMap.add(registryArg); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   getRegistryByUrl (registryUrlArg: string) { |   getRegistryByUrl(registryUrlArg: string) { | ||||||
|     return this.objectMap.find(registryArg => { |     return this.objectMap.find(registryArg => { | ||||||
|       return registryArg.registryUrl === registryUrlArg |       return registryArg.registryUrl === registryUrlArg; | ||||||
|     }) |     }); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   async loginAll () { |   async loginAll() { | ||||||
|     await this.objectMap.forEach(async registryArg => { |     await this.objectMap.forEach(async registryArg => { | ||||||
|       await registryArg.login() |       await registryArg.login(); | ||||||
|     }) |     }); | ||||||
|     plugins.beautylog.success('logged in successfully into all available DockerRegistries!') |     plugins.beautylog.success('logged in successfully into all available DockerRegistries!'); | ||||||
|   } |   } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -1,33 +1,32 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
| import * as paths from '../npmci.paths' | import * as paths from '../npmci.paths'; | ||||||
| import * as NpmciEnv from '../npmci.env' | import * as NpmciEnv from '../npmci.env'; | ||||||
| import * as NpmciConfig from '../npmci.config' | import * as NpmciConfig from '../npmci.config'; | ||||||
| import { bash } from '../npmci.bash' | import { bash } from '../npmci.bash'; | ||||||
|  |  | ||||||
| import { Dockerfile } from './mod.classes.dockerfile' | import { Dockerfile } from './mod.classes.dockerfile'; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * creates instance of class Dockerfile for all Dockerfiles in cwd |  * creates instance of class Dockerfile for all Dockerfiles in cwd | ||||||
|  * @returns Promise<Dockerfile[]> |  * @returns Promise<Dockerfile[]> | ||||||
|  */ |  */ | ||||||
| export let readDockerfiles = async (): Promise<Dockerfile[]> => { | export let readDockerfiles = async (): Promise<Dockerfile[]> => { | ||||||
|   let fileTree = await plugins.smartfile.fs.listFileTree(paths.cwd, 'Dockerfile*') |   let fileTree = await plugins.smartfile.fs.listFileTree(paths.cwd, 'Dockerfile*'); | ||||||
|  |  | ||||||
|   // create the Dockerfile array |   // create the Dockerfile array | ||||||
|   let readDockerfilesArray: Dockerfile[] = [] |   let readDockerfilesArray: Dockerfile[] = []; | ||||||
|   plugins.beautylog.info(`found ${fileTree.length} Dockerfiles:`) |   plugins.beautylog.info(`found ${fileTree.length} Dockerfiles:`); | ||||||
|   console.log(fileTree) |   console.log(fileTree); | ||||||
|   for (let dockerfilePath of fileTree) { |   for (let dockerfilePath of fileTree) { | ||||||
|     let myDockerfile = new Dockerfile({ |     let myDockerfile = new Dockerfile({ | ||||||
|       filePath: dockerfilePath, |       filePath: dockerfilePath, | ||||||
|       read: true |       read: true | ||||||
|     }) |     }); | ||||||
|     readDockerfilesArray.push(myDockerfile) |     readDockerfilesArray.push(myDockerfile); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   return readDockerfilesArray |   return readDockerfilesArray; | ||||||
|  | }; | ||||||
| } |  | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * sorts Dockerfiles into a dependency chain |  * sorts Dockerfiles into a dependency chain | ||||||
| @@ -35,62 +34,65 @@ export let readDockerfiles = async (): Promise<Dockerfile[]> => { | |||||||
|  * @returns Promise<Dockerfile[]> |  * @returns Promise<Dockerfile[]> | ||||||
|  */ |  */ | ||||||
| export let sortDockerfiles = (sortableArrayArg: Dockerfile[]): Promise<Dockerfile[]> => { | export let sortDockerfiles = (sortableArrayArg: Dockerfile[]): Promise<Dockerfile[]> => { | ||||||
|   let done = plugins.q.defer<Dockerfile[]>() |   let done = plugins.q.defer<Dockerfile[]>(); | ||||||
|   plugins.beautylog.info('sorting Dockerfiles:') |   plugins.beautylog.info('sorting Dockerfiles:'); | ||||||
|   let sortedArray: Dockerfile[] = [] |   let sortedArray: Dockerfile[] = []; | ||||||
|   let cleanTagsOriginal = cleanTagsArrayFunction(sortableArrayArg, sortedArray) |   let cleanTagsOriginal = cleanTagsArrayFunction(sortableArrayArg, sortedArray); | ||||||
|   let sorterFunctionCounter: number = 0 |   let sorterFunctionCounter: number = 0; | ||||||
|   let sorterFunction = function () { |   let sorterFunction = function() { | ||||||
|     sortableArrayArg.forEach((dockerfileArg) => { |     sortableArrayArg.forEach(dockerfileArg => { | ||||||
|       let cleanTags = cleanTagsArrayFunction(sortableArrayArg, sortedArray) |       let cleanTags = cleanTagsArrayFunction(sortableArrayArg, sortedArray); | ||||||
|       if (cleanTags.indexOf(dockerfileArg.baseImage) === -1 && sortedArray.indexOf(dockerfileArg) === -1) { |       if ( | ||||||
|         sortedArray.push(dockerfileArg) |         cleanTags.indexOf(dockerfileArg.baseImage) === -1 && | ||||||
|  |         sortedArray.indexOf(dockerfileArg) === -1 | ||||||
|  |       ) { | ||||||
|  |         sortedArray.push(dockerfileArg); | ||||||
|       } |       } | ||||||
|       if (cleanTagsOriginal.indexOf(dockerfileArg.baseImage) !== -1) { |       if (cleanTagsOriginal.indexOf(dockerfileArg.baseImage) !== -1) { | ||||||
|         dockerfileArg.localBaseImageDependent = true |         dockerfileArg.localBaseImageDependent = true; | ||||||
|       } |       } | ||||||
|     }) |     }); | ||||||
|     if (sortableArrayArg.length === sortedArray.length) { |     if (sortableArrayArg.length === sortedArray.length) { | ||||||
|       let counter = 1 |       let counter = 1; | ||||||
|       for (let dockerfile of sortedArray) { |       for (let dockerfile of sortedArray) { | ||||||
|         plugins.beautylog.log(`tag ${counter}: -> ${dockerfile.cleanTag}`) |         plugins.beautylog.log(`tag ${counter}: -> ${dockerfile.cleanTag}`); | ||||||
|         counter++ |         counter++; | ||||||
|       } |       } | ||||||
|       done.resolve(sortedArray) |       done.resolve(sortedArray); | ||||||
|     } else if (sorterFunctionCounter < 10) { |     } else if (sorterFunctionCounter < 10) { | ||||||
|       sorterFunctionCounter++ |       sorterFunctionCounter++; | ||||||
|       sorterFunction() |       sorterFunction(); | ||||||
|     } |     } | ||||||
|   } |   }; | ||||||
|   sorterFunction() |   sorterFunction(); | ||||||
|   return done.promise |   return done.promise; | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * maps local Dockerfiles dependencies to the correspoding Dockerfile class instances |  * maps local Dockerfiles dependencies to the correspoding Dockerfile class instances | ||||||
|  */ |  */ | ||||||
| export let mapDockerfiles = async (sortedArray: Dockerfile[]): Promise<Dockerfile[]> => { | export let mapDockerfiles = async (sortedArray: Dockerfile[]): Promise<Dockerfile[]> => { | ||||||
|   sortedArray.forEach((dockerfileArg) => { |   sortedArray.forEach(dockerfileArg => { | ||||||
|     if (dockerfileArg.localBaseImageDependent) { |     if (dockerfileArg.localBaseImageDependent) { | ||||||
|       sortedArray.forEach((dockfile2: Dockerfile) => { |       sortedArray.forEach((dockfile2: Dockerfile) => { | ||||||
|         if (dockfile2.cleanTag === dockerfileArg.baseImage) { |         if (dockfile2.cleanTag === dockerfileArg.baseImage) { | ||||||
|           dockerfileArg.localBaseDockerfile = dockfile2 |           dockerfileArg.localBaseDockerfile = dockfile2; | ||||||
|         } |         } | ||||||
|       }) |       }); | ||||||
|     } |     } | ||||||
|   }) |   }); | ||||||
|   return sortedArray |   return sortedArray; | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * builds the correspoding real docker image for each Dockerfile class instance |  * builds the correspoding real docker image for each Dockerfile class instance | ||||||
|  */ |  */ | ||||||
| export let buildDockerfiles = async (sortedArrayArg: Dockerfile[]) => { | export let buildDockerfiles = async (sortedArrayArg: Dockerfile[]) => { | ||||||
|   for (let dockerfileArg of sortedArrayArg) { |   for (let dockerfileArg of sortedArrayArg) { | ||||||
|     await dockerfileArg.build() |     await dockerfileArg.build(); | ||||||
|   } |   } | ||||||
|   return sortedArrayArg |   return sortedArrayArg; | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * tests all Dockerfiles in by calling class Dockerfile.test(); |  * tests all Dockerfiles in by calling class Dockerfile.test(); | ||||||
| @@ -98,80 +100,87 @@ export let buildDockerfiles = async (sortedArrayArg: Dockerfile[]) => { | |||||||
|  */ |  */ | ||||||
| export let testDockerfiles = async (sortedArrayArg: Dockerfile[]) => { | export let testDockerfiles = async (sortedArrayArg: Dockerfile[]) => { | ||||||
|   for (let dockerfileArg of sortedArrayArg) { |   for (let dockerfileArg of sortedArrayArg) { | ||||||
|     await dockerfileArg.test() |     await dockerfileArg.test(); | ||||||
|   } |   } | ||||||
|   return sortedArrayArg |   return sortedArrayArg; | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * returns a version for a docker file |  * returns a version for a docker file | ||||||
|  * @execution SYNC |  * @execution SYNC | ||||||
|  */ |  */ | ||||||
| export let dockerFileVersion = (dockerfileNameArg: string): string => { | export let dockerFileVersion = (dockerfileNameArg: string): string => { | ||||||
|   let versionString: string |   let versionString: string; | ||||||
|   let versionRegex = /Dockerfile_([a-zA-Z0-9\.]*)$/ |   let versionRegex = /Dockerfile_([a-zA-Z0-9\.]*)$/; | ||||||
|   let regexResultArray = versionRegex.exec(dockerfileNameArg) |   let regexResultArray = versionRegex.exec(dockerfileNameArg); | ||||||
|   if (regexResultArray && regexResultArray.length === 2) { |   if (regexResultArray && regexResultArray.length === 2) { | ||||||
|     versionString = regexResultArray[ 1 ] |     versionString = regexResultArray[1]; | ||||||
|   } else { |   } else { | ||||||
|     versionString = 'latest' |     versionString = 'latest'; | ||||||
|   } |   } | ||||||
|   return versionString |   return versionString; | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * returns the docker base image for a Dockerfile |  * returns the docker base image for a Dockerfile | ||||||
|  */ |  */ | ||||||
| export let dockerBaseImage = function (dockerfileContentArg: string) { | export let dockerBaseImage = function(dockerfileContentArg: string) { | ||||||
|   let baseImageRegex = /FROM\s([a-zA-z0-9\/\-\:]*)\n?/ |   let baseImageRegex = /FROM\s([a-zA-z0-9\/\-\:]*)\n?/; | ||||||
|   let regexResultArray = baseImageRegex.exec(dockerfileContentArg) |   let regexResultArray = baseImageRegex.exec(dockerfileContentArg); | ||||||
|   return regexResultArray[ 1 ] |   return regexResultArray[1]; | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * returns the docker tag |  * returns the docker tag | ||||||
|  */ |  */ | ||||||
| export let getDockerTagString = (registryArg: string, repoArg: string, versionArg: string, suffixArg?: string): string => { | export let getDockerTagString = ( | ||||||
|  |   registryArg: string, | ||||||
|  |   repoArg: string, | ||||||
|  |   versionArg: string, | ||||||
|  |   suffixArg?: string | ||||||
|  | ): string => { | ||||||
|   // determine wether the repo should be mapped accordingly to the registry |   // determine wether the repo should be mapped accordingly to the registry | ||||||
|   let mappedRepo = NpmciConfig.configObject.dockerRegistryRepoMap[registryArg] |   let mappedRepo = NpmciConfig.configObject.dockerRegistryRepoMap[registryArg]; | ||||||
|   let repo = (() => { |   let repo = (() => { | ||||||
|     if (mappedRepo) { |     if (mappedRepo) { | ||||||
|       return mappedRepo |       return mappedRepo; | ||||||
|     } else { |     } else { | ||||||
|       return repoArg |       return repoArg; | ||||||
|     } |     } | ||||||
|   })() |   })(); | ||||||
|  |  | ||||||
|   // determine wether the version contais a suffix |   // determine wether the version contais a suffix | ||||||
|   let version = versionArg |   let version = versionArg; | ||||||
|   if (suffixArg) { |   if (suffixArg) { | ||||||
|     version = versionArg + '_' + suffixArg |     version = versionArg + '_' + suffixArg; | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   let tagString = `${registryArg}/${repo}:${version}` |   let tagString = `${registryArg}/${repo}:${version}`; | ||||||
|   return tagString |   return tagString; | ||||||
| } | }; | ||||||
|  |  | ||||||
| export let getDockerBuildArgs = async (): Promise<string> => { | export let getDockerBuildArgs = async (): Promise<string> => { | ||||||
|   plugins.beautylog.info('checking for env vars to be supplied to the docker build') |   plugins.beautylog.info('checking for env vars to be supplied to the docker build'); | ||||||
|   let buildArgsString: string = '' |   let buildArgsString: string = ''; | ||||||
|   for (let key in NpmciConfig.configObject.dockerBuildargEnvMap) { |   for (let key in NpmciConfig.configObject.dockerBuildargEnvMap) { | ||||||
|     let targetValue = process.env[NpmciConfig.configObject.dockerBuildargEnvMap[key]] |     let targetValue = process.env[NpmciConfig.configObject.dockerBuildargEnvMap[key]]; | ||||||
|     buildArgsString = `${buildArgsString} --build-arg ${key}=${targetValue}` |     buildArgsString = `${buildArgsString} --build-arg ${key}=${targetValue}`; | ||||||
|   } |   } | ||||||
|   return buildArgsString |   return buildArgsString; | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * |  * | ||||||
|  */ |  */ | ||||||
| export let cleanTagsArrayFunction = function (dockerfileArrayArg: Dockerfile[], trackingArrayArg: Dockerfile[]): string[] { | export let cleanTagsArrayFunction = function( | ||||||
|   let cleanTagsArray: string[] = [] |   dockerfileArrayArg: Dockerfile[], | ||||||
|   dockerfileArrayArg.forEach(function (dockerfileArg) { |   trackingArrayArg: Dockerfile[] | ||||||
|  | ): string[] { | ||||||
|  |   let cleanTagsArray: string[] = []; | ||||||
|  |   dockerfileArrayArg.forEach(function(dockerfileArg) { | ||||||
|     if (trackingArrayArg.indexOf(dockerfileArg) === -1) { |     if (trackingArrayArg.indexOf(dockerfileArg) === -1) { | ||||||
|       cleanTagsArray.push(dockerfileArg.cleanTag) |       cleanTagsArray.push(dockerfileArg.cleanTag); | ||||||
|     } |     } | ||||||
|   }) |   }); | ||||||
|   return cleanTagsArray |   return cleanTagsArray; | ||||||
| } | }; | ||||||
|   | |||||||
| @@ -1,3 +1 @@ | |||||||
| export * from '../npmci.plugins' | export * from '../npmci.plugins'; | ||||||
|  |  | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,24 +1,45 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
|  | import { bash } from '../npmci.bash'; | ||||||
|  | import { repo } from '../npmci.env'; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * handle cli input |  * handle cli input | ||||||
|  * @param argvArg |  * @param argvArg | ||||||
|  */ |  */ | ||||||
| export let handleCli = async (argvArg) => { | export let handleCli = async argvArg => { | ||||||
|   if (argvArg._.length >= 2) { |   if (argvArg._.length >= 2) { | ||||||
|     let action: string = argvArg._[ 1 ] |     let action: string = argvArg._[1]; | ||||||
|     switch (action) { |     switch (action) { | ||||||
|       case 'mirror': |       case 'mirror': | ||||||
|         await mirror() |         await mirror(); | ||||||
|         break |         break; | ||||||
|       default: |       default: | ||||||
|         plugins.beautylog.error(`>>npmci git ...<< action >>${action}<< not supported`) |         plugins.beautylog.error(`>>npmci git ...<< action >>${action}<< not supported`); | ||||||
|     } |     } | ||||||
|   } else { |   } else { | ||||||
|     plugins.beautylog.log(`>>npmci git ...<< cli arguments invalid... Please read the documentation.`) |     plugins.beautylog.log( | ||||||
|  |       `>>npmci git ...<< cli arguments invalid... Please read the documentation.` | ||||||
|  |     ); | ||||||
|   } |   } | ||||||
| } | }; | ||||||
|  |  | ||||||
| export let mirror = async () => { | export let mirror = async () => { | ||||||
|  |   let githubToken = process.env.NPMCI_GIT_GITHUBTOKEN; | ||||||
| } |   let githubUser = process.env.NPMCI_GIT_GITHUBGROUP || repo.user; | ||||||
|  |   let githubRepo = process.env.NPMCI_GIT_GITHUB || repo.repo; | ||||||
|  |   if (githubToken) { | ||||||
|  |     plugins.beautylog.info('found github token.'); | ||||||
|  |     plugins.beautylog.log('attempting the mirror the repository to GitHub'); | ||||||
|  |     // add the mirror | ||||||
|  |     await bash( | ||||||
|  |       `git remote add mirror https://${githubToken}@github.com/${githubUser}/${githubRepo}.git` | ||||||
|  |     ); | ||||||
|  |     await bash(`git push mirror --all`); | ||||||
|  |     plugins.beautylog.ok('pushed all branches to mirror!'); | ||||||
|  |     await bash(`git push mirror --tags`); | ||||||
|  |     plugins.beautylog.ok('pushed all tags to mirror!'); | ||||||
|  |   } else { | ||||||
|  |     plugins.beautylog.error(`cannot find NPMCI_GIT_GITHUBTOKEN env var!`); | ||||||
|  |     process.exit(1); | ||||||
|  |   } | ||||||
|  | }; | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| export * from '../npmci.plugins' | export * from '../npmci.plugins'; | ||||||
|   | |||||||
| @@ -1,77 +1,72 @@ | |||||||
| import * as plugins from '../npmci.plugins' | import * as plugins from '../npmci.plugins'; | ||||||
| import * as npmciConfig from '../npmci.config' | import * as npmciConfig from '../npmci.config'; | ||||||
| import { | import { bash, bashNoError, nvmAvailable, yarnAvailable } from '../npmci.bash'; | ||||||
|   bash, |  | ||||||
|   bashNoError, |  | ||||||
|   nvmAvailable, |  | ||||||
|   yarnAvailable |  | ||||||
| } from '../npmci.bash' |  | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * handle cli input |  * handle cli input | ||||||
|  * @param argvArg |  * @param argvArg | ||||||
|  */ |  */ | ||||||
| export let handleCli = async (argvArg) => { | export let handleCli = async argvArg => { | ||||||
|   if (argvArg._.length >= 3) { |   if (argvArg._.length >= 3) { | ||||||
|     let action: string = argvArg._[1] |     let action: string = argvArg._[1]; | ||||||
|     switch (action) { |     switch (action) { | ||||||
|       case 'install': |       case 'install': | ||||||
|         await install(argvArg._[2]) |         await install(argvArg._[2]); | ||||||
|         break |         break; | ||||||
|       default: |       default: | ||||||
|         plugins.beautylog.error(`>>npmci node ...<< action >>${action}<< not supported`) |         plugins.beautylog.error(`>>npmci node ...<< action >>${action}<< not supported`); | ||||||
|         process.exit(1) |         process.exit(1); | ||||||
|     } |     } | ||||||
|   } else { |   } else { | ||||||
|     plugins.beautylog.error(`>>npmci node ...<< cli arguments invalid... Please read the documentation.`) |     plugins.beautylog.error( | ||||||
|     process.exit(1) |       `>>npmci node ...<< cli arguments invalid... Please read the documentation.` | ||||||
|  |     ); | ||||||
|  |     process.exit(1); | ||||||
|   } |   } | ||||||
|  | }; | ||||||
| } |  | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * Install a specific version of node |  * Install a specific version of node | ||||||
|  * @param versionArg |  * @param versionArg | ||||||
|  */ |  */ | ||||||
| export let install = async (versionArg) => { | export let install = async versionArg => { | ||||||
|   plugins.beautylog.log(`now installing node version ${versionArg}`) |   plugins.beautylog.log(`now installing node version ${versionArg}`); | ||||||
|   let version: string |   let version: string; | ||||||
|   if (versionArg === 'stable') { |   if (versionArg === 'stable') { | ||||||
|     version = 'stable' |     version = '9'; | ||||||
|   } else if (versionArg === 'lts') { |   } else if (versionArg === 'lts') { | ||||||
|     version = '6' |     version = '8'; | ||||||
|   } else if (versionArg === 'legacy') { |   } else if (versionArg === 'legacy') { | ||||||
|     version = '6' |     version = '8'; | ||||||
|   } else { |   } else { | ||||||
|     version = versionArg |     version = versionArg; | ||||||
|   } |   } | ||||||
|   if (await nvmAvailable.promise) { |   if (await nvmAvailable.promise) { | ||||||
|     await bash(`nvm install ${version} && nvm alias default ${version}`) |     await bash(`nvm install ${version} && nvm alias default ${version}`); | ||||||
|     plugins.beautylog.success(`Node version ${version} successfully installed!`) |     plugins.beautylog.success(`Node version ${version} successfully installed!`); | ||||||
|   } else { |   } else { | ||||||
|     plugins.beautylog.warn('Nvm not in path so staying at installed node version!') |     plugins.beautylog.warn('Nvm not in path so staying at installed node version!'); | ||||||
|   } |   } | ||||||
|   await bash('node -v') |   await bash('node -v'); | ||||||
|   await bash('npm -v') |   await bash('npm -v'); | ||||||
|   // lets look for further config |   // lets look for further config | ||||||
|   await npmciConfig.getConfig() |   await npmciConfig.getConfig().then(async configArg => { | ||||||
|     .then(async configArg => { |     plugins.beautylog.log('Now checking for needed global npm tools...'); | ||||||
|       plugins.beautylog.log('Now checking for needed global npm tools...') |     for (let npmTool of configArg.npmGlobalTools) { | ||||||
|       for (let npmTool of configArg.npmGlobalTools) { |       plugins.beautylog.info(`Checking for global "${npmTool}"`); | ||||||
|         plugins.beautylog.info(`Checking for global "${npmTool}"`) |       let whichOutput: string = await bashNoError(`which ${npmTool}`); | ||||||
|         let whichOutput: string = await bashNoError(`which ${npmTool}`) |       let toolAvailable: boolean = !(/not\sfound/.test(whichOutput) || whichOutput === ''); | ||||||
|         let toolAvailable: boolean = !((/not\sfound/.test(whichOutput)) || whichOutput === '') |       if (toolAvailable) { | ||||||
|         if (toolAvailable) { |         plugins.beautylog.log(`Tool ${npmTool} is available`); | ||||||
|           plugins.beautylog.log(`Tool ${npmTool} is available`) |       } else { | ||||||
|  |         plugins.beautylog.info(`globally installing ${npmTool} from npm`); | ||||||
|  |         if (await yarnAvailable.promise) { | ||||||
|  |           await bash(`yarn global add ${npmTool}`); | ||||||
|         } else { |         } else { | ||||||
|           plugins.beautylog.info(`globally installing ${npmTool} from npm`) |           await bash(`npm install ${npmTool} -q -g`); | ||||||
|           if (await yarnAvailable.promise) { |  | ||||||
|             await bash(`yarn global add ${npmTool}`) |  | ||||||
|           } else { |  | ||||||
|             await bash(`npm install ${npmTool} -q -g`) |  | ||||||
|           } |  | ||||||
|         } |         } | ||||||
|       } |       } | ||||||
|       plugins.beautylog.success('all global npm tools specified in npmextra.json are now available!') |     } | ||||||
|     }) |     plugins.beautylog.success('all global npm tools specified in npmextra.json are now available!'); | ||||||
| } |   }); | ||||||
|  | }; | ||||||
|   | |||||||
| @@ -1,73 +1,89 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
| import * as configModule from '../npmci.config' | import * as configModule from '../npmci.config'; | ||||||
| import { | import { bash, bashNoError, nvmAvailable, yarnAvailable } from '../npmci.bash'; | ||||||
|   bash, |  | ||||||
|   bashNoError, |  | ||||||
|   nvmAvailable, |  | ||||||
|   yarnAvailable |  | ||||||
| } from '../npmci.bash' |  | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * handle cli input |  * handle cli input | ||||||
|  * @param argvArg |  * @param argvArg | ||||||
|  */ |  */ | ||||||
| export let handleCli = async (argvArg) => { | export let handleCli = async argvArg => { | ||||||
|   if (argvArg._.length >= 2) { |   if (argvArg._.length >= 2) { | ||||||
|     let action: string = argvArg._[1] |     let action: string = argvArg._[1]; | ||||||
|     switch (action) { |     switch (action) { | ||||||
|       case 'install': |       case 'install': | ||||||
|         await install() |         await install(); | ||||||
|         break |         break; | ||||||
|       case 'prepare': |       case 'prepare': | ||||||
|         await prepare() |         await prepare(); | ||||||
|         break |         break; | ||||||
|       case 'test': |       case 'test': | ||||||
|         await test() |         await test(); | ||||||
|         break |         break; | ||||||
|       case 'publish': |       case 'publish': | ||||||
|         await publish() |         await publish(); | ||||||
|         break |         break; | ||||||
|       default: |       default: | ||||||
|         plugins.beautylog.error(`>>npmci npm ...<< action >>${action}<< not supported`) |         plugins.beautylog.error(`>>npmci npm ...<< action >>${action}<< not supported`); | ||||||
|         process.exit(1) |         process.exit(1); | ||||||
|     } |     } | ||||||
|   } else { |   } else { | ||||||
|     plugins.beautylog.log(`>>npmci npm ...<< cli arguments invalid... Please read the documentation.`) |     plugins.beautylog.log( | ||||||
|     process.exit(1) |       `>>npmci npm ...<< cli arguments invalid... Please read the documentation.` | ||||||
|  |     ); | ||||||
|  |     process.exit(1); | ||||||
|   } |   } | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * authenticates npm with token from env var |  * authenticates npm with token from env var | ||||||
|  */ |  */ | ||||||
| let prepare = async () => { | let prepare = async () => { | ||||||
|   let npmrcPrefix: string = '//registry.npmjs.org/:_authToken=' |   let npmrcPrefix: string = '//registry.npmjs.org/:_authToken='; | ||||||
|   let npmToken: string = process.env.NPMCI_TOKEN_NPM |   let npmToken: string = process.env.NPMCI_TOKEN_NPM; | ||||||
|   let npmrcFileString: string = npmrcPrefix + npmToken |   let npmrcFileString: string = npmrcPrefix + npmToken; | ||||||
|   if (npmToken) { |   if (npmToken) { | ||||||
|     plugins.beautylog.info('found access token') |     plugins.beautylog.info('found access token'); | ||||||
|   } else { |   } else { | ||||||
|     plugins.beautylog.error('no access token found! Exiting!') |     plugins.beautylog.error('no access token found! Exiting!'); | ||||||
|     process.exit(1) |     process.exit(1); | ||||||
|   } |   } | ||||||
|   plugins.smartfile.memory.toFsSync(npmrcFileString, '/root/.npmrc') |   plugins.smartfile.memory.toFsSync(npmrcFileString, '/root/.npmrc'); | ||||||
|   return |   return; | ||||||
| } | }; | ||||||
|  |  | ||||||
|  | /** | ||||||
|  |  * publish a package to npm | ||||||
|  |  */ | ||||||
| let publish = async () => { | let publish = async () => { | ||||||
|   await bash('npm publish') |   let npmAccessCliString = ``; | ||||||
| } |   const config = await configModule.getConfig(); | ||||||
|  |  | ||||||
|  |   // -> configure package access level | ||||||
|  |   if ( | ||||||
|  |     config.npmAccessLevel && | ||||||
|  |     (config.npmAccessLevel === 'public' || config.npmAccessLevel === 'private') | ||||||
|  |   ) { | ||||||
|  |     npmAccessCliString = `--access=${config.npmAccessLevel}`; | ||||||
|  |   } | ||||||
|  |  | ||||||
|  |   // -> build it | ||||||
|  |   await bash(`yarn install`); | ||||||
|  |   await bash(`yarn run build`); | ||||||
|  |  | ||||||
|  |   // -> publish it | ||||||
|  |   await bash(`npm publish ${npmAccessCliString}`); | ||||||
|  | }; | ||||||
|  |  | ||||||
| let install = async (): Promise<void> => { | let install = async (): Promise<void> => { | ||||||
|   plugins.beautylog.info('now installing dependencies:') |   plugins.beautylog.info('now installing dependencies:'); | ||||||
|   if (await yarnAvailable.promise) { |   if (await yarnAvailable.promise) { | ||||||
|     await bash('yarn install') |     await bash('yarn install'); | ||||||
|   } else { |   } else { | ||||||
|     await bash('npm install') |     await bash('npm install'); | ||||||
|   } |   } | ||||||
| } | }; | ||||||
|  |  | ||||||
| export let test = async (): Promise<void> => { | export let test = async (): Promise<void> => { | ||||||
|   plugins.beautylog.info('now starting tests:') |   plugins.beautylog.info('now starting tests:'); | ||||||
|   await bash('yarn test') |   await bash('yarn test'); | ||||||
| } | }; | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| export * from '../npmci.plugins' | export * from '../npmci.plugins'; | ||||||
|   | |||||||
| @@ -1,63 +1,63 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
| let sshInstance: plugins.smartssh.SshInstance | let sshInstance: plugins.smartssh.SshInstance; | ||||||
|  |  | ||||||
| export let handleCli = async (argvArg) => { | export let handleCli = async argvArg => { | ||||||
|   if (argvArg._.length >= 2) { |   if (argvArg._.length >= 2) { | ||||||
|     let action: string = argvArg._[1] |     let action: string = argvArg._[1]; | ||||||
|     switch (action) { |     switch (action) { | ||||||
|       case 'prepare': |       case 'prepare': | ||||||
|         await prepare() |         await prepare(); | ||||||
|         break |         break; | ||||||
|       default: |       default: | ||||||
|         plugins.beautylog.error(`action >>${action}<< not supported`) |         plugins.beautylog.error(`action >>${action}<< not supported`); | ||||||
|         process.exit(1) |         process.exit(1); | ||||||
|     } |     } | ||||||
|   } else { |   } else { | ||||||
|     plugins.beautylog.error(`>>npmci ssh ...<< please specify an action!`) |     plugins.beautylog.error(`>>npmci ssh ...<< please specify an action!`); | ||||||
|     process.exit(1) |     process.exit(1); | ||||||
|   } |   } | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * checks if not undefined |  * checks if not undefined | ||||||
|  */ |  */ | ||||||
| let notUndefined = (stringArg: string) => { | let notUndefined = (stringArg: string) => { | ||||||
|   return (stringArg && stringArg !== 'undefined' && stringArg !== '##') |   return stringArg && stringArg !== 'undefined' && stringArg !== '##'; | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * checks for ENV vars in form of NPMCI_SSHKEY_* and deploys any found ones |  * checks for ENV vars in form of NPMCI_SSHKEY_* and deploys any found ones | ||||||
|  */ |  */ | ||||||
| export let prepare = async () => { | export let prepare = async () => { | ||||||
|   sshInstance = new plugins.smartssh.SshInstance() // init ssh instance |   sshInstance = new plugins.smartssh.SshInstance(); // init ssh instance | ||||||
|   plugins.smartparam.forEachMinimatch(process.env, 'NPMCI_SSHKEY_*', evaluateSshEnv) |   plugins.smartparam.forEachMinimatch(process.env, 'NPMCI_SSHKEY_*', evaluateSshEnv); | ||||||
|   if (!process.env.NPMTS_TEST) { |   if (!process.env.NPMTS_TEST) { | ||||||
|     sshInstance.writeToDisk() |     sshInstance.writeToDisk(); | ||||||
|   } else { |   } else { | ||||||
|     plugins.beautylog.log('In test mode, so not storing SSH keys to disk!') |     plugins.beautylog.log('In test mode, so not storing SSH keys to disk!'); | ||||||
|   } |   } | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * gets called for each found SSH ENV Var and deploys it |  * gets called for each found SSH ENV Var and deploys it | ||||||
|  */ |  */ | ||||||
| let evaluateSshEnv = async (sshkeyEnvVarArg: string) => { | let evaluateSshEnv = async (sshkeyEnvVarArg: string) => { | ||||||
|   let sshEnvArray = sshkeyEnvVarArg.split('|') |   let sshEnvArray = sshkeyEnvVarArg.split('|'); | ||||||
|   let sshKey = new plugins.smartssh.SshKey() |   let sshKey = new plugins.smartssh.SshKey(); | ||||||
|   plugins.beautylog.info('Found SSH identity for ' + sshEnvArray[1]) |   plugins.beautylog.info('Found SSH identity for ' + sshEnvArray[1]); | ||||||
|   if (notUndefined(sshEnvArray[0])) { |   if (notUndefined(sshEnvArray[0])) { | ||||||
|     plugins.beautylog.log('---> host defined!') |     plugins.beautylog.log('---> host defined!'); | ||||||
|     sshKey.host = sshEnvArray[0] |     sshKey.host = sshEnvArray[0]; | ||||||
|   } |   } | ||||||
|   if (notUndefined(sshEnvArray[1])) { |   if (notUndefined(sshEnvArray[1])) { | ||||||
|     plugins.beautylog.log('---> privKey defined!') |     plugins.beautylog.log('---> privKey defined!'); | ||||||
|     sshKey.privKeyBase64 = sshEnvArray[1] |     sshKey.privKeyBase64 = sshEnvArray[1]; | ||||||
|   } |   } | ||||||
|   if (notUndefined(sshEnvArray[2])) { |   if (notUndefined(sshEnvArray[2])) { | ||||||
|     plugins.beautylog.log('---> pubKey defined!') |     plugins.beautylog.log('---> pubKey defined!'); | ||||||
|     sshKey.pubKeyBase64 = sshEnvArray[2] |     sshKey.pubKeyBase64 = sshEnvArray[2]; | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   sshInstance.addKey(sshKey) |   sshInstance.addKey(sshKey); | ||||||
|   return |   return; | ||||||
| } | }; | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| export * from '../npmci.plugins' | export * from '../npmci.plugins'; | ||||||
|   | |||||||
| @@ -1,29 +1,28 @@ | |||||||
| import * as plugins from './mod.plugins' | import * as plugins from './mod.plugins'; | ||||||
| import { bash } from '../npmci.bash' | import { bash } from '../npmci.bash'; | ||||||
|  |  | ||||||
| let triggerValueRegex = /^([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|?([a-zA-Z0-9\.\-\/]*)/ | let triggerValueRegex = /^([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|?([a-zA-Z0-9\.\-\/]*)/; | ||||||
|  |  | ||||||
| export let trigger = async () => { | export let trigger = async () => { | ||||||
|   plugins.beautylog.info('now running triggers') |   plugins.beautylog.info('now running triggers'); | ||||||
|   plugins.smartparam.forEachMinimatch(process.env, 'NPMCI_TRIGGER_*', evaluateTrigger) |   plugins.smartparam.forEachMinimatch(process.env, 'NPMCI_TRIGGER_*', evaluateTrigger); | ||||||
| } | }; | ||||||
|  |  | ||||||
| let evaluateTrigger = async (triggerEnvVarArg) => { | let evaluateTrigger = async triggerEnvVarArg => { | ||||||
|   let triggerRegexResultArray = triggerValueRegex.exec(triggerEnvVarArg) |   let triggerRegexResultArray = triggerValueRegex.exec(triggerEnvVarArg); | ||||||
|   let regexDomain = triggerRegexResultArray[1] |   let regexDomain = triggerRegexResultArray[1]; | ||||||
|   let regexProjectId = triggerRegexResultArray[2] |   let regexProjectId = triggerRegexResultArray[2]; | ||||||
|   let regexProjectTriggerToken = triggerRegexResultArray[3] |   let regexProjectTriggerToken = triggerRegexResultArray[3]; | ||||||
|   let regexRefName = triggerRegexResultArray[4] |   let regexRefName = triggerRegexResultArray[4]; | ||||||
|   let regexTriggerName |   let regexTriggerName; | ||||||
|   if (triggerRegexResultArray.length === 6) { |   if (triggerRegexResultArray.length === 6) { | ||||||
|     regexTriggerName = triggerRegexResultArray[5] |     regexTriggerName = triggerRegexResultArray[5]; | ||||||
|   } else { |   } else { | ||||||
|     regexTriggerName = 'Unnamed Trigger' |     regexTriggerName = 'Unnamed Trigger'; | ||||||
|   } |   } | ||||||
|   plugins.beautylog.info('Found Trigger!') |   plugins.beautylog.info('Found Trigger!'); | ||||||
|   plugins.beautylog.log('triggering build for ref ' + regexRefName + ' of ' + regexTriggerName) |   plugins.beautylog.log('triggering build for ref ' + regexRefName + ' of ' + regexTriggerName); | ||||||
|   plugins.request.post( |   plugins.request.post('https://gitlab.com/api/v3/projects/' + regexProjectId + '/trigger/builds', { | ||||||
|     'https://gitlab.com/api/v3/projects/' + regexProjectId + '/trigger/builds', |     form: { token: regexProjectTriggerToken, ref: regexRefName } | ||||||
|     { form: { token: regexProjectTriggerToken, ref: regexRefName } |   }); | ||||||
|   }) | }; | ||||||
| } |  | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| export * from '../npmci.plugins' | export * from '../npmci.plugins'; | ||||||
|   | |||||||
| @@ -1,20 +1,20 @@ | |||||||
| import * as plugins from './npmci.plugins' | import * as plugins from './npmci.plugins'; | ||||||
| import * as paths from './npmci.paths' | import * as paths from './npmci.paths'; | ||||||
|  |  | ||||||
| import * as smartq from 'smartq' | import * as smartq from 'smartq'; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * wether nvm is available or not |  * wether nvm is available or not | ||||||
|  */ |  */ | ||||||
| export let nvmAvailable = smartq.defer<boolean>() | export let nvmAvailable = smartq.defer<boolean>(); | ||||||
| export let yarnAvailable = smartq.defer<boolean>() | export let yarnAvailable = smartq.defer<boolean>(); | ||||||
| /** | /** | ||||||
|  * the smartshell instance for npmci |  * the smartshell instance for npmci | ||||||
|  */ |  */ | ||||||
| let npmciSmartshell = new plugins.smartshell.Smartshell({ | let npmciSmartshell = new plugins.smartshell.Smartshell({ | ||||||
|   executor: 'bash', |   executor: 'bash', | ||||||
|   sourceFilePaths: [] |   sourceFilePaths: [] | ||||||
| }) | }); | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * check for tools. |  * check for tools. | ||||||
| @@ -25,31 +25,35 @@ let checkToolsAvailable = async () => { | |||||||
|     if ( |     if ( | ||||||
|       (await plugins.smartshell.execSilent(`bash -c "source /usr/local/nvm/nvm.sh"`)).exitCode === 0 |       (await plugins.smartshell.execSilent(`bash -c "source /usr/local/nvm/nvm.sh"`)).exitCode === 0 | ||||||
|     ) { |     ) { | ||||||
|       npmciSmartshell.addSourceFiles([ `/usr/local/nvm/nvm.sh` ]) |       npmciSmartshell.addSourceFiles([`/usr/local/nvm/nvm.sh`]); | ||||||
|       nvmAvailable.resolve(true) |       nvmAvailable.resolve(true); | ||||||
|     } else if ( |     } else if ( | ||||||
|       (await plugins.smartshell.execSilent(`bash -c "source ~/.nvm/nvm.sh"`)).exitCode === 0 |       (await plugins.smartshell.execSilent(`bash -c "source ~/.nvm/nvm.sh"`)).exitCode === 0 | ||||||
|     ) { |     ) { | ||||||
|       npmciSmartshell.addSourceFiles([ `~/.nvm/nvm.sh` ]) |       npmciSmartshell.addSourceFiles([`~/.nvm/nvm.sh`]); | ||||||
|       nvmAvailable.resolve(true) |       nvmAvailable.resolve(true); | ||||||
|     } else { |     } else { | ||||||
|       nvmAvailable.resolve(false) |       nvmAvailable.resolve(false); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     // check for yarn |     // check for yarn | ||||||
|     await plugins.smartshell.which('yarn').then( |     await plugins.smartshell.which('yarn').then( | ||||||
|       async () => { |       async () => { | ||||||
|         await plugins.smartshell.exec(`yarn config set cache-folder ${plugins.path.join(paths.cwd, '.yarn')}`) |         await plugins.smartshell.exec( | ||||||
|         yarnAvailable.resolve(true) |           `yarn config set cache-folder ${plugins.path.join(paths.cwd, '.yarn')}` | ||||||
|  |         ); | ||||||
|  |         yarnAvailable.resolve(true); | ||||||
|       }, |       }, | ||||||
|       () => { yarnAvailable.resolve(false) } |       () => { | ||||||
|     ) |         yarnAvailable.resolve(false); | ||||||
|  |       } | ||||||
|  |     ); | ||||||
|   } else { |   } else { | ||||||
|     nvmAvailable.resolve(true) |     nvmAvailable.resolve(true); | ||||||
|     yarnAvailable.resolve(true) |     yarnAvailable.resolve(true); | ||||||
|   } |   } | ||||||
| } | }; | ||||||
| checkToolsAvailable() | checkToolsAvailable(); | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * bash() allows using bash with nvm in path |  * bash() allows using bash with nvm in path | ||||||
| @@ -57,49 +61,54 @@ checkToolsAvailable() | |||||||
|  * @param retryArg - The retryArg: 0 to any positive number will retry, -1 will always succeed, -2 will return undefined |  * @param retryArg - The retryArg: 0 to any positive number will retry, -1 will always succeed, -2 will return undefined | ||||||
|  */ |  */ | ||||||
| export let bash = async (commandArg: string, retryArg: number = 2): Promise<string> => { | export let bash = async (commandArg: string, retryArg: number = 2): Promise<string> => { | ||||||
|   await nvmAvailable.promise // make sure nvm check has run |   await nvmAvailable.promise; // make sure nvm check has run | ||||||
|   let execResult: plugins.smartshell.IExecResult |   let execResult: plugins.smartshell.IExecResult; | ||||||
|  |  | ||||||
|   // determine if we fail |   // determine if we fail | ||||||
|   let failOnError: boolean = true |   let failOnError: boolean = true; | ||||||
|   if (retryArg === -1) { |   if (retryArg === -1) { | ||||||
|     failOnError = false |     failOnError = false; | ||||||
|     retryArg = 0 |     retryArg = 0; | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   if (!process.env.NPMTS_TEST) { // NPMTS_TEST is used during testing |   if (!process.env.NPMTS_TEST) { | ||||||
|  |     // NPMTS_TEST is used during testing | ||||||
|     for (let i = 0; i <= retryArg; i++) { |     for (let i = 0; i <= retryArg; i++) { | ||||||
|       if (process.env.DEBUG_NPMCI === 'true') { |       if (process.env.DEBUG_NPMCI === 'true') { | ||||||
|         console.log(commandArg) |         console.log(commandArg); | ||||||
|       } |       } | ||||||
|       execResult = await npmciSmartshell.exec(commandArg) |       execResult = await npmciSmartshell.exec(commandArg); | ||||||
|  |  | ||||||
|       // determine how bash reacts to error and success |       // determine how bash reacts to error and success | ||||||
|       if (execResult.exitCode !== 0 && i === retryArg) { // something went wrong and retries are exhausted |       if (execResult.exitCode !== 0 && i === retryArg) { | ||||||
|  |         // something went wrong and retries are exhausted | ||||||
|         if (failOnError) { |         if (failOnError) { | ||||||
|           plugins.beautylog.error('something went wrong and retries are exhausted') |           plugins.beautylog.error('something went wrong and retries are exhausted'); | ||||||
|           process.exit(1) |           process.exit(1); | ||||||
|         } |         } | ||||||
|       } else if (execResult.exitCode === 0) { // everything went fine, or no error wanted |       } else if (execResult.exitCode === 0) { | ||||||
|         i = retryArg + 1 // retry +1 breaks for loop, if everything works out ok retrials are not wanted |         // everything went fine, or no error wanted | ||||||
|  |         i = retryArg + 1; // retry +1 breaks for loop, if everything works out ok retrials are not wanted | ||||||
|       } else { |       } else { | ||||||
|         plugins.beautylog.warn('Something went wrong! Exit Code: ' + execResult.exitCode.toString()) |         plugins.beautylog.warn( | ||||||
|         plugins.beautylog.info('Retry ' + (i + 1).toString() + ' of ' + retryArg.toString()) |           'Something went wrong! Exit Code: ' + execResult.exitCode.toString() | ||||||
|  |         ); | ||||||
|  |         plugins.beautylog.info('Retry ' + (i + 1).toString() + ' of ' + retryArg.toString()); | ||||||
|       } |       } | ||||||
|     } |     } | ||||||
|   } else { |   } else { | ||||||
|     plugins.beautylog.log('ShellExec would be: ' + commandArg) |     plugins.beautylog.log('ShellExec would be: ' + commandArg); | ||||||
|     execResult = { |     execResult = { | ||||||
|       exitCode: 0, |       exitCode: 0, | ||||||
|       stdout: 'testOutput' |       stdout: 'testOutput' | ||||||
|     } |     }; | ||||||
|   } |   } | ||||||
|   return execResult.stdout |   return execResult.stdout; | ||||||
| } | }; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * bashNoError allows executing stuff without throwing an error |  * bashNoError allows executing stuff without throwing an error | ||||||
|  */ |  */ | ||||||
| export let bashNoError = async (commandArg: string): Promise<string> => { | export let bashNoError = async (commandArg: string): Promise<string> => { | ||||||
|   return await bash(commandArg, -1) |   return await bash(commandArg, -1); | ||||||
| } | }; | ||||||
|   | |||||||
							
								
								
									
										156
									
								
								ts/npmci.cli.ts
									
									
									
									
									
								
							
							
						
						
									
										156
									
								
								ts/npmci.cli.ts
									
									
									
									
									
								
							| @@ -1,90 +1,122 @@ | |||||||
| import * as plugins from './npmci.plugins' | import * as plugins from './npmci.plugins'; | ||||||
| import * as paths from './npmci.paths' | import * as paths from './npmci.paths'; | ||||||
| let npmciInfo = new plugins.projectinfo.ProjectinfoNpm(paths.NpmciPackageRoot) | import * as npmciMonitor from './npmci.monitor'; | ||||||
| plugins.beautylog.log('npmci version: ' + npmciInfo.version) | npmciMonitor.run(); | ||||||
|  |  | ||||||
| import * as NpmciEnv from './npmci.env' | // Get Info about npmci itself | ||||||
|  | let npmciInfo = new plugins.projectinfo.ProjectinfoNpm(paths.NpmciPackageRoot); | ||||||
|  | plugins.beautylog.log('npmci version: ' + npmciInfo.version); | ||||||
|  |  | ||||||
| import * as npmciMods from './npmci.mods' | import * as NpmciEnv from './npmci.env'; | ||||||
|  |  | ||||||
| let smartcli = new plugins.smartcli.Smartcli() | import * as npmciMods from './npmci.mods'; | ||||||
| smartcli.addVersion(npmciInfo.version) |  | ||||||
|  | let smartcli = new plugins.smartcli.Smartcli(); | ||||||
|  | smartcli.addVersion(npmciInfo.version); | ||||||
|  |  | ||||||
| // clean | // clean | ||||||
| smartcli.addCommand('clean') | smartcli | ||||||
|   .then(async (argv) => { |   .addCommand('clean') | ||||||
|     let modClean = await npmciMods.modClean.load() |   .then(async argv => { | ||||||
|     await modClean.clean() |     let modClean = await npmciMods.modClean.load(); | ||||||
|   }).catch(err => { |     await modClean.clean(); | ||||||
|     console.log(err) |  | ||||||
|     process.exit(1) |  | ||||||
|   }) |   }) | ||||||
|  |   .catch(err => { | ||||||
|  |     console.log(err); | ||||||
|  |     process.exit(1); | ||||||
|  |   }); | ||||||
|  |  | ||||||
| // cloudflare | // cloudflare | ||||||
| smartcli.addCommand('cloudflare') | smartcli | ||||||
| .then(async (argvArg) => { |   .addCommand('cloudflare') | ||||||
|   let modPurge = await npmciMods.modCloudflare.load() |   .then(async argvArg => { | ||||||
|   await modPurge.handleCli(argvArg) |     let modPurge = await npmciMods.modCloudflare.load(); | ||||||
| }).catch(err => { |     await modPurge.handleCli(argvArg); | ||||||
|   console.log(err) |   }) | ||||||
| }) |   .catch(err => { | ||||||
|  |     console.log(err); | ||||||
|  |   }); | ||||||
|  |  | ||||||
| // command | // command | ||||||
| smartcli.addCommand('command') | smartcli | ||||||
|   .then(async (argv) => { |   .addCommand('command') | ||||||
|     let modCommand = await npmciMods.modCommand.load() |   .then(async argv => { | ||||||
|     await modCommand.command() |     let modCommand = await npmciMods.modCommand.load(); | ||||||
|   }).catch(err => { |     await modCommand.command(); | ||||||
|     console.log(err) |  | ||||||
|     process.exit(1) |  | ||||||
|   }) |   }) | ||||||
|  |   .catch(err => { | ||||||
|  |     console.log(err); | ||||||
|  |     process.exit(1); | ||||||
|  |   }); | ||||||
|  |  | ||||||
|  | // command | ||||||
|  | smartcli | ||||||
|  |   .addCommand('git') | ||||||
|  |   .then(async argvArg => { | ||||||
|  |     let modGit = await npmciMods.modGit.load(); | ||||||
|  |     await modGit.handleCli(argvArg); | ||||||
|  |   }) | ||||||
|  |   .catch(err => { | ||||||
|  |     console.log(err); | ||||||
|  |     process.exit(1); | ||||||
|  |   }); | ||||||
|  |  | ||||||
| // build | // build | ||||||
| smartcli.addCommand('docker') | smartcli | ||||||
|  |   .addCommand('docker') | ||||||
|   .then(async argvArg => { |   .then(async argvArg => { | ||||||
|     let modDocker = await npmciMods.modDocker.load() |     let modDocker = await npmciMods.modDocker.load(); | ||||||
|     await modDocker.handleCli(argvArg) |     await modDocker.handleCli(argvArg); | ||||||
|   }).catch(err => { |  | ||||||
|     console.log(err) |  | ||||||
|     process.exit(1) |  | ||||||
|   }) |   }) | ||||||
|  |   .catch(err => { | ||||||
|  |     console.log(err); | ||||||
|  |     process.exit(1); | ||||||
|  |   }); | ||||||
|  |  | ||||||
| // node | // node | ||||||
| smartcli.addCommand('node') | smartcli | ||||||
|   .then(async (argvArg) => { |   .addCommand('node') | ||||||
|     let modNode = await npmciMods.modNode.load() |   .then(async argvArg => { | ||||||
|     await modNode.handleCli(argvArg) |     let modNode = await npmciMods.modNode.load(); | ||||||
|   }).catch(err => { |     await modNode.handleCli(argvArg); | ||||||
|     console.log(err) |  | ||||||
|   }) |   }) | ||||||
|  |   .catch(err => { | ||||||
|  |     console.log(err); | ||||||
|  |   }); | ||||||
|  |  | ||||||
| // npm | // npm | ||||||
| smartcli.addCommand('npm') | smartcli | ||||||
|   .then(async (argvArg) => { |   .addCommand('npm') | ||||||
|     let modNpm = await npmciMods.modNpm.load() |   .then(async argvArg => { | ||||||
|     await modNpm.handleCli(argvArg) |     let modNpm = await npmciMods.modNpm.load(); | ||||||
|   }).catch(err => { |     await modNpm.handleCli(argvArg); | ||||||
|     console.log(err) |  | ||||||
|   }) |   }) | ||||||
|  |   .catch(err => { | ||||||
|  |     console.log(err); | ||||||
|  |   }); | ||||||
|  |  | ||||||
| // trigger | // trigger | ||||||
| smartcli.addCommand('ssh') | smartcli | ||||||
|   .then(async (argvArg) => { |   .addCommand('ssh') | ||||||
|     let modSsh = await npmciMods.modSsh.load() |   .then(async argvArg => { | ||||||
|     await modSsh.handleCli(argvArg) |     let modSsh = await npmciMods.modSsh.load(); | ||||||
|   }).catch(err => { |     await modSsh.handleCli(argvArg); | ||||||
|     console.log(err) |  | ||||||
|     process.exit(1) |  | ||||||
|   }) |   }) | ||||||
|  |   .catch(err => { | ||||||
|  |     console.log(err); | ||||||
|  |     process.exit(1); | ||||||
|  |   }); | ||||||
|  |  | ||||||
| // trigger | // trigger | ||||||
| smartcli.addCommand('trigger') | smartcli | ||||||
|   .then(async (argv) => { |   .addCommand('trigger') | ||||||
|     let modTrigger = await npmciMods.modTrigger.load() |   .then(async argv => { | ||||||
|     await modTrigger.trigger() |     let modTrigger = await npmciMods.modTrigger.load(); | ||||||
|   }).catch(err => { |     await modTrigger.trigger(); | ||||||
|     console.log(err) |  | ||||||
|     process.exit(1) |  | ||||||
|   }) |   }) | ||||||
|  |   .catch(err => { | ||||||
|  |     console.log(err); | ||||||
|  |     process.exit(1); | ||||||
|  |   }); | ||||||
|  |  | ||||||
| smartcli.startParse() | smartcli.startParse(); | ||||||
|   | |||||||
| @@ -1,30 +1,34 @@ | |||||||
| import * as q from 'q' | import * as q from 'q'; | ||||||
|  |  | ||||||
| import * as plugins from './npmci.plugins' | import * as plugins from './npmci.plugins'; | ||||||
| import * as paths from './npmci.paths' | import * as paths from './npmci.paths'; | ||||||
|  |  | ||||||
| import { repo } from './npmci.env' | import { repo } from './npmci.env'; | ||||||
|  |  | ||||||
| import { KeyValueStore } from 'npmextra' | import { KeyValueStore } from 'npmextra'; | ||||||
|  |  | ||||||
| export interface INpmciOptions { | export interface INpmciOptions { | ||||||
|   npmGlobalTools: string[] |   npmGlobalTools: string[]; | ||||||
|   dockerRegistryRepoMap: any |   npmAccessLevel?: 'private' | 'public'; | ||||||
|   dockerBuildargEnvMap: any |   dockerRegistryRepoMap: any; | ||||||
|  |   dockerBuildargEnvMap: any; | ||||||
| } | } | ||||||
|  |  | ||||||
| // instantiate a kvStorage for the current directory | // instantiate a kvStorage for the current directory | ||||||
| export let kvStorage = new KeyValueStore('custom', `${repo.user}_${repo.repo}`) | export let kvStorage = new KeyValueStore('custom', `${repo.user}_${repo.repo}`); | ||||||
|  |  | ||||||
| // handle config retrival | // handle config retrival | ||||||
| let npmciNpmextra = new plugins.npmextra.Npmextra(paths.cwd) | let npmciNpmextra = new plugins.npmextra.Npmextra(paths.cwd); | ||||||
| let defaultConfig: INpmciOptions = { | let defaultConfig: INpmciOptions = { | ||||||
|   npmGlobalTools: [], |   npmGlobalTools: [], | ||||||
|   dockerRegistryRepoMap: {}, |   dockerRegistryRepoMap: {}, | ||||||
|   dockerBuildargEnvMap: {} |   dockerBuildargEnvMap: {} | ||||||
| } | }; | ||||||
| export let configObject = npmciNpmextra.dataFor<INpmciOptions>('npmci', defaultConfig) | export let configObject = npmciNpmextra.dataFor<INpmciOptions>('npmci', defaultConfig); | ||||||
|  |  | ||||||
|  | /** | ||||||
|  |  * gets the npmci portion of the npmextra.json file | ||||||
|  |  */ | ||||||
| export let getConfig = async (): Promise<INpmciOptions> => { | export let getConfig = async (): Promise<INpmciOptions> => { | ||||||
|   return configObject |   return configObject; | ||||||
| } | }; | ||||||
|   | |||||||
| @@ -1,12 +1,13 @@ | |||||||
| import * as plugins from './npmci.plugins' | import * as plugins from './npmci.plugins'; | ||||||
| import * as paths from './npmci.paths' | import * as paths from './npmci.paths'; | ||||||
| import { GitRepo } from 'smartstring' | import { GitRepo } from 'smartstring'; | ||||||
| import { Dockerfile } from './mod_docker/index' | import { Dockerfile } from './mod_docker/index'; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * a info instance about the git respoitory at cwd :) |  * a info instance about the git respoitory at cwd :) | ||||||
|  */ |  */ | ||||||
| export let repo: GitRepo | let repoString: string = process.env.CI_REPOSITORY_URL; | ||||||
| if (process.env.CI_REPOSITORY_URL) { | if (!repoString) { | ||||||
|   repo = new GitRepo(process.env.CI_REPOSITORY_URL) |   repoString = 'https://undefined:undefined@github.com/undefined/undefined.git'; | ||||||
| } | } | ||||||
|  | export let repo = new GitRepo(repoString); | ||||||
|   | |||||||
| @@ -1,21 +1,24 @@ | |||||||
| import * as _modClean from './mod_clean/index' | import * as _modClean from './mod_clean/index'; | ||||||
| import * as _modCloudflare from './mod_cloudflare/index' | import * as _modCloudflare from './mod_cloudflare/index'; | ||||||
| import * as _modCommand from './mod_command/index' | import * as _modCommand from './mod_command/index'; | ||||||
| import * as _modDocker from './mod_docker/index' | import * as _modDocker from './mod_docker/index'; | ||||||
| import * as _modGit from './mod_git/index' | import * as _modGit from './mod_git/index'; | ||||||
| import * as _modNpm from './mod_npm/index' | import * as _modNpm from './mod_npm/index'; | ||||||
| import * as _modNode from './mod_node/index' | import * as _modNode from './mod_node/index'; | ||||||
| import * as _modSsh from './mod_ssh/index' | import * as _modSsh from './mod_ssh/index'; | ||||||
| import * as _modTrigger from './mod_trigger/index' | import * as _modTrigger from './mod_trigger/index'; | ||||||
|  |  | ||||||
| import { LazyModule } from 'smartsystem' | import { LazyModule } from 'smartsystem'; | ||||||
|  |  | ||||||
| export let modClean = new LazyModule<typeof _modClean>('./mod_clean/index', __dirname) | export let modClean = new LazyModule<typeof _modClean>('./mod_clean/index', __dirname); | ||||||
| export let modCloudflare = new LazyModule<typeof _modCloudflare>('./mod_cloudflare/index', __dirname) | export let modCloudflare = new LazyModule<typeof _modCloudflare>( | ||||||
| export let modCommand = new LazyModule<typeof _modCommand>('./mod_command/index', __dirname) |   './mod_cloudflare/index', | ||||||
| export let modGit = new LazyModule<typeof _modGit>('./mod_git/index', __dirname) |   __dirname | ||||||
| export let modDocker = new LazyModule<typeof _modDocker>('./mod_docker/index', __dirname) | ); | ||||||
| export let modNode = new LazyModule<typeof _modNode>('./mod_node/index', __dirname) | export let modCommand = new LazyModule<typeof _modCommand>('./mod_command/index', __dirname); | ||||||
| export let modNpm = new LazyModule<typeof _modNpm>('./mod_npm/index', __dirname) | export let modGit = new LazyModule<typeof _modGit>('./mod_git/index', __dirname); | ||||||
| export let modSsh = new LazyModule<typeof _modSsh>('./mod_ssh/index', __dirname) | export let modDocker = new LazyModule<typeof _modDocker>('./mod_docker/index', __dirname); | ||||||
| export let modTrigger = new LazyModule<typeof _modTrigger>('./mod_trigger/index', __dirname) | export let modNode = new LazyModule<typeof _modNode>('./mod_node/index', __dirname); | ||||||
|  | export let modNpm = new LazyModule<typeof _modNpm>('./mod_npm/index', __dirname); | ||||||
|  | export let modSsh = new LazyModule<typeof _modSsh>('./mod_ssh/index', __dirname); | ||||||
|  | export let modTrigger = new LazyModule<typeof _modTrigger>('./mod_trigger/index', __dirname); | ||||||
|   | |||||||
| @@ -1,20 +1,22 @@ | |||||||
| import * as plugins from './npmci.plugins' | import * as plugins from './npmci.plugins'; | ||||||
| import * as env from './npmci.env' | import * as env from './npmci.env'; | ||||||
|  |  | ||||||
| import { Smartmonitor } from 'smartmonitor' | import { Analytics } from 'smartanalytics'; | ||||||
|  |  | ||||||
| export let npmciMonitor = new Smartmonitor() | export let npmciAnalytics = new Analytics({ | ||||||
|  |   apiEndPoint: 'https://pubapi.lossless.one/analytics', | ||||||
|  |   projectId: 'gitzone', | ||||||
|  |   appName: 'npmci' | ||||||
|  | }); | ||||||
|  |  | ||||||
| let monitorEnvString: string = process.env.NPMCI_MONITOR | export let run = async () => { | ||||||
|  |   npmciAnalytics | ||||||
| if (monitorEnvString) { |     .recordEvent('npmToolExecution', { | ||||||
|   let npmciMonitorKeys: string[] = monitorEnvString.split('|') |       host: env.repo.host, | ||||||
|   npmciMonitor.addInstrumental({ |       user: env.repo.user, | ||||||
|     apiKey: process.env.NPMCI_MONITOR |       repo: env.repo.repo | ||||||
|   }) |     }) | ||||||
|   plugins.beautylog.info('Monitoring activated') |     .catch(err => { | ||||||
| } else { |       plugins.beautylog.warn('Lossless Analytics API not available...'); | ||||||
|   plugins.beautylog.warn('Monitoring could not be enabled due to missing API-KEY') |     }); | ||||||
| } | }; | ||||||
|  |  | ||||||
| npmciMonitor.increment('lossless-ci.builds', 1) |  | ||||||
|   | |||||||
| @@ -1,8 +1,8 @@ | |||||||
| import * as plugins from './npmci.plugins' | import * as plugins from './npmci.plugins'; | ||||||
|  |  | ||||||
| export let cwd = process.cwd() | export let cwd = process.cwd(); | ||||||
|  |  | ||||||
| export let NpmciPackageRoot = plugins.path.join(__dirname,'../') | export let NpmciPackageRoot = plugins.path.join(__dirname, '../'); | ||||||
| export let NpmciPackageConfig = plugins.path.join(NpmciPackageRoot,'./config.json') | export let NpmciPackageConfig = plugins.path.join(NpmciPackageRoot, './config.json'); | ||||||
| export let NpmciProjectDir = cwd | export let NpmciProjectDir = cwd; | ||||||
| export let NpmciTestDir = plugins.path.join(cwd,'./test') | export let NpmciTestDir = plugins.path.join(cwd, './test'); | ||||||
|   | |||||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user