bdy 1.22.26-dev-pipeline → 1.22.27-dev-pipeline
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/distTs/package.json +2 -1
- package/distTs/src/input.js +15 -34
- package/distTs/src/texts.js +2 -2
- package/package.json +2 -1
package/distTs/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bdy",
|
|
3
3
|
"preferGlobal": false,
|
|
4
|
-
"version": "1.22.
|
|
4
|
+
"version": "1.22.27-dev-pipeline",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"content-disposition": "0.5.4",
|
|
46
46
|
"cookie": "1.1.1",
|
|
47
47
|
"cross-spawn": "7.0.6",
|
|
48
|
+
"dotenv": "16.6.1",
|
|
48
49
|
"eventsource": "4.1.0",
|
|
49
50
|
"fastify": "5.8.5",
|
|
50
51
|
"fdir": "6.5.0",
|
package/distTs/src/input.js
CHANGED
|
@@ -42,6 +42,7 @@ const punycode_1 = __importDefault(require("punycode/"));
|
|
|
42
42
|
const node_fs_1 = __importStar(require("node:fs"));
|
|
43
43
|
const tls_1 = __importDefault(require("tls"));
|
|
44
44
|
const node_crypto_1 = __importDefault(require("node:crypto"));
|
|
45
|
+
const dotenv_1 = __importDefault(require("dotenv"));
|
|
45
46
|
const utils_1 = require("./utils");
|
|
46
47
|
const texts_1 = require("./texts");
|
|
47
48
|
const tunnel_1 = require("./types/tunnel");
|
|
@@ -420,56 +421,36 @@ class Input {
|
|
|
420
421
|
output_1.default.exitError(texts_1.ERR_RUN_PIPELINE_WRONG_DELAY);
|
|
421
422
|
}
|
|
422
423
|
static pipelineRunVariablesFromFile(p, encrypted) {
|
|
423
|
-
const list = [];
|
|
424
424
|
const s = (0, node_path_1.resolve)(p);
|
|
425
425
|
if (!node_fs_1.default.existsSync(s)) {
|
|
426
426
|
output_1.default.exitError(texts_1.ERR_PIPELINE_RUN_VAR_FILE_NOT_FOUND);
|
|
427
427
|
}
|
|
428
|
-
let
|
|
428
|
+
let parsed;
|
|
429
429
|
try {
|
|
430
|
-
|
|
430
|
+
parsed = dotenv_1.default.parse(node_fs_1.default.readFileSync(s));
|
|
431
431
|
}
|
|
432
|
-
catch
|
|
433
|
-
if (err.code === 'ENOENT')
|
|
434
|
-
output_1.default.exitError(texts_1.ERR_PIPELINE_RUN_VAR_FILE_NOT_FOUND);
|
|
432
|
+
catch {
|
|
435
433
|
output_1.default.exitError(texts_1.ERR_PIPELINE_RUN_VAR_FILE_INVALID);
|
|
436
434
|
}
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
const ci = line.indexOf(':');
|
|
443
|
-
const ei = line.indexOf('=');
|
|
444
|
-
const sep = ci >= 0 && (ei < 0 || ci < ei) ? ':' : '=';
|
|
445
|
-
const l = line.split(sep);
|
|
446
|
-
if (l.length < 2) {
|
|
447
|
-
output_1.default.exitError(texts_1.ERR_PIPELINE_RUN_VAR_FILE_INVALID);
|
|
448
|
-
}
|
|
449
|
-
const key = l.shift().trim();
|
|
450
|
-
const value = l.join(sep).trim();
|
|
451
|
-
if (!key) {
|
|
452
|
-
output_1.default.exitError(texts_1.ERR_PIPELINE_RUN_VAR_FILE_INVALID);
|
|
453
|
-
}
|
|
454
|
-
list.push({
|
|
455
|
-
key,
|
|
456
|
-
value,
|
|
457
|
-
encrypted
|
|
458
|
-
});
|
|
459
|
-
}
|
|
460
|
-
}
|
|
461
|
-
return list;
|
|
435
|
+
return Object.entries(parsed).map(([key, value]) => ({
|
|
436
|
+
key,
|
|
437
|
+
value,
|
|
438
|
+
encrypted,
|
|
439
|
+
}));
|
|
462
440
|
}
|
|
463
441
|
static pipelineRunVariable(variable, encrypted) {
|
|
464
442
|
const list = [];
|
|
465
443
|
variable.forEach((v) => {
|
|
466
|
-
const
|
|
444
|
+
const ei = v.indexOf('=');
|
|
445
|
+
const ci = v.indexOf(':');
|
|
446
|
+
const sep = ei >= 0 && (ci < 0 || ei < ci) ? '=' : ':';
|
|
447
|
+
const s = v.split(sep);
|
|
467
448
|
if (s.length < 2) {
|
|
468
449
|
output_1.default.exitError((0, texts_1.ERR_RUN_PIPELINE_WRONG_VARIABLE)(v));
|
|
469
450
|
}
|
|
470
451
|
list.push({
|
|
471
|
-
key: s.shift() || '',
|
|
472
|
-
value: s.join(
|
|
452
|
+
key: (s.shift() || '').trim(),
|
|
453
|
+
value: s.join(sep).trim(),
|
|
473
454
|
encrypted,
|
|
474
455
|
});
|
|
475
456
|
});
|
package/distTs/src/texts.js
CHANGED
|
@@ -371,8 +371,8 @@ exports.OPTION_PIPELINE_RUN_COMMENT = 'Run comment';
|
|
|
371
371
|
exports.OPTION_PIPELINE_RUN_REFRESH = 'Deploy from scratch';
|
|
372
372
|
exports.OPTION_PIPELINE_RUN_CLEAR_CACHE = 'Clear cache before running the pipeline';
|
|
373
373
|
exports.OPTION_PIPELINE_RUN_PRIORITY = 'Run priority. Can be one of "LOW", "NORMAL" or "HIGH". Default is "NORMAL"';
|
|
374
|
-
exports.OPTION_PIPELINE_RUN_VAR = 'Variable key:value. Can be passed multiple times to pass multiple variables';
|
|
375
|
-
exports.OPTION_PIPELINE_RUN_VAR_FILE = 'File with variables, key
|
|
374
|
+
exports.OPTION_PIPELINE_RUN_VAR = 'Variable key=value or key:value. Can be passed multiple times to pass multiple variables';
|
|
375
|
+
exports.OPTION_PIPELINE_RUN_VAR_FILE = 'File with variables, key=value. Each variable in new line';
|
|
376
376
|
exports.ERR_PIPELINE_RUN_VAR_FILE_NOT_FOUND = 'File with variables not found';
|
|
377
377
|
exports.ERR_PIPELINE_RUN_VAR_FILE_INVALID = 'File with variables invalid';
|
|
378
378
|
exports.OPTION_PIPELINE_RUN_DELAY = 'The date when the execution should be run. Should be set in the format: 2016-11-18T12:38:16.000Z or 30s, 10m, 3h10m30s';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bdy",
|
|
3
3
|
"preferGlobal": false,
|
|
4
|
-
"version": "1.22.
|
|
4
|
+
"version": "1.22.27-dev-pipeline",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"content-disposition": "0.5.4",
|
|
46
46
|
"cookie": "1.1.1",
|
|
47
47
|
"cross-spawn": "7.0.6",
|
|
48
|
+
"dotenv": "16.6.1",
|
|
48
49
|
"eventsource": "4.1.0",
|
|
49
50
|
"fastify": "5.8.5",
|
|
50
51
|
"fdir": "6.5.0",
|