This is a patched version of RawRequestParameterModule so that it returns URLencoded request parameters.
The docs say that whats this module is supposed to do, and I'm shure it did/does in some circumstances.
I'm trying to do a proper patch entry in bugzilla to, but I thought the patch might be discussed here first.
Regards, /Joakim
/*
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modifica-
tion, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. The end-user documentation included with the redistribution, if any, must
include the following acknowledgment: "This product includes software
developed by the Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the
Apache Software Foundation.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation and was originally created by
Stefano Mazzocchi <[EMAIL PROTECTED]>. For more information on the Apache
Software Foundation, please see <http://www.apache.org/>.
*/
package org.apache.cocoon.components.modules.input;
import org.apache.avalon.framework.configuration.Configuration;
import org.apache.avalon.framework.configuration.ConfigurationException;
import org.apache.avalon.framework.thread.ThreadSafe;
import org.apache.cocoon.environment.ObjectModelHelper;
import java.util.Iterator;
import java.util.Map;
import java.util.Vector;
/**
* RawRequestParameterModule accesses request parameters without
* decoding or casting. It uses the get() method instead of the getParameter()
* method of the [EMAIL PROTECTED] org.apache.cocoon.environment.Request Request} This
is useful
* for example in conjunction with uploads.
* If get() returns a Vector, getAttribute() will return the first element, otherwise
it
* will return the same as get(). getAttributeValues() will either convert the Vector
to an array,
* place the result in a new array, or return the array as is.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Christian Haul</a>
* @version CVS $Id: RawRequestParameterModule.java,v 1.1 2003/03/09 00:09:03 pier Exp
$
*/
public class RawRequestParameterModule extends AbstractInputModule implements
ThreadSafe {
public Object getAttribute( String name, Configuration modeConf, Map objectModel )
throws ConfigurationException {
String pname = (String) this.settings.get("parameter",name);
if ( modeConf != null ) {
pname = modeConf.getAttribute( "parameter", pname );
// preferred
pname = modeConf.getChild("parameter").getValue(pname);
}
Object obj = ObjectModelHelper.getRequest(objectModel).getParameter( pname
);//jave
if (obj instanceof Vector) {
return java.net.URLEncoder.encode((String)((Vector) obj).firstElement());
} else {//JAVE hack
return java.net.URLEncoder.encode((String)obj);
}
}
public Iterator getAttributeNames( Configuration modeConf, Map objectModel )
throws ConfigurationException {
return new
IteratorHelper(ObjectModelHelper.getRequest(objectModel).getParameterNames());
}
public Object[] getAttributeValues( String name, Configuration modeConf, Map
objectModel )
throws ConfigurationException {
Object obj = getAttribute(name, modeConf, objectModel);
if (obj instanceof Vector) {
return ((Vector)obj).toArray();
} else if (obj.getClass().isArray()) {
return (Object[]) obj;
} else {
Object[] tmp = new Object[1];
tmp[0] = obj;
return tmp;
}
}
}
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
