All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juneau.rest.httppart.RequestFormParams Maven / Gradle / Ivy

// ***************************************************************************************************************************
// * 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.juneau.rest.httppart;

import static java.util.stream.Collectors.*;
import static org.apache.juneau.common.internal.ArgUtils.*;
import static org.apache.juneau.common.internal.StringUtils.*;
import static org.apache.juneau.httppart.HttpPartType.*;
import static org.apache.juneau.internal.ClassUtils.*;
import static org.apache.juneau.internal.CollectionUtils.*;

import java.util.*;
import java.util.stream.*;

import jakarta.servlet.http.*;

import org.apache.http.*;
import org.apache.juneau.*;
import org.apache.juneau.collections.*;
import org.apache.juneau.common.internal.*;
import org.apache.juneau.http.*;
import org.apache.juneau.http.header.*;
import org.apache.juneau.http.part.*;
import org.apache.juneau.httppart.*;
import org.apache.juneau.rest.*;
import org.apache.juneau.rest.util.*;
import org.apache.juneau.svl.*;

/**
 * Represents the parsed form-data parameters in an HTTP request.
 *
 * 

* The {@link RequestFormParams} object is the API for accessing the HTTP request content as form data. * It can be accessed by passing it as a parameter on your REST Java method: *

*

* @RestPost(...) * public Object myMethod(RequestFormParams formData) {...} *

* *
Example:
*

* @RestPost(...) * public Object myMethod(RequestFormParams formData) { * * // Get query parameters converted to various types. * int p1 = formData.get("p1").asInteger().orElse(0); * String p2 = formData.get("p2").orElse(null); * UUID p3 = formData.get("p3").as(UUID.class).orElse(null); * } *

* *

* Note that this object does NOT take GET parameters into account and only returns values found in the content of the request. *

* *

* Some important methods on this class are: *

*
    *
  • {@link RequestFormParams} *
      *
    • Methods for retrieving form data parameters: *
        *
      • {@link RequestFormParams#contains(String) contains(String)} *
      • {@link RequestFormParams#containsAny(String...) containsAny(String...)} *
      • {@link RequestFormParams#get(Class) get(Class)} *
      • {@link RequestFormParams#get(String) get(String)} *
      • {@link RequestFormParams#getAll(String) getAll(String)} *
      • {@link RequestFormParams#getFirst(String) getFirst(String)} *
      • {@link RequestFormParams#getLast(String) getLast(String)} *
      *
    • Methods overridding form data parameters: *
        *
      • {@link RequestFormParams#add(NameValuePair...) add(NameValuePair...)} *
      • {@link RequestFormParams#add(Part) add(Part)} *
      • {@link RequestFormParams#add(String,Object) add(String,Object)} *
      • {@link RequestFormParams#addDefault(List) addDefault(List)} *
      • {@link RequestFormParams#addDefault(NameValuePair...) addDefault(NameValuePair...)} *
      • {@link RequestFormParams#addDefault(String,String) addDefault(String,String)} *
      • {@link RequestFormParams#remove(String) remove(String)} *
      • {@link RequestFormParams#set(NameValuePair...) set(NameValuePair...)} *
      • {@link RequestFormParams#set(String,Object) set(String,Object)} *
      *
    • Other methods: *
        *
      • {@link RequestFormParams#asQueryString() asQueryString()} *
      • {@link RequestFormParams#copy() copy()} *
      • {@link RequestFormParams#isEmpty() isEmpty()} *
      *
    *
* *
See Also:
    *
  • {@link RequestFormParam} *
  • {@link org.apache.juneau.http.annotation.FormData} *
  • {@link org.apache.juneau.http.annotation.HasFormData} *
*/ public class RequestFormParams extends ArrayList { private static final long serialVersionUID = 1L; private final RestRequest req; private boolean caseSensitive; private HttpPartParserSession parser; private final VarResolverSession vs ; /** * Constructor. * * @param req The request creating this bean. * @param caseSensitive Whether case-sensitive name matching is enabled. * @throws Exception Any exception can be thrown. */ public RequestFormParams(RestRequest req, boolean caseSensitive) throws Exception { this.req = req; this.caseSensitive = caseSensitive; this.vs = req.getVarResolverSession(); Map m = null; Collection c = null; RequestContent content = req.getContent(); if (content.isLoaded() || ! req.getHeader(ContentType.class).orElse(ContentType.NULL).equalsIgnoreCase("multipart/form-data")) m = RestUtils.parseQuery(content.getReader()); else { c = req.getHttpServletRequest().getParts(); if (c == null || c.isEmpty()) m = req.getHttpServletRequest().getParameterMap(); } if (m != null) { for (Map.Entry e : m.entrySet()) { String name = e.getKey(); String[] values = e.getValue(); if (values == null) values = new String[0]; // Fix for behavior difference between Tomcat and WAS. // getParameter("foo") on "&foo" in Tomcat returns "". // getParameter("foo") on "&foo" in WAS returns null. if (values.length == 1 && values[0] == null) values[0] = ""; if (values.length == 0) values = new String[]{null}; for (String value : values) add(new RequestFormParam(req, name, value)); } } else if (c != null) { c.stream().forEach(this::add); } } /** * Copy constructor. */ private RequestFormParams(RequestFormParams copyFrom) { req = copyFrom.req; caseSensitive = copyFrom.caseSensitive; parser = copyFrom.parser; addAll(copyFrom); vs = copyFrom.vs; } /** * Subset constructor. */ private RequestFormParams(RequestFormParams copyFrom, String...names) { this.req = copyFrom.req; caseSensitive = copyFrom.caseSensitive; parser = copyFrom.parser; vs = copyFrom.vs; for (String n : names) copyFrom.stream().filter(x -> eq(x.getName(), n)).forEach(this::add); } /** * Sets the parser to use for part values. * * @param value The new value for this setting. * @return This object. */ public RequestFormParams parser(HttpPartParserSession value) { this.parser = value; forEach(x -> x.parser(parser)); return this; } /** * Sets case sensitivity for names in this list. * * @param value The new value for this setting. * @return This object (for method chaining). */ public RequestFormParams caseSensitive(boolean value) { this.caseSensitive = value; return this; } //----------------------------------------------------------------------------------------------------------------- // Basic operations. //----------------------------------------------------------------------------------------------------------------- /** * Adds default entries to these parameters. * *

* Similar to {@link #set(String, Object)} but doesn't override existing values. * * @param pairs * The default entries. *
Can be null. * @return This object. */ public RequestFormParams addDefault(List pairs) { for (NameValuePair p : pairs) { String name = p.getName(); Stream l = stream(name); boolean hasAllBlanks = l.allMatch(x -> StringUtils.isEmpty(x.getValue())); if (hasAllBlanks) { removeAll(getAll(name)); add(new RequestFormParam(req, name, vs.resolve(p.getValue()))); } } return this; } /** * Adds default entries to these parameters. * *

* Similar to {@link #set(String, Object)} but doesn't override existing values. * * @param pairs * The default entries. *
Can be null. * @return This object. */ public RequestFormParams addDefault(NameValuePair...pairs) { return addDefault(alist(pairs)); } /** * Adds a default entry to the form data parameters. * * @param name The name. * @param value The value. * @return This object. */ public RequestFormParams addDefault(String name, String value) { return addDefault(BasicStringPart.of(name, value)); } /** * Adds a parameter value. * *

* Parameter is added to the end. *
Existing parameter with the same name are not changed. * * @param name The parameter name. Must not be null. * @param value The parameter value. * @return This object. */ public RequestFormParams add(String name, Object value) { assertArgNotNull("name", name); add(new RequestFormParam(req, name, stringify(value)).parser(parser)); return this; } /** * Adds request parameter values. * *

* Parameters are added to the end. *
Existing parameters with the same name are not changed. * * @param parameters The parameter objects. Must not be null. * @return This object. */ public RequestFormParams add(NameValuePair...parameters) { assertArgNotNull("parameters", parameters); for (NameValuePair p : parameters) if (p != null) add(p.getName(), p.getValue()); return this; } /** * Adds a parameter value. * *

* Parameter is added to the end. *
Existing parameter with the same name are not changed. * * @param part The parameter part. Must not be null. * @return This object. */ public RequestFormParams add(Part part) { assertArgNotNull("part", part); add(new RequestFormParam(req, part).parser(parser)); return this; } /** * Sets a parameter value. * *

* Parameter is added to the end. *
Any previous parameters with the same name are removed. * * @param name The parameter name. Must not be null. * @param value * The parameter value. *
Converted to a string using {@link Object#toString()}. *
Can be null. * @return This object. */ public RequestFormParams set(String name, Object value) { assertArgNotNull("name", name); set(new RequestFormParam(req, name, stringify(value)).parser(parser)); return this; } /** * Sets request header values. * *

* Parameters are added to the end of the headers. *
Any previous parameters with the same name are removed. * * @param parameters The parameters to set. Must not be null or contain null. * @return This object. */ public RequestFormParams set(NameValuePair...parameters) { assertArgNotNull("headers", parameters); for (NameValuePair p : parameters) remove(p); for (NameValuePair p : parameters) add(p); return this; } /** * Remove parameters. * * @param name The parameter names. Must not be null. * @return This object. */ public RequestFormParams remove(String name) { assertArgNotNull("name", name); removeIf(x -> eq(x.getName(), name)); return this; } /** * Returns a copy of this object but only with the specified param names copied. * * @param names The list to include in the copy. * @return A new list object. */ public RequestFormParams subset(String...names) { return new RequestFormParams(this, names); } //----------------------------------------------------------------------------------------------------------------- // Convenience getters. //----------------------------------------------------------------------------------------------------------------- /** * Returns true if the parameters with the specified names are present. * * @param name The parameter name. Must not be null. * @return true if the parameters with the specified names are present. */ public boolean contains(String name) { return stream(name).findAny().isPresent(); } /** * Returns true if the parameter with any of the specified names are present. * * @param names The parameter names. Must not be null. * @return true if the parameter with any of the specified names are present. */ public boolean containsAny(String...names) { assertArgNotNull("names", names); for (String n : names) if (stream(n).findAny().isPresent()) return true; return false; } /** * Returns all the parameters with the specified name. * * @param name The parameter name. * @return The list of all parameters with the specified name, or an empty list if none are found. */ public List getAll(String name) { return stream(name).collect(toList()); } /** * Returns all headers with the specified name. * * @param name The header name. * @return The stream of all headers with matching names. Never null. */ public Stream stream(String name) { return stream().filter(x -> eq(x.getName(), name)); } /** * Returns all headers in sorted order. * * @return The stream of all headers in sorted order. */ public Stream getSorted() { Comparator x; if (caseSensitive) x = Comparator.comparing(RequestFormParam::getName); else x = (x1,x2) -> String.CASE_INSENSITIVE_ORDER.compare(x1.getName(), x2.getName()); return stream().sorted(x); } /** * Returns all the unique header names in this list. * @return The list of all unique header names in this list. */ public List getNames() { return stream().map(RequestFormParam::getName).map(x -> caseSensitive ? x : x.toLowerCase()).distinct().collect(toList()); } /** * Returns the first parameter with the specified name. * *

* Note that this method never returns null and that {@link RequestFormParam#isPresent()} can be used * to test for the existence of the parameter. * * @param name The parameter name. * @return The parameter. Never null. */ public RequestFormParam getFirst(String name) { assertArgNotNull("name", name); return stream(name).findFirst().orElseGet(()->new RequestFormParam(req, name, null).parser(parser)); } /** * Returns the last parameter with the specified name. * *

* Note that this method never returns null and that {@link RequestFormParam#isPresent()} can be used * to test for the existence of the parameter. * * @param name The parameter name. * @return The parameter. Never null. */ public RequestFormParam getLast(String name) { assertArgNotNull("name", name); Value v = Value.empty(); stream(name).forEach(x -> v.set(x)); return v.orElseGet(() -> new RequestFormParam(req, name, null).parser(parser)); } /** * Returns the last parameter with the specified name. * *

* This is equivalent to {@link #getLast(String)}. * * @param name The parameter name. * @return The parameter value, or {@link Optional#empty()} if it doesn't exist. */ public RequestFormParam get(String name) { List l = getAll(name); if (l.isEmpty()) return new RequestFormParam(req, name, null).parser(parser); if (l.size() == 1) return l.get(0); StringBuilder sb = new StringBuilder(128); for (int i = 0, j = l.size(); i < j; i++) { if (i > 0) sb.append(", "); sb.append(l.get(i).getValue()); } return new RequestFormParam(req, name, sb.toString()).parser(parser); } /** * Returns the form data parameter as the specified bean type. * *

* Type must have a name specified via the {@link org.apache.juneau.http.annotation.FormData} annotation * and a public constructor that takes in either value or name,value as strings. * * @param The bean type to create. * @param type The bean type to create. * @return The bean, never null. */ public Optional get(Class type) { ClassMeta cm = req.getBeanSession().getClassMeta(type); String name = HttpParts.getName(FORMDATA, cm).orElseThrow(()->new BasicRuntimeException("@FormData(name) not found on class {0}", className(type))); return get(name).as(type); } //----------------------------------------------------------------------------------------------------------------- // Other methods //----------------------------------------------------------------------------------------------------------------- /** * Converts this object to a query string. * *

* Returned query string does not start with '?'. * * @return A new query string, or an empty string if this object is empty. */ public String asQueryString() { StringBuilder sb = new StringBuilder(); for (RequestFormParam e : this) { if (sb.length() > 0) sb.append("&"); sb.append(urlEncode(e.getName())).append('=').append(urlEncode(e.getValue())); } return sb.toString(); } /** * Makes a copy of these parameters. * * @return A new parameters object. */ public RequestFormParams copy() { return new RequestFormParams(this); } private boolean eq(String s1, String s2) { if (caseSensitive) return StringUtils.eq(s1, s2); return StringUtils.eqic(s1, s2); } @Override /* Object */ public String toString() { JsonMap m = new JsonMap(); for (String n : getNames()) m.put(n, get(n).asString().orElse(null)); return m.asJson(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy