/* * Licensed to Jasig under one or more contributor license * agreements. See the NOTICE file distributed with this work * for additional information regarding copyright ownership. * Jasig 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 the following location: * * 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.jasig.cas.web.flow; import java.util.LinkedHashMap; import java.util.Map; import org.springframework.webflow.context.servlet.DefaultFlowUrlHandler; import org.springframework.webflow.core.collection.AttributeMap; import javax.servlet.http.HttpServletRequest; /** * Provides special handling for parameters in requests made to the CAS login * webflow. * * @author Scott Battaglia * @since 3.4 */ public final class CasDefaultFlowUrlHandler extends DefaultFlowUrlHandler { /** Default flow execution key parameter name, {@value}. Same as that used by {@link DefaultFlowUrlHandler}. */ public static final String DEFAULT_FLOW_EXECUTION_KEY_PARAMETER = "execution"; /** Flow execution parameter name. */ private String flowExecutionKeyParameter = DEFAULT_FLOW_EXECUTION_KEY_PARAMETER; /** * Sets the parameter name used to carry flow execution key in request. * * @param parameterName Request parameter name. */ public void setFlowExecutionKeyParameter(final String parameterName) { this.flowExecutionKeyParameter = parameterName; } /** * Get the flow execution key. * * @param request the current HTTP servlet request. * @return the flow execution key. */ public String getFlowExecutionKey(final HttpServletRequest request) { return request.getParameter(flowExecutionKeyParameter); } @Override public String createFlowExecutionUrl(final String flowId, final String flowExecutionKey, final HttpServletRequest request) { final StringBuffer builder = new StringBuffer(); builder.append(request.getRequestURI()); builder.append("?"); @SuppressWarnings("unchecked") final Map<String, Object> flowParams = new LinkedHashMap<String, Object>(request.getParameterMap()); flowParams.put(this.flowExecutionKeyParameter, flowExecutionKey); appendQueryParameters(builder, flowParams, getEncodingScheme(request)); return builder.toString(); } @Override public String createFlowDefinitionUrl(final String flowId, final AttributeMap input, final HttpServletRequest request) { return request.getRequestURI() + (request.getQueryString() != null ? "?" + request.getQueryString() : ""); } }