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

com.sun.faces.renderkit.StateHelper Maven / Gradle / Ivy

Go to download

This is the master POM file for Oracle's Implementation of the JSF 2.2 Specification.

The newest version!
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 1997-2013 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

package com.sun.faces.renderkit;


import javax.faces.lifecycle.ClientWindow;

import com.sun.faces.RIConstants;

import java.io.IOException;

import javax.faces.component.NamingContainer;
import javax.faces.component.UIViewRoot;
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
import javax.faces.render.ResponseStateManager;
import javax.faces.render.RenderKitFactory;

import com.sun.faces.spi.SerializationProviderFactory;
import com.sun.faces.spi.SerializationProvider;
import com.sun.faces.config.WebConfiguration;
import com.sun.faces.config.WebConfiguration.BooleanWebContextInitParameter;
import com.sun.faces.util.Util;

import static com.sun.faces.config.WebConfiguration.BooleanWebContextInitParameter.CompressViewState;
import static com.sun.faces.config.WebConfiguration.BooleanWebContextInitParameter.AutoCompleteOffOnViewState;
import com.sun.faces.util.ByteArrayGuardAESCTR;
import com.sun.faces.util.FacesLogger;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.servlet.http.HttpSession;


/**
 * Common code for the default StateHelper implementations.
 */
public abstract class StateHelper {
    
    private static final Logger LOGGER = FacesLogger.APPLICATION.getLogger();

    /**
     * 

* The first portion of the hidden state field. *

* */ protected static final char[] STATE_FIELD_START = (" * The second portion of the hidden state field. *

* */ protected static final char[] FIELD_MIDDLE = ("\" value=\"").toCharArray(); /** *

* The end of the hidden state field. *

*/ protected static final char[] FIELD_END = "\" />".toCharArray(); /** *

* The end of the hidden state field. *

*/ protected static final char[] STATE_FIELD_AUTOCOMPLETE_END = "\" autocomplete=\"off\" />".toCharArray(); /** *

* Factory for serialization streams. These are pluggable via * the WebConfiguration.WebContextInitParameter#SerializationProviderClass. *

*/ protected SerializationProvider serialProvider; /** *

* Access to the context init parameters that configure this application. *

*/ protected WebConfiguration webConfig; /** *

* Flag indicating whether or not view state should be compressed to reduce * the memory/bandwidth footprint. This option is common to both types * of state saving. *

*/ protected boolean compressViewState; /** * This will be used the by the different StateHelper implementations * when writing the start of the state field. */ protected char[] stateFieldStart; /** * This will be used by the different StateHelper implementations * when writing the middle of the state or viewId fields. */ protected char[] fieldMiddle; /** * This will be used the by the different StateHelper implementations * when writing the end of the state or viewId field. This value of this field is * determined by the value of the {@link com.sun.faces.config.WebConfiguration.BooleanWebContextInitParameter#AutoCompleteOffOnViewState} */ protected char[] fieldEnd; /** * Flag determining whether or not javax.faces.ViewState should be namespaced. */ protected boolean namespaceParameters; // ------------------------------------------------------------ Constructors /** * Constructs a new StateHelper instance. */ public StateHelper() { FacesContext ctx = FacesContext.getCurrentInstance(); serialProvider = SerializationProviderFactory .createInstance(ctx.getExternalContext()); webConfig = WebConfiguration.getInstance(ctx.getExternalContext()); compressViewState = webConfig.isOptionEnabled(CompressViewState); stateFieldStart = STATE_FIELD_START; fieldMiddle = FIELD_MIDDLE; fieldEnd = (webConfig.isOptionEnabled(AutoCompleteOffOnViewState) ? STATE_FIELD_AUTOCOMPLETE_END : FIELD_END); if (serialProvider == null) { serialProvider = SerializationProviderFactory .createInstance(FacesContext .getCurrentInstance().getExternalContext()); } namespaceParameters = webConfig.isOptionEnabled( BooleanWebContextInitParameter.NamespaceParameters); } public static void createAndStoreCryptographicallyStrongTokenInSession(HttpSession session) { ByteArrayGuardAESCTR guard = new ByteArrayGuardAESCTR(); String clearText = "" + System.currentTimeMillis(); String result = guard.encrypt(clearText); try { result = URLEncoder.encode(result, "UTF-8"); } catch (UnsupportedEncodingException e) { if (LOGGER.isLoggable(Level.SEVERE)) { LOGGER.log(Level.SEVERE, "Unable to URL encode cryptographically strong token, storing clear text in session instead.", e); } result = clearText; } session.setAttribute(TOKEN_NAME, result); } private static final String TOKEN_NAME = RIConstants.FACES_PREFIX + "TOKEN"; public String getCryptographicallyStrongTokenFromSession(FacesContext context) { String result = (String) context.getExternalContext().getSessionMap().get(TOKEN_NAME); if (null == result) { context.getExternalContext().getSession(true); } result = (String) context.getExternalContext().getSessionMap().get(TOKEN_NAME); return result; } // ---------------------------------------------------------- Public Methods /** *

* Functionally similar to ResponseStateManager#writeState(FacesContext, Object) * with an option to write the state directly to the provided StringBuilder * without sending any markup to the client. *

* * @see ResponseStateManager#writeState(javax.faces.context.FacesContext, java.lang.Object) */ public abstract void writeState(FacesContext ctx, Object state, StringBuilder stateCapture) throws IOException; /** * @see javax.faces.render.ResponseStateManager#getState(javax.faces.context.FacesContext, String) */ public abstract Object getState(FacesContext ctx, String viewId) throws IOException; /** * @see javax.faces.render.ResponseStateManager#isStateless(javax.faces.context.FacesContext, String) */ public abstract boolean isStateless(FacesContext ctx, String viewId) throws IllegalStateException; // ------------------------------------------------------- Protected Methods /** *

Get our view state from this request

* * @param context the FacesContext for the current request * * @return the view state from this request */ protected static String getStateParamValue(FacesContext context) { String pValue = context.getExternalContext().getRequestParameterMap(). get(ResponseStateManager.VIEW_STATE_PARAM); if (pValue != null && pValue.length() == 0) { pValue = null; } return pValue; } /** *

* If a custom RenderKit is used, write out the ID * of the RenderKit out as a hidden field. This will be used * when restoring the view state. *

* @param context the FacesContext for the current request * @param writer the ResponseWriter to write to * @throws IOException if an error occurs writing to the client */ protected void writeRenderKitIdField(FacesContext context, ResponseWriter writer) throws IOException { String result = context.getViewRoot().getRenderKitId(); String defaultRkit = context.getApplication().getDefaultRenderKitId(); if (null == defaultRkit) { defaultRkit = RenderKitFactory.HTML_BASIC_RENDER_KIT; } if (result != null && !defaultRkit.equals(result)) { writer.startElement("input", context.getViewRoot()); writer.writeAttribute("type", "hidden", "type"); String renderKitIdParam = ResponseStateManager.RENDER_KIT_ID_PARAM; UIViewRoot viewRoot = context.getViewRoot(); if ((namespaceParameters) && (viewRoot instanceof NamingContainer)) { String namingContainerId = viewRoot.getContainerClientId(context); if (namingContainerId != null) { renderKitIdParam = namingContainerId + renderKitIdParam; } } writer.writeAttribute("name", renderKitIdParam, "name"); writer.writeAttribute("value", result, "value"); writer.endElement("input"); } } /** * Write the client window state field. * * @param context the Faces context. * @param writer the response writer. * @throws IOException when an I/O error occurs. */ protected void writeClientWindowField(FacesContext context, ResponseWriter writer) throws IOException { ClientWindow window = context.getExternalContext().getClientWindow(); if (null != window) { writer.startElement("input", null); writer.writeAttribute("type", "hidden", null); String clientWindowParam = ResponseStateManager.CLIENT_WINDOW_PARAM; UIViewRoot viewRoot = context.getViewRoot(); if ((namespaceParameters) && (viewRoot instanceof NamingContainer)) { String namingContainerId = viewRoot.getContainerClientId(context); if (namingContainerId != null) { clientWindowParam = namingContainerId + clientWindowParam; } } writer.writeAttribute("name", clientWindowParam, null); writer.writeAttribute("id", Util.getClientWindowId(context), null); writer.writeAttribute("value", window.getId(), null); if (webConfig.isOptionEnabled(AutoCompleteOffOnViewState)) { writer.writeAttribute("autocomplete", "off", null); } writer.endElement("input"); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy