generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpassword.ts
67 lines (62 loc) · 2.27 KB
/
password.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
/*
* 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 { Flags } from '@salesforce/sf-plugins-core';
import { Messages } from '@salesforce/core';
import { ensureArray } from '@salesforce/kit';
import { GenerateResult, UserPasswordGenerateBaseCommand } from '../../../baseCommands/user/password/generate.js';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-user', 'password.generate');
export type PasswordData = {
username?: string;
password: string;
};
export class GenerateUserPasswordCommand extends UserPasswordGenerateBaseCommand {
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 = {
'on-behalf-of': Flags.string({
aliases: ['onbehalfof'],
deprecateAliases: true,
char: 'b',
summary: messages.getMessage('flags.onBehalfOf.summary'),
multiple: true,
parse: (input): Promise<string> => {
if (input.includes(',')) {
throw messages.createError('onBehalfOfMultipleError');
}
return Promise.resolve(input);
},
}),
length: Flags.integer({
char: 'l',
summary: messages.getMessage('flags.length.summary'),
min: 8,
max: 1000,
default: 13,
}),
// the higher the value, the stronger the password
complexity: Flags.integer({
char: 'c',
summary: messages.getMessage('flags.complexity.summary'),
min: 0,
max: 5,
default: 5,
}),
'target-org': Flags.requiredOrg({ required: true }),
'api-version': Flags.orgApiVersion(),
};
public async run(): Promise<GenerateResult> {
const { flags } = await this.parse(GenerateUserPasswordCommand);
return this.generate({
usernames: ensureArray(flags['on-behalf-of'] ?? flags['target-org'].getUsername()),
length: flags.length,
complexity: flags.complexity,
conn: flags['target-org'].getConnection(flags['api-version']),
});
}
}