Package org.olat.modules.sharedfolder

Source Code of org.olat.modules.sharedfolder.SharedFolderManager

/**
* 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.modules.sharedfolder;

import java.io.File;

import org.olat.core.commons.modules.bc.FolderConfig;
import org.olat.core.commons.modules.bc.vfs.OlatNamedContainerImpl;
import org.olat.core.commons.modules.bc.vfs.OlatRootFolderImpl;
import org.olat.core.commons.persistence.DBFactory;
import org.olat.core.gui.media.CleanupAfterDeliveryFileMediaResource;
import org.olat.core.gui.media.MediaResource;
import org.olat.core.id.OLATResourceable;
import org.olat.core.util.Formatter;
import org.olat.core.util.ZipUtil;
import org.olat.core.util.vfs.LocalFileImpl;
import org.olat.core.util.vfs.VFSContainer;
import org.olat.core.util.vfs.version.VersionsManager;
import org.olat.fileresource.FileResourceManager;
import org.olat.fileresource.types.SharedFolderFileResource;
import org.olat.repository.RepositoryEntry;
import org.olat.repository.RepositoryEntryImportExport;
import org.olat.repository.RepositoryManager;
import org.olat.repository.SharedFolderSecurityCallback;
import org.olat.resource.OLATResource;
import org.olat.resource.OLATResourceManager;

/**
* Initial Date:  Aug 29, 2005 <br>
* @author Alexander Schneider
*/
public class SharedFolderManager {

  private static final SharedFolderManager INSTANCE = new SharedFolderManager();
  /**
   * name of the folder on the filesystem, not visible for the user
   */
  private static final String FOLDER_NAME = "_sharedfolder_";
 
  private SharedFolderManager() {
    // singleton
  }
 
  public static SharedFolderManager getInstance() {
    return INSTANCE;
  }
 
  public OlatNamedContainerImpl getNamedSharedFolder(RepositoryEntry re) {
    return new OlatNamedContainerImpl(Formatter.makeStringFilesystemSave(re.getDisplayname()), getSharedFolder(re.getOlatResource()));
  }

  public OlatRootFolderImpl getSharedFolder(OLATResourceable res) {
    OlatRootFolderImpl rootFolderImpl = (OlatRootFolderImpl)FileResourceManager.getInstance().getFileResourceRootImpl(res).resolve(SharedFolderManager.FOLDER_NAME);
    if (rootFolderImpl == null) return null;
    rootFolderImpl.setLocalSecurityCallback(new SharedFolderSecurityCallback(rootFolderImpl.getRelPath()));
    return rootFolderImpl;
  }

  public MediaResource getAsMediaResource(OLATResourceable res) {
    String exportFileName = res.getResourceableId() + ".zip";
    File fExportZIP = new File(FolderConfig.getCanonicalTmpDir() + "/" + exportFileName);
    VFSContainer sharedFolder = SharedFolderManager.getInstance().getSharedFolder(res);
   
    //OLAT-5368: do intermediate commit to avoid transaction timeout
    // discussion intermediatecommit vs increased transaction timeout:
    //  pro intermediatecommit: not much
    //  pro increased transaction timeout: would fix OLAT-5368 but only move the problem
    //@TODO OLAT-2597: real solution is a long-running background-task concept...
    DBFactory.getInstance().intermediateCommit();

    ZipUtil.zip(sharedFolder.getItems(), new LocalFileImpl(fExportZIP));
    return new CleanupAfterDeliveryFileMediaResource(fExportZIP);
  }

  public boolean exportSharedFolder(String sharedFolderSoftkey, File exportedDataDir) {
    RepositoryEntry re = RepositoryManager.getInstance().lookupRepositoryEntryBySoftkey(
     sharedFolderSoftkey, false);
    if (re == null) return false;
    File fExportBaseDirectory = new File(exportedDataDir, "sharedfolder");
    if (!fExportBaseDirectory.mkdir()) return false;

    //OLAT-5368: do intermediate commit to avoid transaction timeout
    // discussion intermediatecommit vs increased transaction timeout:
    //  pro intermediatecommit: not much
    //  pro increased transaction timeout: would fix OLAT-5368 but only move the problem
    //@TODO OLAT-2597: real solution is a long-running background-task concept...
    DBFactory.getInstance().intermediateCommit();

    // export properties
    RepositoryEntryImportExport reImportExport = new RepositoryEntryImportExport(re, fExportBaseDirectory);
    return reImportExport.exportDoExport();
  }
 
  public RepositoryEntryImportExport getRepositoryImportExport(File importDataDir) {
    File fImportBaseDirectory = new File(importDataDir, "sharedfolder");
    return new RepositoryEntryImportExport(fImportBaseDirectory);
  }

  public void deleteSharedFolder(OLATResourceable res) {
    VFSContainer rootContainer = FileResourceManager.getInstance().getFileResourceRootImpl(res);
    VersionsManager.getInstance().delete(rootContainer,true);
    FileResourceManager.getInstance().deleteFileResource(res);
  }
 
  public SharedFolderFileResource createSharedFolder() {
    SharedFolderFileResource resource = new SharedFolderFileResource();
    VFSContainer rootContainer = FileResourceManager.getInstance().getFileResourceRootImpl(resource);
    if (rootContainer.createChildContainer(FOLDER_NAME) == null) return null;
    OLATResourceManager rm = OLATResourceManager.getInstance();
    OLATResource ores = rm.createOLATResourceInstance(resource);
    rm.saveOLATResource(ores);
    return resource;
  }

  public boolean validate(File f) {
    String name = f.getName();
    if (name.equals(FOLDER_NAME) || name.equals(FOLDER_NAME + ".zip")) {
      return true;
    } else {
      return false;
    }
  }

  public String archive(String archivFilePath, RepositoryEntry repoEntry) {
    String exportFileName = "del_sharedfolder_" + repoEntry.getOlatResource().getResourceableId() + ".zip";
    String fullFilePath = archivFilePath + File.separator + exportFileName;
    File fExportZIP = new File(fullFilePath);
    VFSContainer sharedFolder = SharedFolderManager.getInstance().getSharedFolder(repoEntry.getOlatResource());
    ZipUtil.zip(sharedFolder.getItems(), new LocalFileImpl(fExportZIP));
    return fullFilePath;
  }
 
}
TOP

Related Classes of org.olat.modules.sharedfolder.SharedFolderManager

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.