com.google.api.server.spi.request.RestServletRequestParamReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of endpoints-framework Show documentation
Show all versions of endpoints-framework Show documentation
A framework for building RESTful web APIs.
/*
* Copyright 2016 Google Inc. All Rights Reserved.
*
* Licensed 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 com.google.api.server.spi.request;
import com.google.api.server.spi.EndpointMethod;
import com.google.api.server.spi.IoUtil;
import com.google.api.server.spi.Strings;
import com.google.api.server.spi.config.model.ApiMethodConfig;
import com.google.api.server.spi.config.model.ApiParameterConfig;
import com.google.api.server.spi.config.model.ApiSerializationConfig;
import com.google.api.server.spi.response.BadRequestException;
import com.google.common.collect.ImmutableMap;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.Enumeration;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
/**
* A {@link ParamReader} which reads parameters from a JSON-REST request. That is, instead of just
* looking in the JSON body, it also looks at path and query parameters. This is mainly for use
* with {@link com.google.api.server.spi.EndpointsServlet}, and tries to emulate existing behavior
* by stuffing path and query parameters into the main request body.
*/
public class RestServletRequestParamReader extends ServletRequestParamReader {
private static final Logger logger = Logger
.getLogger(RestServletRequestParamReader.class.getName());
private final Map rawPathParameters;
private final Map parameterConfigMap;
public RestServletRequestParamReader(EndpointMethod method,
HttpServletRequest servletRequest, ServletContext servletContext,
ApiSerializationConfig serializationConfig, ApiMethodConfig methodConfig,
Map rawPathParameters) {
super(method, servletRequest, servletContext, serializationConfig);
this.rawPathParameters = rawPathParameters;
ImmutableMap.Builder builder = ImmutableMap.builder();
for (ApiParameterConfig config : methodConfig.getParameterConfigs()) {
if (config.getName() != null) {
builder.put(config.getName(), config);
}
}
this.parameterConfigMap = builder.build();
}
@Override
public Object[] read() throws BadRequestException {
// Assumes input stream to be encoded in UTF-8
// TODO: Take charset from content-type as encoding
try {
EndpointMethod method = getMethod();
if (method.getParameterClasses().length == 0) {
return new Object[0];
}
String requestBody = IoUtil.readRequestBody(servletRequest);
logger.log(Level.FINE, "requestBody=" + requestBody);
// Unlike the Lily protocol, which essentially always requires a JSON body to exist (due to
// path and query parameters being injected into the body), bodies are optional here, so we
// create an empty body and inject named parameters to make deserialize work.
JsonNode node = Strings.isEmptyOrWhitespace(requestBody) ? objectReader.createObjectNode()
: objectReader.readTree(requestBody);
if (!node.isObject()) {
throw new BadRequestException("expected a JSON object body");
}
ObjectNode body = (ObjectNode) node;
Map> parameterMap = getParameterMap(method);
// First add query parameters, then add path parameters. If the parameters already exist in
// the resource, then the they aren't added to the body object. For compatibility reasons,
// the order of precedence is resource field > query parameter > path parameter.
for (Enumeration> e = servletRequest.getParameterNames(); e.hasMoreElements(); ) {
String parameterName = (String) e.nextElement();
if (!body.has(parameterName)) {
Class> parameterClass = parameterMap.get(parameterName);
ApiParameterConfig parameterConfig = parameterConfigMap.get(parameterName);
if (parameterClass != null && parameterConfig.isRepeated()) {
ArrayNode values = (ArrayNode) objectReader.createArrayNode();
for (String value : servletRequest.getParameterValues(parameterName)) {
values.add(value);
}
body.set(parameterName, values);
} else {
body.put(parameterName, servletRequest.getParameterValues(parameterName)[0]);
}
}
}
for (Entry entry : rawPathParameters.entrySet()) {
String parameterName = entry.getKey();
Class> parameterClass = parameterMap.get(parameterName);
if (parameterClass != null && !body.has(parameterName)) {
body.put(parameterName, entry.getValue());
}
}
for (Entry entry : parameterConfigMap.entrySet()) {
if (!body.has(entry.getKey()) && entry.getValue().getDefaultValue() != null) {
body.put(entry.getKey(), entry.getValue().getDefaultValue());
}
}
return deserializeParams(body);
} catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException
| IOException e) {
e.printStackTrace();
throw new BadRequestException(e);
}
}
private static ImmutableMap> getParameterMap(EndpointMethod method)
throws IllegalAccessException, NoSuchMethodException, InvocationTargetException {
ImmutableMap.Builder> builder = ImmutableMap.builder();
List parameterNames = getParameterNames(method);
for (int i = 0; i < parameterNames.size(); i++) {
String parameterName = parameterNames.get(i);
if (parameterName != null) {
builder.put(parameterName, method.getParameterClasses()[i]);
}
}
return builder.build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy