/* *------------------------------------------------------------------------------ * Copyright (C) 2006-2015 University of Dundee. All rights reserved. * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * *------------------------------------------------------------------------------ */ package org.openmicroscopy.shoola.agents.treeviewer; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import org.apache.commons.collections.CollectionUtils; import org.openmicroscopy.shoola.agents.treeviewer.browser.Browser; import org.openmicroscopy.shoola.agents.treeviewer.view.TreeViewer; import org.openmicroscopy.shoola.env.data.model.AdminObject; import omero.gateway.SecurityContext; import org.openmicroscopy.shoola.env.data.views.CallHandle; import org.openmicroscopy.shoola.env.ui.UserNotifier; import omero.gateway.model.DataObject; import omero.gateway.model.ExperimenterData; import omero.gateway.model.GroupData; /** * Creates groups and/or experimenters. * * @author Jean-Marie Burel      * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a> * @author Donald MacDonald      * <a href="mailto:donald@lifesci.dundee.ac.uk">donald@lifesci.dundee.ac.uk</a> * @version 3.0 * <small> * (<b>Internal version:</b> $Revision: $Date: $) * </small> * @since 3.0-Beta4 */ public class AdminCreator extends DataTreeViewerLoader { /** The object to handle. */ private AdminObject object; /** Handle to the asynchronous call so that we can cancel it. */ private CallHandle handle; /** * Creates a new instance. * * @param viewer Reference to the Model. Mustn't be <code>null</code>. * @param ctx The security context. * @param object The object hosting details about object to create. */ public AdminCreator(TreeViewer viewer, SecurityContext ctx, AdminObject object) { super(viewer, ctx); if (object == null) throw new IllegalArgumentException("No object"); this.object = object; } /** * Creates the object. * @see DataBrowserLoader#load() */ public void load() { switch (object.getIndex()) { case AdminObject.CREATE_GROUP: handle = adminView.createGroup(ctx, object, this); break; case AdminObject.CREATE_EXPERIMENTER: handle = adminView.createExperimenters(ctx,object, this); break; case AdminObject.RESET_PASSWORD: handle = adminView.resetExperimentersPassword(ctx, object, this); break; case AdminObject.ACTIVATE_USER: handle = adminView.activateExperimenters(ctx, object, this); break; case AdminObject.ADD_EXPERIMENTER_TO_GROUP: Map m = new HashMap(); GroupData group = object.getGroup(); Set experimenters = object.getExperimenters().keySet(); Set existing = group.getExperimenters(); List<Long> ids = new ArrayList<Long>(); DataObject o; Iterator i; if (existing != null) { i = existing.iterator(); while (i.hasNext()) { o = (DataObject) i.next(); ids.add(o.getId()); } } Set<DataObject> toAdd = new HashSet<DataObject>(); Set<DataObject> toRemove = new HashSet<DataObject>(); i = experimenters.iterator(); long id; List<Long> selectedIds = new ArrayList<Long>(); while (i.hasNext()) { o = (DataObject) i.next(); id = o.getId(); selectedIds.add(id); if (!ids.contains(id)) toAdd.add(o); } if (existing != null) { i = existing.iterator(); while (i.hasNext()) { o = (DataObject) i.next(); if (!selectedIds.contains(o.getId())) { toRemove.add(o); } } } m.put(group, toAdd); Map m1 = new HashMap(); m1.put(group, toRemove); handle = dmView.cutAndPaste(ctx, m, m1, true, this); } } /** * Cancels the data loading. * @see DataBrowserLoader#cancel() */ public void cancel() { handle.cancel(); } /** * Feeds the result back to the viewer. * @see DataBrowserLoader#handleResult(Object) */ public void handleResult(Object result) { if (viewer.getState() == Browser.DISCARDED) return; //Async cancel. List l; UserNotifier un = TreeViewerAgent.getRegistry().getUserNotifier(); switch (object.getIndex()) { case AdminObject.CREATE_GROUP: case AdminObject.CREATE_EXPERIMENTER: case AdminObject.ADD_EXPERIMENTER_TO_GROUP: viewer.refreshTree(); break; case AdminObject.RESET_PASSWORD: l = (List) result; if (CollectionUtils.isNotEmpty(l)) { Iterator i = l.iterator(); ExperimenterData exp; StringBuffer s = new StringBuffer(); while (i.hasNext()) { exp = (ExperimenterData) i.next(); s.append(exp.getUserName()+"\n"); } StringBuffer buffer = new StringBuffer(); buffer.append("The password could not be reset for "); buffer.append("the following experimenters:\n"); buffer.append(s.toString()); un.notifyInfo("Reset password", buffer.toString()); } else { un.notifyInfo("Reset password", "The password has been reset."); } break; case AdminObject.ACTIVATE_USER: l = (List) result; if (CollectionUtils.isNotEmpty(l)) { Iterator i = l.iterator(); ExperimenterData exp; StringBuffer s = new StringBuffer(); while (i.hasNext()) { exp = (ExperimenterData) i.next(); s.append(exp.getUserName()); s.append("\n"); } StringBuffer buffer = new StringBuffer(); buffer.append("Not possible to reset the status of "); buffer.append("the following experimenters:\n"); buffer.append(s.toString()); un.notifyInfo("Activate", buffer.toString()); } viewer.refreshTree(); } } }