generated from salesforcecli/lerna-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbulk.ts
86 lines (79 loc) · 2.71 KB
/
bulk.ts
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
/*
* Copyright (c) 2024, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
import { SfCommand, Flags } from '@salesforce/sf-plugins-core';
import { Messages } from '@salesforce/core';
import { bulkIngest, columnDelimiterFlag } from '../../../bulkIngest.js';
import { BulkImportRequestCache } from '../../../bulkDataRequestCache.js';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-data', 'data.import.bulk');
export type DataImportBulkResult = {
jobId: string;
processedRecords?: number;
successfulRecords?: number;
failedRecords?: number;
};
export default class DataImportBulk extends SfCommand<DataImportBulkResult> {
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static readonly flags = {
async: Flags.boolean({
summary: messages.getMessage('flags.async.summary'),
char: 'a',
exclusive: ['wait'],
}),
file: Flags.file({
summary: messages.getMessage('flags.file.summary'),
char: 'f',
required: true,
exists: true,
}),
sobject: Flags.string({
summary: messages.getMessage('flags.sobject.summary'),
char: 's',
required: true,
}),
'api-version': Flags.orgApiVersion(),
wait: Flags.duration({
summary: messages.getMessage('flags.wait.summary'),
char: 'w',
unit: 'minutes',
exclusive: ['async'],
}),
'target-org': Flags.requiredOrg(),
'line-ending': Flags.option({
summary: messages.getMessage('flags.line-ending.summary'),
dependsOn: ['file'],
options: ['CRLF', 'LF'] as const,
})(),
'column-delimiter': columnDelimiterFlag,
};
public async run(): Promise<DataImportBulkResult> {
const { flags } = await this.parse(DataImportBulk);
return bulkIngest({
resumeCmdId: 'data import resume',
stageTitle: 'Importing data',
object: flags.sobject,
operation: 'insert',
lineEnding: flags['line-ending'],
columnDelimiter: flags['column-delimiter'],
conn: flags['target-org'].getConnection(flags['api-version']),
cache: await BulkImportRequestCache.create(),
async: flags.async,
wait: flags.wait,
file: flags.file,
jsonEnabled: this.jsonEnabled(),
verbose: false,
logFn: (arg: string) => {
this.log(arg);
},
warnFn: (arg: SfCommand.Warning) => {
this.warn(arg);
},
});
}
}