/** * <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.portfolio.ui; import java.util.Date; import org.olat.core.gui.UserRequest; import org.olat.core.gui.components.form.flexible.FormItemContainer; import org.olat.core.gui.components.form.flexible.elements.DateChooser; 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.core.logging.activity.ThreadLocalUserActivityLogger; import org.olat.modules.portfolio.PortfolioLoggingAction; import org.olat.modules.portfolio.PortfolioService; import org.olat.modules.portfolio.Section; import org.olat.modules.portfolio.SectionStatus; import org.olat.util.logging.activity.LoggingResourceable; import org.springframework.beans.factory.annotation.Autowired; /** * * Initial date: 03.08.2016<br> * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com * */ public class SectionDatesEditController extends FormBasicController { private DateChooser beginDateEl, endDateEl; private Section section; private Object userObject; @Autowired private PortfolioService portfolioService; public SectionDatesEditController(UserRequest ureq, WindowControl wControl, Section section) { super(ureq, wControl); this.section = section; initForm(ureq); } public Section getSection() { return section; } public Object getUserObject() { return userObject; } public void setUserObject(Object userObject) { this.userObject = userObject; } @Override protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) { uifactory.addStaticTextElement("title", "title", section.getTitle(), formLayout); beginDateEl = uifactory.addDateChooser("begin.date", "begin.date", section.getBeginDate(), formLayout); endDateEl = uifactory.addDateChooser("end.date", "end.date", section.getEndDate(), formLayout); FormLayoutContainer buttonsCont = FormLayoutContainer.createButtonLayout("buttons", getTranslator()); buttonsCont.setRootForm(mainForm); formLayout.add(buttonsCont); if(section != null && section.getKey() != null) { uifactory.addFormSubmitButton("save", buttonsCont); } else { uifactory.addFormSubmitButton("create.section", buttonsCont); } uifactory.addFormCancelButton("cancel", buttonsCont, ureq, getWindowControl()); } @Override protected void doDispose() { // } @Override protected boolean validateFormLogic(UserRequest ureq) { boolean allOk = true; return allOk & super.validateFormLogic(ureq); } @Override protected void formOK(UserRequest ureq) { Section reloadedSection = portfolioService.getSection(section); reloadedSection.setOverrideBeginEndDates(true); reloadedSection.setBeginDate(beginDateEl.getDate()); reloadedSection.setEndDate(endDateEl.getDate()); section = portfolioService.updateSection(reloadedSection); if(section.getSectionStatus() == SectionStatus.closed && section.getEndDate() != null && section.getEndDate().compareTo(new Date()) >= 0) { portfolioService.changeSectionStatus(section, SectionStatus.inProgress, getIdentity()); ThreadLocalUserActivityLogger.log(PortfolioLoggingAction.PORTFOLIO_SECTION_REOPEN, getClass(), LoggingResourceable.wrap(section)); } fireEvent(ureq, Event.DONE_EVENT); } @Override protected void formCancelled(UserRequest ureq) { fireEvent(ureq, Event.CANCELLED_EVENT); } }