-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeployBase.ts
More file actions
197 lines (178 loc) · 6.97 KB
/
deployBase.ts
File metadata and controls
197 lines (178 loc) · 6.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/*
* Copyright 2026, Salesforce, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { SfCommand, Flags } from '@salesforce/sf-plugins-core';
import { Messages, Org, SfError } from '@salesforce/core';
import { DatacodeBinaryExecutor, type DatacodeDeployExecutionResult } from '../utils/datacodeBinaryExecutor.js';
import { checkEnvironment } from '../utils/environmentChecker.js';
import { type SharedResultProps } from './types.js';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-data-code-extension', 'deploy');
export type BaseDeployFlags = {
name: string;
'package-version': string;
description: string;
'package-dir': string;
'target-org': Org;
'cpu-size': string;
network?: string;
};
export type DeployResult = SharedResultProps & {
targetOrg: string;
deploymentId?: string;
endpointUrl?: string;
status?: string;
executionResult?: DatacodeDeployExecutionResult;
};
// eslint-disable-next-line sf-plugin/command-summary, sf-plugin/command-example
export abstract class DeployBase<TFlags extends BaseDeployFlags = BaseDeployFlags> extends SfCommand<DeployResult> {
public static enableJsonFlag = false;
public static readonly flags = {
name: Flags.string({
char: 'n',
summary: messages.getMessage('flags.name.summary'),
description: messages.getMessage('flags.name.description'),
required: true,
parse: (input) => {
if (input.length === 0) throw new SfError(messages.getMessage('error.flagEmpty', ['name']), 'InvalidFlagValue');
if (input.length > 64)
throw new SfError(
messages.getMessage('error.flagTooLong', ['name', '64', input.length.toString()]),
'InvalidFlagValue'
);
return Promise.resolve(input);
},
}),
'package-version': Flags.string({
summary: messages.getMessage('flags.packageVersion.summary'),
description: messages.getMessage('flags.packageVersion.description'),
required: true,
parse: (input) => {
if (input.length === 0)
throw new SfError(messages.getMessage('error.flagEmpty', ['package-version']), 'InvalidFlagValue');
if (input.length > 64)
throw new SfError(
messages.getMessage('error.flagTooLong', ['package-version', '64', input.length.toString()]),
'InvalidFlagValue'
);
return Promise.resolve(input);
},
}),
description: Flags.string({
char: 'd',
summary: messages.getMessage('flags.description.summary'),
description: messages.getMessage('flags.description.description'),
required: true,
parse: (input) => {
if (input.length === 0)
throw new SfError(messages.getMessage('error.flagEmpty', ['description']), 'InvalidFlagValue');
if (input.length > 255)
throw new SfError(
messages.getMessage('error.flagTooLong', ['description', '255', input.length.toString()]),
'InvalidFlagValue'
);
return Promise.resolve(input);
},
}),
network: Flags.string({
summary: messages.getMessage('flags.network.summary'),
description: messages.getMessage('flags.network.description'),
required: false,
}),
'package-dir': Flags.directory({
char: 'p',
summary: messages.getMessage('flags.packageDir.summary'),
description: messages.getMessage('flags.packageDir.description'),
required: true,
exists: true,
}),
'cpu-size': Flags.string({
summary: messages.getMessage('flags.cpuSize.summary'),
description: messages.getMessage('flags.cpuSize.description'),
options: ['CPU_L', 'CPU_XL', 'CPU_2XL', 'CPU_4XL'],
default: 'CPU_2XL',
}),
'target-org': Flags.requiredOrg({
char: 'o',
summary: messages.getMessage('flags.targetOrg.summary'),
description: messages.getMessage('flags.targetOrg.description'),
required: true,
}),
};
public async run(): Promise<DeployResult> {
const { flags } = (await this.parse(this.constructor as typeof DeployBase)) as unknown as { flags: TFlags };
const codeType = this.getCodeType();
const cmdMessages = this.getMessages();
const name = flags.name;
const version = flags['package-version'];
const description = flags.description;
const packageDir = flags['package-dir'];
const targetOrg = flags['target-org'];
const cpuSize = flags['cpu-size'] || 'CPU_2XL';
const network = flags.network;
const additionalFlags = this.getAdditionalFlags(flags);
if (packageDir.length === 0) {
throw new SfError(messages.getMessage('error.flagEmpty', ['package-dir']), 'InvalidFlagValue');
}
try {
const { pythonInfo, packageInfo, binaryInfo } = await checkEnvironment(
this.spinner,
this.log.bind(this),
cmdMessages
);
const orgUsername = targetOrg.getUsername() ?? 'target org';
this.spinner.start(cmdMessages.getMessage('info.authenticating', [orgUsername]));
const connection = targetOrg.getConnection();
await connection.refreshAuth();
this.spinner.stop();
this.log(cmdMessages.getMessage('info.authenticated', [orgUsername]));
this.log(cmdMessages.getMessage('info.deployingPackage'));
const executionResult = await DatacodeBinaryExecutor.executeBinaryDeploy(
name,
version,
description,
packageDir,
orgUsername,
cpuSize,
network,
additionalFlags.functionInvokeOpt as string | undefined
);
this.log(cmdMessages.getMessage('info.deploymentComplete', [name, version]));
this.log(cmdMessages.getMessage('info.deploySuccess'));
return {
success: true,
pythonVersion: pythonInfo,
packageInfo,
binaryInfo,
codeType,
packageDir,
targetOrg: orgUsername,
deploymentId: executionResult.deploymentId,
endpointUrl: executionResult.endpointUrl,
status: executionResult.status,
executionResult,
message: cmdMessages.getMessage('info.deploySuccess'),
};
} catch (error) {
this.spinner.stop();
// The error will be properly handled by the Salesforce CLI framework
// as an SfError with actions, so we just throw it
throw error;
}
}
protected abstract getCodeType(): 'script' | 'function';
protected abstract getMessages(): Messages<string>;
protected abstract getAdditionalFlags(flags: TFlags): Record<string, unknown>;
}