generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathusers.ts
114 lines (104 loc) · 3.97 KB
/
users.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
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
/*
* 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 { Connection, Messages, StateAggregator } from '@salesforce/core';
import {
loglevel,
orgApiVersionFlagWithDeprecations,
requiredOrgFlagWithDeprecations,
SfCommand,
} from '@salesforce/sf-plugins-core';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-user', 'list');
export type AuthList = Partial<{
defaultMarker: string;
alias: string;
username: string;
profileName: string;
orgId: string;
accessToken: string;
instanceUrl: string;
loginUrl: string;
userId: string;
}>;
export type ListUsers = AuthList[];
type UserInfo = { Username: string; ProfileId: string; Id: string };
type UserInfoMap = Map<string, UserInfo>;
type ProfileInfo = { Id: string; Name: string };
type ProfileInfoMap = Map<string, ProfileInfo>;
export class ListUsersCommand extends SfCommand<ListUsers> {
public static readonly aliases = ['force:user:list'];
public static readonly deprecateAliases = true;
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 = {
'target-org': requiredOrgFlagWithDeprecations,
'api-version': orgApiVersionFlagWithDeprecations,
loglevel,
};
public async run(): Promise<ListUsers> {
const { flags } = await this.parse(ListUsersCommand);
const org = flags['target-org'];
const conn = flags['target-org'].getConnection(flags['api-version']);
// parallelize 2 org queries and 2 fs operations
const [userInfos, profileInfos, userAuthData, aliases] = await Promise.all([
buildUserInfos(conn),
buildProfileInfos(conn),
org.readUserAuthFiles(),
(await StateAggregator.getInstance()).aliases,
]);
const authList: ListUsers = userAuthData.map((authData) => {
const username = authData.getUsername();
// if they passed in an alias see if it maps to an Alias.
const alias = aliases.get(username);
const userInfo = userInfos.get(username);
const profileName = userInfo && profileInfos.get(userInfo.ProfileId)?.Name;
return {
defaultMarker: flags['target-org']?.getUsername() === username ? '(A)' : '',
alias: alias ?? '',
username,
profileName,
orgId: flags['target-org']?.getOrgId(),
accessToken: authData.getFields().accessToken,
instanceUrl: authData.getFields().instanceUrl,
loginUrl: authData.getFields().loginUrl,
userId: userInfos.get(username)?.Id,
};
});
this.table({
data: authList.map((authData) => ({
Default: authData.defaultMarker,
Alias: authData.alias,
Username: authData.username,
'Profile Name': authData.profileName,
'User Id': authData.userId,
})),
title: `Users in org ${flags['target-org']?.getOrgId()}`,
});
return authList;
}
}
/**
* Build a map of { [ProfileId]: ProfileName } for all profiles in the org
*
* @private
* @return Promise<ProfileInfo>
*/
const buildProfileInfos = async (conn: Connection): Promise<ProfileInfoMap> => {
const profileRecords = await conn.query<ProfileInfo>('SELECT id, name FROM Profile');
return new Map((profileRecords.records ?? []).map((profileInfo) => [profileInfo.Id, profileInfo]));
};
/**
* query the user table and build a map of Username: { ProfileId, Id } } for all users in the org
*
* @private
* @return Promise<UserInfo>
*/
const buildUserInfos = async (conn: Connection): Promise<UserInfoMap> => {
const userRecords = await conn.query<UserInfo>('SELECT username, profileid, id FROM User');
return new Map((userRecords.records ?? []).map((userInfo) => [userInfo.Username, userInfo]));
};