FormUrlEncodedHttpServletRequest.java
/*
* GovWay - A customizable API Gateway
* https://govway.org
*
* Copyright (c) 2005-2024 Link.it srl (https://link.it).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package org.openspcoop2.pdd.services.connector;
import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import javax.mail.internet.ContentType;
import javax.servlet.ReadListener;
import javax.servlet.ServletInputStream;
import javax.servlet.http.HttpServletRequest;
import org.openspcoop2.utils.Utilities;
import org.openspcoop2.utils.UtilsException;
import org.openspcoop2.utils.resources.Charset;
import org.openspcoop2.utils.transport.TransportUtils;
import org.openspcoop2.utils.transport.http.WrappedHttpServletRequest;
/**
* FormUrlEncodedHttpServletRequest
*
* @author Poli Andrea (apoli@link.it)
* @author $Author$
* @version $Rev$, $Date$
*/
public class FormUrlEncodedHttpServletRequest extends WrappedHttpServletRequest {
/*
* NOTA: da Wilfdly 8.1 questa servlet deve essere abilitata nella configurazione:
* In the standalone/configuration/standalone.xml file change the servlet-container XML element so that it has the attribute allow-non-standard-wrappers="true".
*
* <servlet-container name="default" allow-non-standard-wrappers="true">
* ...
* </servlet-container>
**/
private static final String CONTENT_TYPE_FORM_URL_ENCODED = "application/x-www-form-urlencoded";
public static boolean isFormUrlEncodedRequest(HttpServletRequest httpServletRequest) {
String ct = httpServletRequest.getContentType();
try {
String baseType = readBaseType(ct);
if(CONTENT_TYPE_FORM_URL_ENCODED.equalsIgnoreCase(baseType)) {
return true;
}
}catch(Exception e) {
}
return false;
}
public static HttpServletRequest convert(HttpServletRequest httpServletRequest) {
String ct = httpServletRequest.getContentType();
try {
String baseType = readBaseType(ct);
if(CONTENT_TYPE_FORM_URL_ENCODED.equalsIgnoreCase(baseType)) {
return new FormUrlEncodedHttpServletRequest(httpServletRequest);
}
}catch(Exception e) {
}
return httpServletRequest;
}
private static String readBaseType(String ct) throws UtilsException {
if(ct==null || "".equals(ct)) {
throw new UtilsException("Content-Type not defined");
}
String baseType = null;
try {
ContentType ctObject = new ContentType(ct);
baseType = ctObject.getBaseType();
}catch(Exception e) {
throw new UtilsException("Content-Type ["+ct+"] (parsing error): "+e.getMessage(),e);
}
return baseType;
}
private byte[] content;
private Map<String, List<String>> properties;
public FormUrlEncodedHttpServletRequest(HttpServletRequest httpServletRequest) throws UtilsException{
super(httpServletRequest);
String ct = httpServletRequest.getContentType();
String baseType = null;
try {
baseType = readBaseType(ct);
}catch(Exception e) {
}
if(CONTENT_TYPE_FORM_URL_ENCODED.equalsIgnoreCase(baseType)==false) {
throw new UtilsException("Content-Type ["+ct+"] non supportato");
}
try {
InputStream is = httpServletRequest.getInputStream();
if(is!=null) {
this.content = Utilities.getAsByteArray(is);
}
}catch(Exception e) {
throw new UtilsException("Content-Type ["+ct+"] read stream error: "+e.getMessage(),e);
}
java.util.Enumeration<?> en = httpServletRequest.getParameterNames();
this.properties = new HashMap<>();
while(en.hasMoreElements()){
String nomeProperty = (String)en.nextElement();
String [] s = httpServletRequest.getParameterValues(nomeProperty);
List<String> values = new ArrayList<>();
if(s!=null && s.length>0) {
for (int i = 0; i < s.length; i++) {
String value = s[i];
values.add(value);
//logCore.info("Parameter ["+nomeProperty+"] valore-"+i+" ["+value+"]");
}
}
else {
//logCore.info("Parameter ["+nomeProperty+"] valore ["+req.getParameter(nomeProperty)+"]");
values.add(httpServletRequest.getParameter(nomeProperty));
}
this.properties.put(nomeProperty, values);
}
if(this.properties.isEmpty() && this.content!=null && this.content.length>0) {
// su wildfly non vengono ritornati i parameters name
/*
* application/x-www-form-urlencoded:
* the keys and values are encoded in key-value tuples separated by '&', with a '=' between the key and the value.
* Non-alphanumeric characters in both keys and values are percent encoded
**/
String contentUrlEncoding = new String(this.content);
// StringBuilder sbProperties = new StringBuilder();
if(contentUrlEncoding.contains("&")) {
String [] tmp = contentUrlEncoding.split("&");
if(tmp!=null && tmp.length>0) {
for (String pUrlEncoding : tmp) {
// if(sbProperties.length()>0) {
// sbProperties.append("\n");
// }
String contentUrlDecoding = org.springframework.web.util.UriUtils.decode( pUrlEncoding, Charset.UTF_8.getValue());
// sbProperties.append(contentUrlDecoding);
addParameter(contentUrlDecoding);
}
}
}
else {
String contentUrlDecoding = org.springframework.web.util.UriUtils.decode( contentUrlEncoding, Charset.UTF_8.getValue());
// sbProperties.append(contentUrlDecoding);
addParameter(contentUrlDecoding);
}
/*
if(sbProperties.length()>0) {
try (ByteArrayInputStream bin = new ByteArrayInputStream(sbProperties.toString().getBytes())) {
Properties pTmp = new Properties();
pTmp.load(bin);
if(pTmp.size()>0) {
Enumeration<Object> enKeys = pTmp.keys();
while (enKeys.hasMoreElements()) {
Object oKey = (Object) enKeys.nextElement();
if(oKey instanceof String) {
String key = (String) oKey;
TransportUtils.addParameter(this.properties, key, pTmp.getProperty(key));
}
}
}
}catch(Throwable t) {}
}
*/
}
}
private void addParameter(String line) {
if(line!=null) {
if(line.contains("=")) {
int indexOf = line.indexOf("=");
if(indexOf>0 && indexOf<(line.length()-1)) {
String key = line.substring(0, indexOf);
String value = line.substring(indexOf+1);
TransportUtils.addParameter(this.properties, key, value);
}
}
}
}
// Metodi modificati nei risultati
@Override
public int getContentLength() {
if(this.content!=null) {
return this.content.length;
}
return 0;
}
@Override
public String getContentType() {
return this.httpServletRequest.getContentType();
}
@Override
public ServletInputStream getInputStream() throws IOException {
if(this.content!=null) {
try {
return new FormUrlEncodedServletInputStream(new ByteArrayInputStream(this.content));
}catch(Exception e) {
throw new IOException(e.getMessage(),e);
}
}
return null;
}
@Override
public BufferedReader getReader() throws IOException {
if(this.content!=null) {
return new BufferedReader(new InputStreamReader(new ByteArrayInputStream(this.content), this.httpServletRequest.getCharacterEncoding()));
}
return null;
}
@Override
public String getParameter(String key) {
return null;
}
@Override
public Map<java.lang.String,java.lang.String[]> getParameterMap() {
return new HashMap<java.lang.String,java.lang.String[]>();
}
@Override
public Enumeration<String> getParameterNames() {
return Collections.emptyEnumeration();
}
@Override
public String[] getParameterValues(String arg0) {
return null;
}
@Deprecated
public String getFormUrlEncodedParameter(String key) {
return getFormUrlEncodedParameter_compactMultipleValues(key);
}
public String getFormUrlEncodedParameter_compactMultipleValues(String key) {
return TransportUtils.getObjectAsString(this.properties, key);
}
public List<String> getFormUrlEncodedParameterValues(String key) {
return TransportUtils.getRawObject(this.properties, key);
}
public String getFormUrlEncodedParameterFirstValue(String key) {
List<String> l = TransportUtils.getRawObject(this.properties, key);
if(l!=null && !l.isEmpty()) {
return l.get(0);
}
return null;
}
public Iterator<String> getFormUrlEncodedParameterNames() {
return this.properties.keySet().iterator();
}
public Map<String, List<String>> getFormUrlEncodedParametersValues(){
return this.properties;
}
}
class FormUrlEncodedServletInputStream extends ServletInputStream {
private InputStream is;
public FormUrlEncodedServletInputStream(InputStream is) {
this.is = is;
}
@Override
public int readLine(byte[] b, int off, int len) throws IOException {
return this.is.read(b, off, len);
}
@Override
public int read() throws IOException {
return this.is.read();
}
@Override
public int read(byte[] b) throws IOException {
return this.is.read(b);
}
@Override
public int read(byte[] b, int off, int len) throws IOException {
return this.is.read(b, off, len);
}
@Override
public long skip(long n) throws IOException {
return this.is.skip(n);
}
@Override
public int available() throws IOException {
return this.is.available();
}
@Override
public void close() throws IOException {
this.is.close();
}
@Override
public synchronized void mark(int readlimit) {
this.is.mark(readlimit);
}
@Override
public synchronized void reset() throws IOException {
this.is.reset();
}
@Override
public boolean markSupported() {
return this.is.markSupported();
}
@Override
public boolean isFinished() {
return false;
}
@Override
public boolean isReady() {
return true;
}
@Override
public void setReadListener(ReadListener arg0) {
}
}