]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.security.ui.admin/src/org/argeo/security/ui/admin/internal/commands/DeleteUsers.java
Re-add org.argeo.cms.util.useradmin
[lgpl/argeo-commons.git] / org.argeo.security.ui.admin / src / org / argeo / security / ui / admin / internal / commands / DeleteUsers.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.security.ui.admin.internal.commands;
17
18 import java.util.ArrayList;
19 import java.util.Iterator;
20 import java.util.List;
21
22 import org.argeo.security.ui.admin.SecurityAdminPlugin;
23 import org.argeo.security.ui.admin.internal.UserAdminUtils;
24 import org.argeo.security.ui.admin.internal.UserAdminWrapper;
25 import org.argeo.security.ui.admin.internal.parts.UserEditorInput;
26 import org.eclipse.core.commands.AbstractHandler;
27 import org.eclipse.core.commands.ExecutionEvent;
28 import org.eclipse.core.commands.ExecutionException;
29 import org.eclipse.jface.dialogs.MessageDialog;
30 import org.eclipse.jface.viewers.ISelection;
31 import org.eclipse.jface.viewers.IStructuredSelection;
32 import org.eclipse.ui.IEditorPart;
33 import org.eclipse.ui.IWorkbenchPage;
34 import org.eclipse.ui.handlers.HandlerUtil;
35 import org.osgi.service.useradmin.User;
36 import org.osgi.service.useradmin.UserAdmin;
37 import org.osgi.service.useradmin.UserAdminEvent;
38
39 /** Delete the selected users */
40 public class DeleteUsers extends AbstractHandler {
41 public final static String ID = SecurityAdminPlugin.PLUGIN_ID
42 + ".deleteUsers";
43
44 /* DEPENDENCY INJECTION */
45 private UserAdminWrapper userAdminWrapper;
46
47 @SuppressWarnings("unchecked")
48 public Object execute(ExecutionEvent event) throws ExecutionException {
49 ISelection selection = HandlerUtil.getCurrentSelection(event);
50 if (selection.isEmpty())
51 return null;
52
53 Iterator<User> it = ((IStructuredSelection) selection).iterator();
54 List<User> users = new ArrayList<User>();
55 StringBuilder builder = new StringBuilder();
56
57 while (it.hasNext()) {
58 User currUser = it.next();
59 String userName = UserAdminUtils.getUsername(currUser);
60 if (UserAdminUtils.isCurrentUser(currUser)) {
61 MessageDialog.openError(HandlerUtil.getActiveShell(event),
62 "Deletion forbidden",
63 "You cannot delete your own user this way.");
64 return null;
65 }
66 builder.append(userName).append("; ");
67 users.add(currUser);
68 }
69
70 if (!MessageDialog.openQuestion(
71 HandlerUtil.getActiveShell(event),
72 "Delete Users",
73 "Are you sure that you want to delete these users?\n"
74 + builder.substring(0, builder.length() - 2)))
75 return null;
76
77 userAdminWrapper.beginTransactionIfNeeded();
78 UserAdmin userAdmin = userAdminWrapper.getUserAdmin();
79 IWorkbenchPage iwp = HandlerUtil.getActiveWorkbenchWindow(event)
80 .getActivePage();
81
82 for (User user : users) {
83 String userName = user.getName();
84
85 // TODO find a way to close the editor cleanly if opened. Cannot be
86 // done through the UserAdminListeners, it causes a
87 // java.util.ConcurrentModificationException because disposing the
88 // editor unregisters and disposes the listener
89 IEditorPart part = iwp.findEditor(new UserEditorInput(userName));
90 if (part != null)
91 iwp.closeEditor(part, false);
92
93 userAdmin.removeRole(userName);
94 userAdminWrapper.notifyListeners(new UserAdminEvent(null,
95 UserAdminEvent.ROLE_REMOVED, user));
96 }
97 return null;
98 }
99
100 /* DEPENDENCY INJECTION */
101 public void setUserAdminWrapper(UserAdminWrapper userAdminWrapper) {
102 this.userAdminWrapper = userAdminWrapper;
103 }
104 }