generated from salesforcecli/lerna-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbulk.ts
80 lines (70 loc) · 2.62 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
/*
* Copyright (c) 2020, 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 { Messages } from '@salesforce/core';
import { Flags, SfCommand } from '@salesforce/sf-plugins-core';
import { baseUpsertDeleteFlags, lineEndingFlag, bulkIngest } from '../../../bulkIngest.js';
import { BulkDeleteRequestCache } from '../../../bulkDataRequestCache.js';
import { BulkResultV2 } from '../../../types.js';
import { transformResults } from '../../../bulkUtils.js';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-data', 'bulkv2.delete');
export default class Delete extends SfCommand<BulkResultV2> {
public static readonly examples = messages.getMessages('examples');
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly flags = {
...baseUpsertDeleteFlags,
'line-ending': lineEndingFlag,
'hard-delete': Flags.boolean({
summary: messages.getMessage('flags.hard-delete.summary'),
description: messages.getMessage('flags.hard-delete.description'),
default: false,
}),
};
public async run(): Promise<BulkResultV2> {
const { flags } = await this.parse(Delete);
const res = await bulkIngest({
resumeCmdId: 'data delete resume',
stageTitle: 'Deleting data',
object: flags.sobject,
operation: flags['hard-delete'] ? 'hardDelete' : 'delete',
lineEnding: flags['line-ending'],
columnDelimiter: undefined,
conn: flags['target-org'].getConnection(flags['api-version']),
cache: await BulkDeleteRequestCache.create(),
async: flags.async,
wait: flags.wait,
file: flags.file,
jsonEnabled: this.jsonEnabled(),
verbose: flags.verbose,
logFn: (arg: string) => {
this.log(arg);
},
warnFn: (arg: SfCommand.Warning) => {
this.warn(arg);
},
});
const job = flags['target-org'].getConnection(flags['api-version']).bulk2.job('ingest', {
id: res.jobId,
});
if (res.failedRecords && res.failedRecords > 0) {
process.exitCode = 1;
}
const jobInfo = await job.check();
return {
jobInfo,
records:
jobInfo.state === 'JobComplete'
? transformResults(await job.getAllResults())
: {
successfulResults: [],
failedResults: [],
unprocessedRecords: [],
},
};
}
}