/** * <a href="http://www.openolat.org"> * OpenOLAT - Online Learning and Training</a><br> * <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 the * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a> * <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> * Initial code contributed and copyrighted by<br> * frentix GmbH, http://www.frentix.com * <p> */ package org.olat.core.commons.modules.bc.commands; import org.olat.core.commons.modules.bc.components.FolderComponent; import org.olat.core.commons.modules.bc.version.DeletedFileListController; 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.Event; import org.olat.core.gui.control.WindowControl; import org.olat.core.gui.control.controller.BasicController; import org.olat.core.gui.translator.Translator; import org.olat.core.util.vfs.VFSContainer; import org.olat.core.util.vfs.VFSManager; /** * * Description:<br> * Open a panel with the list of deleted files of the selected container. The panel * can delete definitively a deleted and versioned file and restore them. * * <P> * Initial Date: 21 sept. 2009 <br> * * @author srosse */ public class CmdDeletedFiles extends BasicController implements FolderCommand { private int status = FolderCommandStatus.STATUS_SUCCESS; private DeletedFileListController deletedFileListCtr; private VFSContainer currentContainer; public CmdDeletedFiles(UserRequest ureq, WindowControl wControl) { super(ureq, wControl); } public Controller execute(FolderComponent folderComponent, UserRequest ureq, WindowControl wControl, Translator translator) { if(deletedFileListCtr != null) { removeAsListenerAndDispose(deletedFileListCtr); } currentContainer = folderComponent.getCurrentContainer(); if(!VFSManager.exists(currentContainer)) { status = FolderCommandStatus.STATUS_FAILED; getWindowControl().setError(translator.translate("FileDoesNotExist")); return null; } deletedFileListCtr = new DeletedFileListController(ureq,wControl,currentContainer); listenTo(deletedFileListCtr); putInitialPanel(deletedFileListCtr.getInitialComponent()); return deletedFileListCtr; } @Override protected void doDispose() { //auto-disposed by basic controller } @Override protected void event(UserRequest ureq, Component source, Event event) { // } public int getStatus() { return status; } public boolean runsModal() { return false; } @Override public String getModalTitle() { return null; } }