@codiac.io/codiac-cli 1.3.43 → 1.3.45
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/README.md
CHANGED
|
@@ -21,7 +21,7 @@ $ npm install -g @codiac.io/codiac-cli
|
|
|
21
21
|
$ codiac COMMAND
|
|
22
22
|
running command...
|
|
23
23
|
$ codiac (--version|-v)
|
|
24
|
-
@codiac.io/codiac-cli/1.3.
|
|
24
|
+
@codiac.io/codiac-cli/1.3.45 linux-x64 node-v16.17.1
|
|
25
25
|
$ codiac --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ codiac COMMAND
|
|
@@ -1,14 +1,25 @@
|
|
|
1
1
|
import "reflect-metadata";
|
|
2
|
-
import {
|
|
2
|
+
import { Enterprise } from "../../apis/codiac-api/contracts";
|
|
3
|
+
import { Command } from '@oclif/core';
|
|
4
|
+
import { CommandBaseExecTenant } from '../../command-base-exec-tenant';
|
|
5
|
+
import { InteractionModes } from "../../uilogic/config-ui-utils";
|
|
6
|
+
export type EnterpriseCreateRequest = {
|
|
7
|
+
enterprise_code: string;
|
|
8
|
+
};
|
|
3
9
|
export declare class MyTenantRequest {
|
|
4
10
|
}
|
|
5
|
-
export default class EnterpriseCreate extends
|
|
11
|
+
export default class EnterpriseCreate extends CommandBaseExecTenant<EnterpriseCreateRequest> {
|
|
6
12
|
static description: string;
|
|
7
13
|
static args: {
|
|
8
14
|
code: import("@oclif/core/lib/interfaces/parser").Arg<string | undefined, Record<string, unknown>>;
|
|
9
15
|
};
|
|
16
|
+
static examples: Command.Example[];
|
|
10
17
|
static flags: {
|
|
11
18
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
19
|
+
silent: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
20
|
+
echo: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
21
|
+
"to-script": import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
22
|
+
"take-defaults": import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
12
23
|
as: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
13
24
|
remember: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
14
25
|
rememberAs: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
@@ -16,5 +27,13 @@ export default class EnterpriseCreate extends CommandBaseEnterprise {
|
|
|
16
27
|
withoutdefaults: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
17
28
|
verbose: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
18
29
|
};
|
|
19
|
-
|
|
30
|
+
buildCommandString(candidate: EnterpriseCreateRequest, cmd: string[]): string[];
|
|
31
|
+
protected bootstrap(): void;
|
|
32
|
+
captureArgs(): Promise<[Partial<EnterpriseCreateRequest>, (InteractionModes | undefined), boolean]>;
|
|
33
|
+
validatePartial(partial: Partial<EnterpriseCreateRequest>): Promise<EnterpriseCreateRequest>;
|
|
34
|
+
getMyTenantSubscriptionId(): Promise<string>;
|
|
35
|
+
searchForExistingEnterprise(enterprise_code: string): Promise<Enterprise | undefined>;
|
|
36
|
+
buildCandidate_silently(partial: Partial<EnterpriseCreateRequest>): Promise<EnterpriseCreateRequest | undefined>;
|
|
37
|
+
buildCandidate_interactively(partial: Partial<EnterpriseCreateRequest>, takeDefaults: boolean): Promise<EnterpriseCreateRequest | undefined>;
|
|
38
|
+
executeTask(candidate: EnterpriseCreateRequest): Promise<void>;
|
|
20
39
|
}
|
|
@@ -3,88 +3,109 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.MyTenantRequest = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
require("reflect-metadata");
|
|
6
|
-
const core_1 = require("@oclif/core");
|
|
7
6
|
const cli_common_1 = require("../../cli-common");
|
|
8
|
-
const command_base_enterprise_1 = require("../../command-base-enterprise");
|
|
9
7
|
const cloud_provider_contextualizer_1 = require("../../uilogic/cloud-provider-contextualizer");
|
|
10
|
-
|
|
8
|
+
const core_1 = require("@oclif/core");
|
|
9
|
+
const command_base_exec_tenant_1 = require("../../command-base-exec-tenant");
|
|
10
|
+
const config_ui_utils_1 = require("../../uilogic/config-ui-utils");
|
|
11
11
|
class MyTenantRequest {
|
|
12
12
|
}
|
|
13
13
|
exports.MyTenantRequest = MyTenantRequest;
|
|
14
|
-
class EnterpriseCreate extends
|
|
15
|
-
|
|
14
|
+
class EnterpriseCreate extends command_base_exec_tenant_1.CommandBaseExecTenant {
|
|
15
|
+
buildCommandString(candidate, cmd) {
|
|
16
|
+
cmd.push(candidate.enterprise_code);
|
|
17
|
+
cmd.push("--silent");
|
|
18
|
+
return cmd;
|
|
19
|
+
}
|
|
20
|
+
bootstrap() {
|
|
21
|
+
super.bootstrap();
|
|
22
|
+
cloud_provider_contextualizer_1.CloudProviderContextualizer.bootstrap(this.ioc);
|
|
23
|
+
}
|
|
24
|
+
captureArgs() {
|
|
25
|
+
var _a, _b, _c;
|
|
26
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
27
|
+
const { args, flags } = yield this.parse(EnterpriseCreate);
|
|
28
|
+
let partial = {};
|
|
29
|
+
if (args.code)
|
|
30
|
+
partial.enterprise_code = args.code;
|
|
31
|
+
const interactionMode = (_b = (_a = (flags.echo ? config_ui_utils_1.InteractionModes.echo : undefined)) !== null && _a !== void 0 ? _a : (flags["to-script"] ? config_ui_utils_1.InteractionModes.toscript : undefined)) !== null && _b !== void 0 ? _b : (flags.silent ? config_ui_utils_1.InteractionModes.silent : undefined);
|
|
32
|
+
const takeDefaults = (_c = flags['take-defaults']) !== null && _c !== void 0 ? _c : false;
|
|
33
|
+
return [partial, interactionMode, takeDefaults];
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
validatePartial(partial) {
|
|
16
37
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
})
|
|
38
|
+
if (!partial.enterprise_code) {
|
|
39
|
+
throw new Error("Enterprise code is required.");
|
|
40
|
+
}
|
|
41
|
+
return partial;
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
getMyTenantSubscriptionId() {
|
|
45
|
+
var _a;
|
|
46
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
47
|
+
// Assemble and write
|
|
48
|
+
// httpRestVerb.GET, "/auth/my-tenant(/)"
|
|
49
|
+
let tenantResult = yield this._codiacApi.Auth.MyTenant(MyTenantRequest, {}); // , tenantCode: this._userCntx.currentTenantCode
|
|
50
|
+
// let tenantResult = await this._codiacApi.Subscription.tryReadMany({ all: true }, { forAnyTenant: true }); // , tenantCode: this._userCntx.currentTenantCode
|
|
51
|
+
if (tenantResult.output === undefined) {
|
|
52
|
+
throw new Error(`Cannot read the current tenant record [${this._userCntx.currentTenantCode}].`);
|
|
53
|
+
}
|
|
54
|
+
let subxId = (_a = tenantResult.output.currentSubscription) === null || _a === void 0 ? void 0 : _a.id; // This assertion operator is legit cuz we're pulling from a db read.
|
|
55
|
+
return subxId;
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
searchForExistingEnterprise(enterprise_code) {
|
|
59
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
60
|
+
let existings = yield this._codiacApi.Enterprise.readMany({ code: { $eq: enterprise_code } });
|
|
61
|
+
let found = existings.find(e => e.code === enterprise_code);
|
|
62
|
+
return found;
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
buildCandidate_silently(partial) {
|
|
66
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
67
|
+
return yield this.validatePartial(partial);
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
buildCandidate_interactively(partial, takeDefaults) {
|
|
71
|
+
var _a;
|
|
72
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
73
|
+
let defaultCode = "main";
|
|
74
|
+
let found = {};
|
|
75
|
+
//default to main if no code provided vial CLI flag
|
|
76
|
+
partial.enterprise_code = partial.enterprise_code || defaultCode;
|
|
77
|
+
do {
|
|
78
|
+
//prompt for enterprise code defaulting to the value provided via CLI flag (or the default value if non provided)
|
|
79
|
+
partial.enterprise_code = (yield this._ui.prompt("name", "Enterprise name (no spaces): ", true, partial.enterprise_code));
|
|
80
|
+
partial.enterprise_code = (_a = partial.enterprise_code) === null || _a === void 0 ? void 0 : _a.replace(" ", "");
|
|
81
|
+
// validate that it doesnt already exist
|
|
82
|
+
found = yield this.searchForExistingEnterprise(partial.enterprise_code);
|
|
83
|
+
if (found !== undefined) {
|
|
84
|
+
this._ui.userMessage(`${this._styler.colorWarning("INVALID: ")} An enterprise with that name already exists for this tenant.`);
|
|
85
|
+
}
|
|
86
|
+
} while (found !== undefined);
|
|
87
|
+
return yield this.validatePartial(partial);
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
executeTask(candidate) {
|
|
91
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
92
|
+
let final_candidate = Object.assign({ code: candidate.enterprise_code, subscription: yield this.getMyTenantSubscriptionId(), assets: [], products: [], domains: [] }, this.createAuditable());
|
|
93
|
+
this._ui.startSpinner(`Creating new enterprise [${final_candidate.code}]...`);
|
|
94
|
+
// let result = await this.relayClient.enterpriseCreate(partial.code!);
|
|
95
|
+
let result = yield this._codiacApi.Enterprise.tryCreate(final_candidate);
|
|
96
|
+
this._ui.stopSpinner("");
|
|
97
|
+
if (result.error) {
|
|
98
|
+
this.logger.error(`Error creating enterprise: ${result.message || ""}; ${result.error.message}`, result.error);
|
|
99
|
+
this._ui.userMessage(`Error creating enterprise: ${result.message || ""}; ${result.error.message}`);
|
|
100
|
+
}
|
|
101
|
+
else if (!result.success) {
|
|
102
|
+
this.logger.notice(`Enterprise creation failed without error. ${result.message}`);
|
|
103
|
+
this._ui.userMessage(`Enterprise creation failed without error. ${result.message}`);
|
|
82
104
|
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
this.logger.
|
|
86
|
-
|
|
87
|
-
// return new Promise<void>(async (res,rej) => rej(new Error(`Error parsing arguments: ${err}`)));
|
|
105
|
+
else if (result.output) {
|
|
106
|
+
let saved = result.output;
|
|
107
|
+
this.logger.notice(`${this._styler.colorGood("Success!")} Enterprise [${this._styler.hilite(saved.code)}] created for tenannt [${this._userCntx.currentTenantCode}]`);
|
|
108
|
+
this._ui.userMessage(`${this._styler.colorGood("Success!")} Enterprise [${this._styler.hilite(saved.code)}] created for tenannt [${this._userCntx.currentTenantCode}]`);
|
|
88
109
|
}
|
|
89
110
|
});
|
|
90
111
|
}
|
|
@@ -94,5 +115,12 @@ EnterpriseCreate.description = 'Creates a new enterprise under the current tenan
|
|
|
94
115
|
EnterpriseCreate.args = {
|
|
95
116
|
code: core_1.Args.string({ required: false, description: 'The unique human-readable identitifer to use for the enterprise (must be alphanunmeric with no spaces).' })
|
|
96
117
|
};
|
|
97
|
-
EnterpriseCreate.
|
|
118
|
+
EnterpriseCreate.examples = [
|
|
119
|
+
{ description: "Create enterprise interactivley.", command: "cod enterprise create" },
|
|
120
|
+
{ description: "Create enterprise interactivley with enterprise name.", command: "cod enterprise create my-enterprise-code" },
|
|
121
|
+
{ description: "Create enterprise silently.", command: "cod enterprise create my-enterprise-code --silent" },
|
|
122
|
+
];
|
|
123
|
+
EnterpriseCreate.flags = Object.assign(Object.assign({}, cli_common_1.commandBase.globalFlags), { help: core_1.Flags.help({ char: 'h' }), silent: core_1.Flags.boolean({ exclusive: ["echo", "to-script"], description: 'Non-Interactive mode; executes without any user interaction and fails on any missing or invalid arguments.' }), echo: core_1.Flags.boolean({ exclusive: ["to-script", "silent"], description: 'Echo interaction mode; renders the equivalent non-interactive cli command for future use before final execution.' }), "to-script": core_1.Flags.boolean({ exclusive: ["echo", "silent"], description: 'Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any execution.' }),
|
|
124
|
+
//Not sure what to do with this one yet
|
|
125
|
+
"take-defaults": core_1.Flags.boolean({ exclusive: ["silent"], description: "Setting this to true prevents prompting for confirmation on parameters that were passed in or were automatically set to default values (Irrelevant in --silent mode)." }) });
|
|
98
126
|
//# sourceMappingURL=create.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../src/commands/enterprise/create.ts"],"names":[],"mappings":";;;;AAAA,4BAA0B;AAC1B,
|
|
1
|
+
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../src/commands/enterprise/create.ts"],"names":[],"mappings":"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"}
|
|
@@ -14,7 +14,7 @@ const cli_tools_1 = require("@codiac.io/cli-tools");
|
|
|
14
14
|
const INTERFACES_CLI_1 = require("../ops/INTERFACES_CLI");
|
|
15
15
|
const Docker = require("dockerode");
|
|
16
16
|
const DEFAULT_IMAGE_NAME = "codiacimages/codiac-relay";
|
|
17
|
-
exports.DEFAULT_IMAGE_TAG = "1.4.
|
|
17
|
+
exports.DEFAULT_IMAGE_TAG = "1.4.24";
|
|
18
18
|
const DEFAULT_CONTAINER_NAME = "codiac-relay";
|
|
19
19
|
const DEFAULT_HEALTH_CHECK_URL = "http://localhost:5799/heartbeat-json"; // /ready-state";
|
|
20
20
|
const DEFAULT_RETRY_TIMOUT_IN_MINUTES = 1;
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.3.
|
|
2
|
+
"version": "1.3.45",
|
|
3
3
|
"commands": {
|
|
4
4
|
"branch": {
|
|
5
5
|
"id": "branch",
|
|
@@ -3405,6 +3405,20 @@
|
|
|
3405
3405
|
"pluginType": "core",
|
|
3406
3406
|
"aliases": [],
|
|
3407
3407
|
"hiddenAliases": [],
|
|
3408
|
+
"examples": [
|
|
3409
|
+
{
|
|
3410
|
+
"description": "Create enterprise interactivley.",
|
|
3411
|
+
"command": "cod enterprise create"
|
|
3412
|
+
},
|
|
3413
|
+
{
|
|
3414
|
+
"description": "Create enterprise interactivley with enterprise name.",
|
|
3415
|
+
"command": "cod enterprise create my-enterprise-code"
|
|
3416
|
+
},
|
|
3417
|
+
{
|
|
3418
|
+
"description": "Create enterprise silently.",
|
|
3419
|
+
"command": "cod enterprise create my-enterprise-code --silent"
|
|
3420
|
+
}
|
|
3421
|
+
],
|
|
3408
3422
|
"flags": {
|
|
3409
3423
|
"as": {
|
|
3410
3424
|
"name": "as",
|
|
@@ -3449,6 +3463,45 @@
|
|
|
3449
3463
|
"char": "h",
|
|
3450
3464
|
"description": "Show CLI help.",
|
|
3451
3465
|
"allowNo": false
|
|
3466
|
+
},
|
|
3467
|
+
"silent": {
|
|
3468
|
+
"name": "silent",
|
|
3469
|
+
"type": "boolean",
|
|
3470
|
+
"description": "Non-Interactive mode; executes without any user interaction and fails on any missing or invalid arguments.",
|
|
3471
|
+
"allowNo": false,
|
|
3472
|
+
"exclusive": [
|
|
3473
|
+
"echo",
|
|
3474
|
+
"to-script"
|
|
3475
|
+
]
|
|
3476
|
+
},
|
|
3477
|
+
"echo": {
|
|
3478
|
+
"name": "echo",
|
|
3479
|
+
"type": "boolean",
|
|
3480
|
+
"description": "Echo interaction mode; renders the equivalent non-interactive cli command for future use before final execution.",
|
|
3481
|
+
"allowNo": false,
|
|
3482
|
+
"exclusive": [
|
|
3483
|
+
"to-script",
|
|
3484
|
+
"silent"
|
|
3485
|
+
]
|
|
3486
|
+
},
|
|
3487
|
+
"to-script": {
|
|
3488
|
+
"name": "to-script",
|
|
3489
|
+
"type": "boolean",
|
|
3490
|
+
"description": "Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any execution.",
|
|
3491
|
+
"allowNo": false,
|
|
3492
|
+
"exclusive": [
|
|
3493
|
+
"echo",
|
|
3494
|
+
"silent"
|
|
3495
|
+
]
|
|
3496
|
+
},
|
|
3497
|
+
"take-defaults": {
|
|
3498
|
+
"name": "take-defaults",
|
|
3499
|
+
"type": "boolean",
|
|
3500
|
+
"description": "Setting this to true prevents prompting for confirmation on parameters that were passed in or were automatically set to default values (Irrelevant in --silent mode).",
|
|
3501
|
+
"allowNo": false,
|
|
3502
|
+
"exclusive": [
|
|
3503
|
+
"silent"
|
|
3504
|
+
]
|
|
3452
3505
|
}
|
|
3453
3506
|
},
|
|
3454
3507
|
"args": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codiac.io/codiac-cli",
|
|
3
3
|
"description": "Local command line interface for managing enterprise assets and environments.",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.45",
|
|
5
5
|
"author": "Codiac",
|
|
6
6
|
"bin": {
|
|
7
7
|
"codiac": "./bin/run",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@codiac.io/api-client-base": "^1.1.15",
|
|
31
31
|
"@codiac.io/cli-tools": "^1.1.10",
|
|
32
|
-
"@codiac.io/codiac-common": "^1.3.
|
|
33
|
-
"@codiac.io/codiac-domain": "^1.6.
|
|
32
|
+
"@codiac.io/codiac-common": "^1.3.2",
|
|
33
|
+
"@codiac.io/codiac-domain": "^1.6.2",
|
|
34
34
|
"@codiac.io/codiac-ops-common": "^1.2.1",
|
|
35
35
|
"@codiac.io/codiac-relay-contracts": "^1.2.23",
|
|
36
36
|
"@codiac.io/jwt-lib": "^1.1.6",
|