View Javadoc
1   /*
2    * Copyright (c) 2002-2017, Mairie de Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  /*
35   * The Apache Software License, Version 1.1
36   *
37   * Copyright (c) 2003 The Apache Software Foundation.  All rights
38   * reserved.
39   *
40   * Redistribution and use in source and binary forms, with or without
41   * modification, are permitted provided that the following conditions
42   * are met:
43   *
44   * 1. Redistributions of source code must retain the above copyright
45   *    notice, this list of conditions and the following disclaimer.
46   *
47   * 2. Redistributions in binary form must reproduce the above copyright
48   *    notice, this list of conditions and the following disclaimer in
49   *    the documentation and/or other materials provided with the
50   *    distribution.
51   *
52   * 3. The end-user documentation included with the redistribution, if
53   *    any, must include the following acknowlegement:
54   *       "This product includes software developed by the
55   *        Apache Software Foundation (http://www.apache.org/)."
56   *    Alternately, this acknowlegement may appear in the software itself,
57   *    if and wherever such third-party acknowlegements normally appear.
58   *
59   * 4. The names "The Jakarta Project", "Pluto", and "Apache Software
60   *    Foundation" must not be used to endorse or promote products derived
61   *    from this software without prior written permission. For written
62   *    permission, please contact apache@apache.org.
63   *
64   * 5. Products derived from this software may not be called "Apache"
65   *    nor may "Apache" appear in their names without prior written
66   *    permission of the Apache Group.
67   *
68   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
69   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
70   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
71   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
72   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
73   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
74   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
75   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
76   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
77   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
78   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
79   * SUCH DAMAGE.
80   * ====================================================================
81   *
82   * This software consists of voluntary contributions made by many
83   * individuals on behalf of the Apache Software Foundation.  For more
84   * information on the Apache Software Foundation, please see
85   * <http://www.apache.org/>.
86   */
87  package fr.paris.lutece.plugins.jsr168.pluto.servlet;
88  
89  import fr.paris.lutece.plugins.jsr168.pluto.core.PortalURL;
90  
91  import org.apache.pluto.portalImpl.om.window.impl.PortletWindowImpl;
92  
93  import java.util.Collections;
94  import java.util.Enumeration;
95  import java.util.HashMap;
96  import java.util.Map;
97  
98  import javax.servlet.http.HttpServletRequest;
99  import javax.servlet.http.HttpServletRequestWrapper;
100 
101 
102 /**
103  * Http servlet wrapper
104  */
105 public class ServletRequestImpl extends HttpServletRequestWrapper
106 {
107     private final Map _mapParameters;
108 
109     /**
110      * Initialize HTTP servlet wrapper
111      *
112      * @param servletRequest Real servlet wrapper
113      * @param window current portlet window
114      */
115     public ServletRequestImpl( HttpServletRequest servletRequest, PortletWindowImpl window )
116     {
117         super( servletRequest );
118 
119         //get control params
120         Map portletParameters = new HashMap(  );
121 
122         portletParameters.putAll( window.getRenderParameters(  ) );
123 
124         // Get only parameter targetted to portlet 
125         String pid = PortalURL.extractPortletId( (HttpServletRequest) servletRequest );
126         String wid = window.getId(  ).toString(  );
127 
128         if ( wid.equals( pid ) )
129         {
130             for ( Enumeration parameters = super.getParameterNames(  ); parameters.hasMoreElements(  ); )
131             {
132                 String paramName = (String) parameters.nextElement(  );
133                 String[] values = (String[]) portletParameters.get( paramName );
134                 String[] paramValues = (String[]) super.getParameterValues( paramName );
135 
136                 final String[] finalValues;
137 
138                 if ( values != null )
139                 {
140                     finalValues = new String[paramValues.length + values.length];
141                     System.arraycopy( paramValues, 0, finalValues, 0, paramValues.length );
142                     System.arraycopy( values, 0, finalValues, paramValues.length, values.length );
143                 }
144                 else
145                 {
146                     finalValues = paramValues;
147                 }
148 
149                 portletParameters.put( paramName, paramValues );
150             }
151         }
152 
153         _mapParameters = Collections.unmodifiableMap( portletParameters );
154     }
155 
156     /**
157          * @see javax.servlet.ServletRequest#getContentType()
158          */
159     public String getContentType(  )
160     {
161         String contentType = "text/html";
162 
163         if ( getCharacterEncoding(  ) != null )
164         {
165             contentType += ( ";" + getCharacterEncoding(  ) );
166         }
167 
168         return contentType;
169     }
170 
171     /**
172          * @see javax.servlet.ServletRequest#getParameter(java.lang.String)
173          */
174     public String getParameter( String paramName )
175     {
176         final String[] values = (String[]) _mapParameters.get( paramName );
177 
178         if ( values != null )
179         {
180             return values[0];
181         }
182 
183         return null;
184     }
185 
186     /**
187          * @see javax.servlet.ServletRequest#getParameterMap()
188          */
189     public Map getParameterMap(  )
190     {
191         return _mapParameters;
192     }
193 
194     /**
195          * @see javax.servlet.ServletRequest#getParameterNames()
196          */
197     public Enumeration getParameterNames(  )
198     {
199         return Collections.enumeration( _mapParameters.keySet(  ) );
200     }
201 
202     /**
203          * @see javax.servlet.ServletRequest#getParameterValues(java.lang.String)
204          */
205     public String[] getParameterValues( String name )
206     {
207         return (String[]) _mapParameters.get( name );
208     }
209 }