/** * 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. * <hr> * <a href="http://www.openolat.org"> * OpenOLAT - Online Learning and Training</a><br> * This file has been modified by the OpenOLAT community. Changes are licensed * under the Apache 2.0 license as the original file. * <p> * Initial code contributed and copyrighted by<br> * 2012 by frentix GmbH, http://www.frentix.com * <p> */ package org.olat.admin.sysinfo; import org.olat.admin.sysinfo.manager.CustomStaticFolderManager; import org.olat.core.gui.UserRequest; import org.olat.core.gui.components.form.flexible.FormItemContainer; import org.olat.core.gui.components.form.flexible.elements.RichTextElement; 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.components.form.flexible.impl.elements.richText.RichTextConfiguration; 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.helpers.Settings; import org.springframework.beans.factory.annotation.Autowired; /** * Initial Date: Apr 30, 2004 * * @author Mike Stock * @author Sergio Trentini * @author Florian Gnägi */ public class InfoMsgForm extends FormBasicController { private RichTextElement msg; private final String infomsg; @Autowired private CustomStaticFolderManager staticFolderMgr; /** * @param name * @param infomsg */ public InfoMsgForm(UserRequest ureq, WindowControl wControl, String infomsg) { super(ureq, wControl, LAYOUT_VERTICAL); this.infomsg = infomsg; initForm(ureq); } /** * @return the info message */ public String getInfoMsg() { // use raw value to circumvent XSS filtering of script tags return msg.getRawValue(); } public void reset() { msg.setValue(""); } @Override protected void formOK(UserRequest ureq) { fireEvent(ureq, Event.DONE_EVENT); } @Override protected void formCancelled(UserRequest ureq) { fireEvent(ureq, Event.CANCELLED_EVENT); } @Override protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) { msg = uifactory.addRichTextElementForStringData("msg", "infomsg", infomsg, 20, 70, true, staticFolderMgr.getRootContainer(), null, formLayout, ureq.getUserSession(), getWindowControl()); msg.setMaxLength(1024); RichTextConfiguration richTextConfig = msg.getEditorConfiguration(); // manually enable the source edit button richTextConfig.enableCode(); //allow script tags... richTextConfig.setInvalidElements(RichTextConfiguration.INVALID_ELEMENTS_FORM_FULL_VALUE_UNSAVE_WITH_SCRIPT); richTextConfig.setExtendedValidElements("script[src,type,defer]"); // add style buttons to make alert style available richTextConfig.setContentCSSFromTheme(getWindowControl().getWindowBackOffice().getWindow().getGuiTheme()); String path = Settings.getServerContextPath() + "/raw/static/"; richTextConfig.setLinkBrowserAbsolutFilePath(path); FormLayoutContainer buttonGroupLayout = FormLayoutContainer.createButtonLayout("buttonGroupLayout", getTranslator()); formLayout.add(buttonGroupLayout); uifactory.addFormSubmitButton("submit", "submit", buttonGroupLayout); uifactory.addFormCancelButton("cancel", buttonGroupLayout, ureq, getWindowControl()); } @Override protected void doDispose() { // } }