Package org.apache.wicket.protocol.http.request.urlcompressing

Source Code of org.apache.wicket.protocol.http.request.urlcompressing.UrlCompressingWebCodingStrategy

/*
* 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.wicket.protocol.http.request.urlcompressing;

import org.apache.wicket.Component;
import org.apache.wicket.IPageMap;
import org.apache.wicket.IRedirectListener;
import org.apache.wicket.Page;
import org.apache.wicket.RequestCycle;
import org.apache.wicket.RequestListenerInterface;
import org.apache.wicket.markup.html.WebPage;
import org.apache.wicket.protocol.http.request.WebRequestCodingStrategy;
import org.apache.wicket.request.RequestParameters;
import org.apache.wicket.request.target.component.listener.IListenerInterfaceRequestTarget;
import org.apache.wicket.util.string.AppendingStringBuffer;


/**
* Use this CodingStategy with the
* {@link WebURLCompressingTargetResolverStrategy} to minimize the
* wicket:interface urls. The component path and the interface name will be
* removed from the url and only an uid will be inserted into the url.
*
* Use it like this:
*
* <pre>
* protected IRequestCycleProcessor newRequestCycleProcessor()
* {
*   return new UrlCompressingWebRequestProcessor();
* }
* </pre>
*
* @author jcompagner
*
* @since 1.3
*/
public class UrlCompressingWebCodingStrategy extends WebRequestCodingStrategy
{
  /**
   * Encode a listener interface target.
   *
   * @param requestCycle
   *            the current request cycle
   * @param requestTarget
   *            the target to encode
   * @return the encoded url
   */
  protected CharSequence encode(RequestCycle requestCycle,
      IListenerInterfaceRequestTarget requestTarget)
  {
    final RequestListenerInterface rli = requestTarget.getRequestListenerInterface();

    // Start string buffer for url
    final AppendingStringBuffer url = new AppendingStringBuffer(64);
    url.append('?');
    url.append(INTERFACE_PARAMETER_NAME);
    url.append('=');

    // Get component and page for request target
    final Component component = requestTarget.getTarget();
    final Page page = component.getPage();

    // Add pagemap
    final IPageMap pageMap = page.getPageMap();
    if (!pageMap.isDefault())
    {
      url.append(pageMap.getName());
    }
    url.append(Component.PATH_SEPARATOR);

    String listenerName = rli.getName();
    // Add path to component
    if (page instanceof WebPage && !"IResourceListener".equals(listenerName))
    {
      url.append(page.getId());
      url.append(Component.PATH_SEPARATOR);
      url.append(((WebPage)page).getUrlCompressor().getUIDForComponentAndInterface(component,
          listenerName));
      listenerName = null;
    }
    else
    {
      url.append(component.getPath());
    }
    url.append(Component.PATH_SEPARATOR);

    // Add version
    final int versionNumber = component.getPage().getCurrentVersionNumber();
    if (!rli.getRecordsPageVersion())
    {
      url.append(Page.LATEST_VERSION);
    }
    else if (versionNumber > 0)
    {
      url.append(versionNumber);
    }
    url.append(Component.PATH_SEPARATOR);

    // Add listener interface
    if (listenerName != null && !IRedirectListener.INTERFACE.getName().equals(listenerName))
    {
      url.append(listenerName);
    }

    url.append(Component.PATH_SEPARATOR);

    // Add behaviourId
    RequestParameters params = requestTarget.getRequestParameters();
    if (params != null && params.getBehaviorId() != null)
    {
      url.append(params.getBehaviorId());
    }
    url.append(Component.PATH_SEPARATOR);
   
    // Add URL depth
    if (params != null && params.getUrlDepth() != 0)
    {
      url.append(params.getUrlDepth());
    }
    return requestCycle.getOriginalResponse().encodeURL(url);
  }
}
TOP

Related Classes of org.apache.wicket.protocol.http.request.urlcompressing.UrlCompressingWebCodingStrategy

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.