generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpromote.ts
75 lines (68 loc) · 2.99 KB
/
promote.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
/*
* Copyright (c) 2022, 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 { Flags, loglevel, orgApiVersionFlagWithDeprecations, SfCommand } from '@salesforce/sf-plugins-core';
import { Messages, SfError } from '@salesforce/core';
import { PackageSaveResult, PackageVersion } from '@salesforce/packaging';
import { requiredHubFlag } from '../../../utils/hubFlag.js';
import { maybeGetProject } from '../../../utils/getProject.js';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-packaging', 'package_version_promote');
export class PackageVersionPromoteCommand extends SfCommand<PackageSaveResult> {
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly deprecateAliases = true;
public static readonly aliases = ['force:package:version:promote'];
public static readonly examples = messages.getMessages('examples');
public static readonly flags = {
loglevel,
'target-dev-hub': requiredHubFlag,
'api-version': orgApiVersionFlagWithDeprecations,
package: Flags.string({
char: 'p',
summary: messages.getMessage('flags.package.summary'),
required: true,
}),
'no-prompt': Flags.boolean({
char: 'n',
deprecateAliases: true,
aliases: ['noprompt'],
summary: messages.getMessage('flags.no-prompt.summary'),
}),
};
public async run(): Promise<PackageSaveResult> {
const { flags } = await this.parse(PackageVersionPromoteCommand);
const packageVersion = new PackageVersion({
connection: flags['target-dev-hub'].getConnection(flags['api-version']),
project: await maybeGetProject(),
idOrAlias: flags.package,
});
const packageVersionData = await packageVersion.getData();
if (!flags.json && !flags['no-prompt']) {
// Warn when a Managed package has removed metadata
if (packageVersionData.HasMetadataRemoved) {
this.warn(messages.getMessage('hasMetadataRemovedWarning'));
}
// Prompt for confirmation
if (!(await this.confirm({ message: messages.getMessage('packageVersionPromoteConfirm', [flags.package]) }))) {
throw messages.createError('promote-deny');
}
}
try {
const result = await packageVersion.promote();
result.id = packageVersionData.SubscriberPackageVersionId;
this.log(messages.getMessage('humanSuccess', [result.id]));
return result;
} catch (e) {
const err = SfError.wrap(e as Error);
if (err.name === 'DUPLICATE_VALUE' && err.message.includes('previously released')) {
err.message = messages.getMessage('previouslyReleasedMessage');
err.actions = [messages.getMessage('previouslyReleasedAction', [this.config.bin, this.config.bin])];
}
throw err;
}
}
}