-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathAdminManager.java
318 lines (291 loc) · 10 KB
/
AdminManager.java
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/*
* Copyright (C) 2005-2008 Jive Software, 2017-2025 Ignite Realtime Foundation. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jivesoftware.openfire.admin;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.jivesoftware.openfire.XMPPServer;
import org.jivesoftware.openfire.event.UserEventDispatcher;
import org.jivesoftware.openfire.event.UserEventListener;
import org.jivesoftware.openfire.user.User;
import org.jivesoftware.util.SystemProperty;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.xmpp.packet.JID;
/**
* The AdminManager manages the AdminProvider configured for this server, caches knowledge of
* accounts with admin permissions, and provides a single point of entry for handling
* getting and setting administrative accounts.
*
* The provider can be specified using the system property:
*
* <ul>
* <li>{@code provider.admin.className = my.admin.provider}</li>
* </ul>
*
* @author Daniel Henninger
*/
public class AdminManager {
public static final SystemProperty<Class> ADMIN_PROVIDER = SystemProperty.Builder.ofType(Class.class)
.setKey("provider.admin.className")
.setBaseClass(AdminProvider.class)
.setDefaultValue(DefaultAdminProvider.class)
.addListener(AdminManager::initProvider)
.setDynamic(true)
.build();
private static final Logger Log = LoggerFactory.getLogger(AdminManager.class);
// Wrap this guy up so we can mock out the AdminManager class.
private static class AdminManagerContainer {
private static AdminManager instance = new AdminManager();
}
/**
* Returns the currently-installed AdminProvider. <b>Warning:</b> in virtually all
* cases the admin provider should not be used directly. Instead, the appropriate
* methods in AdminManager should be called. Direct access to the admin provider is
* only provided for special-case logic.
*
* @return the current AdminProvider.
*/
public static AdminProvider getAdminProvider() {
return AdminManagerContainer.instance.provider;
}
/**
* Returns a singleton instance of AdminManager.
*
* @return a AdminManager instance.
*/
public static AdminManager getInstance() {
return AdminManagerContainer.instance;
}
/* Cache of admin accounts */
private List<JID> adminList;
private static AdminProvider provider;
/**
* Constructs a AdminManager, property listener, and setting up the provider.
*/
private AdminManager() {
// Load an admin provider.
initProvider(ADMIN_PROVIDER.getValue());
UserEventDispatcher.addListener(new UserEventListener() {
@Override
public void userDeleting(final User user, final Map<String, Object> params) {
// OF-2758: Ensure that if a user is re-created with the same name, they're not automatically an admin.
removeAdminAccount(user.getUsername());
}
@Override public void userCreated(final User user, final Map<String, Object> params) {}
@Override public void userModified(final User user, final Map<String, Object> params) {}
});
}
private static void initProvider(final Class<? extends AdminProvider> clazz) {
if (provider == null || !clazz.equals(provider.getClass())) {
try {
provider = clazz.newInstance();
}
catch (Exception e) {
Log.error("Error loading admin provider: " + clazz.getName(), e);
provider = new DefaultAdminProvider();
}
}
}
/**
* Reads the admin list from the provider and sets up the cache.
*/
private void loadAdminList() {
adminList = provider.getAdmins();
}
/**
* Refreshes the list of admin users from the provider.
*/
public void refreshAdminAccounts() {
loadAdminList();
}
/**
* Returns the list of admin users from the provider.
*
* @return The list of users with admin status.
*/
public List<JID> getAdminAccounts() {
if (adminList == null) {
loadAdminList();
}
return adminList;
}
/**
* Adds a new account to the list of Admin accounts, based off a username, which will be converted
* into a JID.
*
* @param username Username of account to add to list of admins.
*/
public void addAdminAccount(String username) {
if (adminList == null) {
loadAdminList();
}
JID userJID = XMPPServer.getInstance().createJID(username, null);
if (adminList.contains(userJID)) {
// Already have them.
return;
}
// Add new admin to cache.
adminList.add(userJID);
// Store updated list of admins with provider.
provider.setAdmins(adminList);
}
/**
* Adds a new account to the list of Admin accounts, based off a JID.
*
* @param jid JID of account to add to list of admins.
*/
public void addAdminAccount(JID jid) {
if (adminList == null) {
loadAdminList();
}
JID bareJID = jid.asBareJID();
if (adminList.contains(bareJID)) {
// Already have them.
return;
}
// Add new admin to cache.
adminList.add(bareJID);
// Store updated list of admins with provider.
provider.setAdmins(adminList);
}
/**
* Removes an account from the list of Admin accounts, based off username, which will be converted
* to a JID.
*
* @param username Username of user to remove from admin list.
*/
public void removeAdminAccount(String username) {
if (adminList == null) {
loadAdminList();
}
JID userJID = XMPPServer.getInstance().createJID(username, null);
if (!adminList.contains(userJID)) {
return;
}
// Remove user from admin list cache.
adminList.remove(userJID);
// Store updated list of admins with provider.
provider.setAdmins(adminList);
}
/**
* Removes an account from the list of Admin accounts, based off JID.
*
* @param jid JID of user to remove from admin list.
*/
public void removeAdminAccount(JID jid) {
if (adminList == null) {
loadAdminList();
}
JID bareJID = jid.asBareJID();
if (!adminList.contains(bareJID)) {
return;
}
// Remove user from admin list cache.
adminList.remove(bareJID);
// Store updated list of admins with provider.
provider.setAdmins(adminList);
}
/**
* Returns true if the user is an admin.
*
* @param username Username of user to check whether they are an admin or not.
* @param allowAdminIfEmpty Allows the "admin" user to log in if the adminList is empty.
* @return True or false if user is an admin.
*/
public boolean isUserAdmin(String username, boolean allowAdminIfEmpty) {
if (adminList == null) {
loadAdminList();
}
if (allowAdminIfEmpty && adminList.isEmpty()) {
return "admin".equals(username);
}
JID userJID = XMPPServer.getInstance().createJID(username, null);
return adminList.contains(userJID);
}
/**
* Returns true if the user is an admin.
*
* @param jid JID of user to check whether they are an admin or not.
* @param allowAdminIfEmpty Allows the "admin" user to log in if the adminList is empty.
* @return True or false if user is an admin.
*/
public boolean isUserAdmin(JID jid, boolean allowAdminIfEmpty) {
if (adminList == null) {
loadAdminList();
}
if (allowAdminIfEmpty && adminList.isEmpty()) {
return "admin".equals(jid.getNode());
}
JID bareJID = jid.asBareJID();
return adminList.contains(bareJID);
}
/**
* Clears the list of admin users.
*/
public void clearAdminUsers() {
// Clear the admin list cache.
if (adminList == null) {
adminList = new ArrayList<>();
}
else {
adminList.clear();
}
// Store empty list of admins with provider.
provider.setAdmins(adminList);
}
/**
* Sets the list of admin users based off of a list of usernames. Clears list first.
*
* @param usernames List of usernames to set as admins.
*/
public void setAdminUsers(List<String> usernames) {
if (adminList == null) {
adminList = new ArrayList<>();
}
else {
adminList.clear();
}
List<JID> admins = new ArrayList<>();
for (String username : usernames) {
admins.add(XMPPServer.getInstance().createJID(username, null));
}
adminList.addAll(admins);
provider.setAdmins(admins);
}
/**
* Sets the list of admin users based off of a list of jids. Clears list first.
*
* @param jids List of jids to set as admins.
*/
public void setAdminJIDs(List<JID> jids) {
if (adminList == null) {
adminList = new ArrayList<>();
}
else {
adminList.clear();
}
List<JID> admins = new ArrayList<>();
for (JID jid : jids)
{
if (jid != null) {
admins.add(jid.asBareJID());
}
}
adminList.addAll(admins);
provider.setAdmins(admins);
}
}