-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeployBase.ts
More file actions
149 lines (131 loc) · 5.02 KB
/
deployBase.ts
File metadata and controls
149 lines (131 loc) · 5.02 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
import { SfCommand, Flags } from '@salesforce/sf-plugins-core';
import { Messages, Org } 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,
}),
'package-version': Flags.string({
summary: messages.getMessage('flags.packageVersion.summary'),
description: messages.getMessage('flags.packageVersion.description'),
required: true,
}),
description: Flags.string({
char: 'd',
summary: messages.getMessage('flags.description.summary'),
description: messages.getMessage('flags.description.description'),
required: true,
}),
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);
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>;
}