All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.wiki.forms.FormOpen Maven / Gradle / Ivy

The newest version!
/*
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
 */
package org.apache.wiki.forms;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.wiki.api.core.Context;
import org.apache.wiki.api.core.ContextEnum;
import org.apache.wiki.api.exceptions.PluginException;
import org.apache.wiki.api.plugin.Plugin;
import org.apache.wiki.http.filter.CsrfProtectionFilter;
import org.apache.wiki.preferences.Preferences;
import org.apache.wiki.util.TextUtil;

import java.text.MessageFormat;
import java.util.Map;
import java.util.ResourceBundle;

/**
 *  Opens a WikiForm.
 *
 * Builds the HTML code for opening a FORM.
 *
 * 

Since we're only providing an opening FORM tag, we can't use * the ECS utilities. * * A Form plugin line that produces one looks like this: *

 *   [{FormOpen name='formname' handler='pluginname'
 *          submit='submitservlet'
 *          show='always'
 *   }]
 * 
* *

Mandatory parameters: *
The name field identifies this particular form to the * Form plugin across pages. *
The handler field is a WikiPlugin name; it will be * invoked with the form field values. * *

Optional parameters: *

The submitservlet is the name of a JSP/servlet capable of * handling the input from this form. It is optional; the default * value is the current page (which can handle the input by using * this Plugin.) * *

The hide parameter affects the visibility of this * form. If left out, the form is always shown. If set to * 'onsuccess', the form is not shown if it was submitted * successfully. (Note that a reload of the page would cause the * context to reset, and the form would be shown again. This may * be a useless option.) * */ public class FormOpen extends FormElement { private static final Logger LOG = LogManager.getLogger( FormOpen.class ); /** Parameter name for setting the method (GET or POST). Value is {@value}. */ public static final String PARAM_METHOD = "method"; /** * {@inheritDoc} */ @Override public String execute( final Context ctx, final Map< String, String > params ) throws PluginException { final ResourceBundle rb = Preferences.getBundle( ctx, Plugin.CORE_PLUGINS_RESOURCEBUNDLE ); final String formName = TextUtil.replaceEntities( params.get( PARAM_FORM ) ); if( formName == null ) { throw new PluginException( MessageFormat.format( rb.getString( "formopen.missingparam" ), PARAM_FORM ) ); } final String hide = params.get( PARAM_HIDEFORM ); final String sourcePage = ctx.getPage().getName(); String submitServlet = TextUtil.replaceEntities( params.get( PARAM_SUBMITHANDLER ) ); if( submitServlet == null ) submitServlet = ctx.getURL( ContextEnum.PAGE_VIEW.getRequestContext(), sourcePage ); String method = params.get( PARAM_METHOD ); if( method == null ) { method="post"; } if( !( method.equalsIgnoreCase( "get" ) || method.equalsIgnoreCase( "post" ) ) ) { throw new PluginException( rb.getString( "formopen.postorgetonly" ) ); } FormInfo info = getFormInfo( ctx ); if( info != null ) { // Previous information may be the result of submitting // this form, or of a FormSet plugin, or both. If it // exists and is for this form, fine. if( formName.equals( info.getName() ) ) { LOG.debug( "Previous FormInfo for this form was found in context." ); // If the FormInfo exists, and if we're supposed to display on error only, we need to exit now. if( HIDE_SUCCESS.equals( hide ) && info.getStatus() == FormInfo.EXECUTED ) { info.setHide( true ); return "

" + rb.getString( "formopen.noneedtoshow" ) + "

"; } } else { // This would mean that a new form was started without closing an old one. Get rid of the garbage. info = new FormInfo(); } } else { // No previous FormInfo available; store now, so it'll be available for upcoming Form input elements. info = new FormInfo(); storeFormInfo( ctx, info ); } info.setName( formName ); info.setAction( submitServlet ); return "
\n" + "
\n" + " \n" + " \n"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy