Package org.olat.group.ui.wizard

Source Code of org.olat.group.ui.wizard.BGCopyWizardController

/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing,<br>
* software distributed under the License is distributed on an "AS IS" BASIS, <br>
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
* See the License for the specific language governing permissions and <br>
* limitations under the License.
* <p>
* Copyright (c) since 2004 at Multimedia- & E-Learning Services (MELS),<br>
* University of Zurich, Switzerland.
* <p>
*/

package org.olat.group.ui.wizard;

import org.olat.core.gui.UserRequest;
import org.olat.core.gui.components.Component;
import org.olat.core.gui.components.form.Form;
import org.olat.core.gui.control.Controller;
import org.olat.core.gui.control.Event;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.control.generic.wizard.WizardController;
import org.olat.core.gui.translator.Translator;
import org.olat.core.logging.activity.ThreadLocalUserActivityLogger;
import org.olat.core.util.Util;
import org.olat.group.BusinessGroup;
import org.olat.group.BusinessGroupManager;
import org.olat.group.BusinessGroupManagerImpl;
import org.olat.group.GroupLoggingAction;
import org.olat.group.context.BGContext;
import org.olat.group.ui.BGConfigFlags;
import org.olat.group.ui.BGTranslatorFactory;
import org.olat.group.ui.BusinessGroupFormController;
import org.olat.util.logging.activity.LoggingResourceable;

/**
* Description: <BR>
* Two step wizard to copy a given business group. In the first step the user is
* asked about what should be copied, in the second step the usr is asked for a
* groupname and the groups details.
* <P>
* Initial Date: Sep 11, 2004
*
* @author Florian Gnägi
*/
public class BGCopyWizardController extends WizardController {
  private static final String PACKAGE = Util.getPackageName(BGCopyWizardController.class);

  private BGCopyWizardCopyForm copyForm;
  private BusinessGroupFormController groupController;
  private Translator trans;
  private BGConfigFlags flags;
  private BusinessGroup originalGroup, copiedGroup;

  /**
   * Constructor fot the business group copy wizard
   *
   * @param ureq
   * @param wControl
   * @param originalGroup original business group: master that should be copied
   * @param flags
   */
  public BGCopyWizardController(UserRequest ureq, WindowControl wControl, BusinessGroup originalGroup, BGConfigFlags flags) {
    super(ureq, wControl, 2);
    this.trans = BGTranslatorFactory.createBGPackageTranslator(PACKAGE, originalGroup.getType(), ureq.getLocale());
    this.flags = flags;
    this.originalGroup = originalGroup;
    // init wizard step 1
    this.copyForm = new BGCopyWizardCopyForm(this.flags, trans, originalGroup);
    this.copyForm.addListener(this);
    // init wizard title and set step 1
    setWizardTitle(this.trans.translate("bgcopywizard.title"));
    setNextWizardStep(this.trans.translate("bgcopywizard.copyform.title"), this.copyForm);
  }
 
  @Override
  public void event(UserRequest ureq, Controller source, Event event) {
    if (source == this.groupController) {
      if (event == Event.DONE_EVENT) {
        BusinessGroup newGroup = doCopyGroup();
        if (newGroup == null) {
          this.groupController.setGroupNameExistsError(null);
        } else {
          this.copiedGroup = newGroup;
          // finished event
          fireEvent(ureq, Event.DONE_EVENT);
          // do logging
          ThreadLocalUserActivityLogger.log(GroupLoggingAction.BG_GROUP_COPIED, getClass(),
              LoggingResourceable.wrap(originalGroup), LoggingResourceable.wrap(copiedGroup));
        }
      }
    }
  }

  /**
   * @see org.olat.core.gui.control.DefaultController#event(org.olat.core.gui.UserRequest,
   *      org.olat.core.gui.components.Component, org.olat.core.gui.control.Event)
   */
  @Override
  public void event(UserRequest ureq, Component source, Event event) {
    // default wizard will lissen to cancel wizard event
    super.event(ureq, source, event);
    // now wizard steps events
    if (source == copyForm) {
      if (event == Form.EVNT_VALIDATION_OK) {
        if (this.groupController != null) {
          this.groupController.dispose();
          this.groupController = null;
        }
        this.groupController = new BusinessGroupFormController(ureq, getWindowControl(), this.originalGroup, this.flags.isEnabled(BGConfigFlags.GROUP_MINMAX_SIZE));
        this.groupController.setGroupName(this.originalGroup.getName() + " " + this.trans.translate("bgcopywizard.copyform.name.copy"));
        this.groupController.addControllerListener(this);
        setNextWizardStep(this.trans.translate("bgcopywizard.detailsform.title"), this.groupController.getInitialComponent());
      }
    }
  }

  private BusinessGroup doCopyGroup() {
    BusinessGroupManager groupManager = BusinessGroupManagerImpl.getInstance();
    // reload original group to prevent context proxy problems
    this.originalGroup = groupManager.loadBusinessGroup(this.originalGroup);
    BGContext bgContext = this.originalGroup.getGroupContext();
    String bgName = this.groupController.getGroupName();
    String bgDesc = this.groupController.getGroupDescription();
    Integer bgMax = this.groupController.getGroupMax();
    Integer bgMin = this.groupController.getGroupMin();
    boolean copyAreas = (this.flags.isEnabled(BGConfigFlags.AREAS) && this.copyForm.isCopyAreas());

    BusinessGroup newGroup = groupManager.copyBusinessGroup(this.originalGroup, bgName, bgDesc, bgMin, bgMax, bgContext, null, copyAreas,
        copyForm.isCopyTools(), copyForm.isCopyRights(), copyForm.isCopyOwners(), copyForm.isCopyParticipants(), copyForm
            .isCopyMembersVisibility(), copyForm.isCopyWaitingList());
    return newGroup;
  }

  /**
   * @return The new business group created as a copy of the original business
   *         group
   */
  public BusinessGroup getNewGroup() {
    return this.copiedGroup;
  }

  /**
   * @see org.olat.core.gui.control.generic.wizard.WizardController#doDispose()
   */
  @Override
  protected void doDispose() {
    super.doDispose();
    if (this.groupController != null) {
      this.groupController.dispose();
      this.groupController = null;
    }
  }
}
TOP

Related Classes of org.olat.group.ui.wizard.BGCopyWizardController

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.