Package org.olat.repository.handlers

Source Code of org.olat.repository.handlers.CourseHandler

/**
* 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.repository.handlers;

import java.io.File;
import java.util.ArrayList;
import java.util.List;

import org.olat.core.commons.modules.bc.FolderConfig;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.components.Component;
import org.olat.core.gui.control.Controller;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.control.generic.layout.MainLayoutController;
import org.olat.core.gui.media.CleanupAfterDeliveryFileMediaResource;
import org.olat.core.gui.media.MediaResource;
import org.olat.core.gui.translator.PackageTranslator;
import org.olat.core.gui.translator.Translator;
import org.olat.core.id.Identity;
import org.olat.core.id.OLATResourceable;
import org.olat.core.logging.AssertException;
import org.olat.core.util.CodeHelper;
import org.olat.core.util.FileUtils;
import org.olat.core.util.StringHelper;
import org.olat.core.util.Util;
import org.olat.core.util.WebappHelper;
import org.olat.core.util.ZipUtil;
import org.olat.core.util.coordinate.CoordinatorManager;
import org.olat.core.util.coordinate.LockResult;
import org.olat.core.util.i18n.I18nModule;
import org.olat.core.util.resource.OLATResourceableJustBeforeDeletedEvent;
import org.olat.course.CourseFactory;
import org.olat.course.CourseModule;
import org.olat.course.ICourse;
import org.olat.course.repository.CreateNewCourseController;
import org.olat.course.repository.ImportCourseController;
import org.olat.repository.RepositoryEntry;
import org.olat.repository.RepositoryManager;
import org.olat.repository.controllers.IAddController;
import org.olat.repository.controllers.RepositoryAddCallback;
import org.olat.repository.controllers.WizardCloseCourseController;
import org.olat.repository.controllers.WizardCloseResourceController;
import org.olat.resource.OLATResource;
import org.olat.resource.OLATResourceManager;
import org.olat.resource.references.ReferenceManager;
import org.olat.user.UserManager;


/**
* Initial Date: Apr 15, 2004
*
* @author
*
* Comment: Mike Stock
*
*/
public class CourseHandler implements RepositoryHandler {

  /**
   * Command to add (i.e. import) a course.
   */
  public static final String PROCESS_IMPORT = "add";
  /**
   * Command to create a new course.
   */
  public static final String PROCESS_CREATENEW = "new";
 
  private static final String PACKAGE = Util.getPackageName(RepositoryManager.class);
  private static final boolean LAUNCHEABLE = true;
  private static final boolean DOWNLOADEABLE = true;
  private static final boolean EDITABLE = true;
  private static final List supportedTypes;

  static { // initialize supported types
    supportedTypes = new ArrayList(1);
    supportedTypes.add(CourseModule.getCourseTypeName());
  }
 
  /**
   * @see org.olat.repository.handlers.RepositoryHandler#getSupportedTypes()
   */
  public List getSupportedTypes() {  return supportedTypes; }
  /**
   * @see org.olat.repository.handlers.RepositoryHandler#supportsDownload()
   */
  public boolean supportsDownload() {  return DOWNLOADEABLE;  }
  /**
   * @see org.olat.repository.handlers.RepositoryHandler#supportsLaunch()
   */
  public boolean supportsLaunch() {  return LAUNCHEABLE;  }
  /**
   * @see org.olat.repository.handlers.RepositoryHandler#supportsEdit()
   */
  public boolean supportsEdit() {  return EDITABLE; }
 
 
  /**
   * @see org.olat.repository.handlers.RepositoryHandler#getLaunchController(org.olat.core.id.OLATResourceable java.lang.String, org.olat.core.gui.UserRequest, org.olat.core.gui.control.WindowControl)
   */
  public MainLayoutController getLaunchController(OLATResourceable res, String initialViewIdentifier, UserRequest ureq, WindowControl wControl) {
    return CourseFactory.createLaunchController(ureq, wControl, res, initialViewIdentifier);
  }

  /**
   * @see org.olat.repository.handlers.RepositoryHandler#getAsMediaResource(org.olat.core.id.OLATResourceable
   */
  public MediaResource getAsMediaResource(OLATResourceable res) {
    RepositoryEntry re = RepositoryManager.getInstance().lookupRepositoryEntry(res, true);
    String exportFileName = re.getDisplayname() + ".zip";
    exportFileName = StringHelper.transformDisplayNameToFileSystemName(exportFileName);
    File fExportZIP = new File(FolderConfig.getCanonicalTmpDir() + "/" + exportFileName);
    CourseFactory.exportCourseToZIP(res, fExportZIP);
    return new CleanupAfterDeliveryFileMediaResource(fExportZIP);
  }

  /**
   * @see org.olat.repository.handlers.RepositoryHandler#getEditorController(org.olat.core.id.OLATResourceable org.olat.core.gui.UserRequest, org.olat.core.gui.control.WindowControl)
   */
  public Controller getEditorController(OLATResourceable res, UserRequest ureq, WindowControl wControl) {
    //throw new AssertException("a course is not directly editable!!! (reason: lock is never released), res-id:"+res.getResourceableId());
    return CourseFactory.createEditorController(ureq, wControl, res);
  }

  /**
   * @see org.olat.repository.handlers.RepositoryHandler#getAddController(org.olat.repository.controllers.RepositoryAddCallback, java.lang.Object, org.olat.core.gui.UserRequest, org.olat.core.gui.control.WindowControl)
   */
  public IAddController getAddController(RepositoryAddCallback callback, Object userObject, UserRequest ureq, WindowControl wControl) {
    if (userObject == null || userObject.equals(PROCESS_CREATENEW))
      return new CreateNewCourseController(callback, ureq, wControl);
    else if (userObject.equals(PROCESS_IMPORT))
      return new ImportCourseController(callback, ureq, wControl);
    else throw new AssertException("Command " + userObject + " not supported by CourseHandler.");
  }

  /**
   * @see org.olat.repository.handlers.RepositoryHandler#getDetailsComponent(org.olat.core.id.OLATResourceable org.olat.core.gui.UserRequest)
   */
  public Component getDetailsComponent(OLATResourceable res, UserRequest ureq) {
    return CourseFactory.getDetailsComponent(res, ureq);
  }

  /**
   * @see org.olat.repository.handlers.RepositoryHandler#cleanupOnDelete(org.olat.core.id.OLATResourceable org.olat.core.gui.UserRequest, org.olat.core.gui.control.WindowControl)
   */
  public boolean cleanupOnDelete(OLATResourceable res, UserRequest ureq, WindowControl wControl) {
    // notify all current users of this resource (course) that it will be deleted now.
    CoordinatorManager.getCoordinator().getEventBus().fireEventToListenersOf(new OLATResourceableJustBeforeDeletedEvent(res), res);
    //archiving is done within readyToDelete   
    CourseFactory.deleteCourse(res);
    // delete resourceable
    OLATResourceManager rm = OLATResourceManager.getInstance();
    OLATResource ores = rm.findResourceable(res);
    rm.deleteOLATResource(ores);
    return true;
  }

  /**
   * @see org.olat.repository.handlers.RepositoryHandler#readyToDelete(org.olat.core.id.OLATResourceable org.olat.core.gui.UserRequest, org.olat.core.gui.control.WindowControl)
   */
  public boolean readyToDelete(OLATResourceable res, UserRequest ureq, WindowControl wControl) {
    ReferenceManager refM = ReferenceManager.getInstance();
    String referencesSummary = refM.getReferencesToSummary(res, ureq.getLocale());
    if (referencesSummary != null) {
      Translator translator = new PackageTranslator(PACKAGE, ureq.getLocale());
      wControl.setError(translator.translate("details.delete.error.references",
          new String[] { referencesSummary }));
      return false;
    }
    /*
     * make an archive of the course nodes with valuable data
     */
    UserManager um = UserManager.getInstance();
    String charset = um.getUserCharset(ureq.getIdentity());
    CourseFactory.archiveCourse(res,charset,ureq.getLocale(),ureq.getIdentity());
    /*
     *
     */
    return true;
  }
 
  /**
   * @see org.olat.repository.handlers.RepositoryHandler#createCopy(org.olat.core.id.OLATResourceable org.olat.core.gui.UserRequest)
   */
  public OLATResourceable createCopy(OLATResourceable res, UserRequest ureq) {
    return CourseFactory.copyCourse(res, ureq);
  }
 
  /**
   * Archive the hole course with runtime-data and course-structure-data.
   * @see org.olat.repository.handlers.RepositoryHandler#archive(java.lang.String, org.olat.repository.RepositoryEntry)
   */
  public String archive(Identity archiveOnBehalfOf, String archivFilePath, RepositoryEntry entry) {
    ICourse course = CourseFactory.loadCourse(entry.getOlatResource() );
    // Archive course runtime data (like delete course, archive e.g. logfiles, node-data)
    File tmpExportDir = new File(FolderConfig.getCanonicalTmpDir() + "/" + CodeHelper.getRAMUniqueID());
    tmpExportDir.mkdirs();
    CourseFactory.archiveCourse(archiveOnBehalfOf, course, WebappHelper.getDefaultCharset(), I18nModule.getDefaultLocale(), tmpExportDir , true);
    // Archive course run structure (like course export)
    String courseExportFileName = "course_export.zip";
    File courseExportZIP = new File(tmpExportDir, courseExportFileName);
    CourseFactory.exportCourseToZIP(entry.getOlatResource(), courseExportZIP);
    // Zip runtime data and course run structure data into one zip-file
    String completeArchiveFileName = "del_course_" + entry.getOlatResource().getResourceableId() + ".zip";
    String completeArchivePath = archivFilePath + File.separator + completeArchiveFileName;
    ZipUtil.zipAll(tmpExportDir, new File(completeArchivePath) );
    FileUtils.deleteDirsAndFiles(tmpExportDir, true, true);
    return completeArchiveFileName;
  }

  /**
   *
   * @see org.olat.repository.handlers.RepositoryHandler#acquireLock(org.olat.core.id.OLATResourceable, org.olat.core.id.Identity)
   */
  public LockResult acquireLock(OLATResourceable ores, Identity identity) {
    return CoordinatorManager.getCoordinator().getLocker().acquireLock(ores, identity, CourseFactory.COURSE_EDITOR_LOCK);
  }
 
  /**
   *
   * @see org.olat.repository.handlers.RepositoryHandler#releaseLock(org.olat.core.util.coordinate.LockResult)
   */
  public void releaseLock(LockResult lockResult) {
    if(lockResult!=null) {
      CoordinatorManager.getCoordinator().getLocker().releaseLock(lockResult);
    }
  }
 
  /**
   *
   * @see org.olat.repository.handlers.RepositoryHandler#isLocked(org.olat.core.id.OLATResourceable)
   */
  public boolean isLocked(OLATResourceable ores) {
    return CoordinatorManager.getCoordinator().getLocker().isLocked(ores, CourseFactory.COURSE_EDITOR_LOCK);
  }
 
  public WizardCloseResourceController getCloseResourceController(UserRequest ureq, WindowControl wControl, RepositoryEntry repositoryEntry) {
    return new WizardCloseCourseController(ureq, wControl, repositoryEntry);
  }
 
}
TOP

Related Classes of org.olat.repository.handlers.CourseHandler

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.