/** * <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.modules.qpool.ui; import java.io.File; import java.util.List; import org.olat.core.gui.UserRequest; import org.olat.core.gui.components.form.flexible.FormItemContainer; import org.olat.core.gui.components.form.flexible.elements.FileElement; import org.olat.core.gui.components.form.flexible.elements.SingleSelection; import org.olat.core.gui.components.form.flexible.impl.FormBasicController; import org.olat.core.gui.components.form.flexible.impl.FormLayoutContainer; import org.olat.core.gui.control.Controller; import org.olat.core.gui.control.Event; import org.olat.core.gui.control.WindowControl; import org.olat.modules.qpool.QPoolService; import org.olat.modules.qpool.QuestionItem; import org.springframework.beans.factory.annotation.Autowired; /** * * Initial date: 26.02.2013<br> * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com * */ public class ImportController extends FormBasicController { private static final String[] keys = {"yes","no"}; private FileElement fileEl; private SingleSelection editableEl; private final QuestionItemsSource source; @Autowired private QPoolService qpoolservice; public ImportController(UserRequest ureq, WindowControl wControl, QuestionItemsSource source) { super(ureq, wControl); this.source = source; initForm(ureq); } @Override protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) { setFormContextHelp("Data Management#qb_import"); if(source.askEditable()) { String[] values = new String[]{ translate("yes"), translate("no") }; editableEl = uifactory.addRadiosVertical("share.editable", "share.editable", formLayout, keys, values); editableEl.select("no", true); } fileEl = uifactory.addFileElement(getWindowControl(), "item", "import.item", formLayout); FormLayoutContainer buttonsCont = FormLayoutContainer.createButtonLayout("buttons", getTranslator()); buttonsCont.setRootForm(mainForm); formLayout.add(buttonsCont); uifactory.addFormSubmitButton("ok", "ok", buttonsCont); uifactory.addFormCancelButton("cancel", buttonsCont, ureq, getWindowControl()); } @Override protected void doDispose() { // } public File getFile() { return fileEl.getUploadFile(); } @Override protected boolean validateFormLogic(UserRequest ureq) { boolean allOk = true; fileEl.clearError(); if(fileEl.getUploadFile() == null) { fileEl.setErrorKey("form.mandatory.hover", null); allOk = false; } return allOk & super.validateFormLogic(ureq); } @Override protected void formOK(UserRequest ureq) { String filename = fileEl.getUploadFileName(); File file = fileEl.getUploadFile(); List<QuestionItem> importItems = qpoolservice.importItems(getIdentity(), getLocale(), filename, file); if(importItems == null || importItems.isEmpty()) { fireEvent(ureq, Event.DONE_EVENT); showWarning("import.failed"); } else { boolean editable = editableEl == null ? true : editableEl.isSelected(0); source.postImport(importItems, editable); fireEvent(ureq, Event.DONE_EVENT); showInfo("import.success", Integer.toString(importItems.size())); } } @Override protected void formCancelled(UserRequest ureq) { fireEvent(ureq, Event.CANCELLED_EVENT); } }