com.linkedin.restli.internal.server.util.RestUtils Maven / Gradle / Ivy
/*
Copyright (c) 2012 LinkedIn Corp.
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.linkedin.restli.internal.server.util;
import com.linkedin.data.DataMap;
import com.linkedin.data.transform.filter.CopyFilter;
import com.linkedin.data.transform.filter.request.MaskTree;
import com.linkedin.jersey.api.uri.UriBuilder;
import com.linkedin.restli.common.CollectionMetadata;
import com.linkedin.restli.common.HttpStatus;
import com.linkedin.restli.common.Link;
import com.linkedin.restli.common.LinkArray;
import com.linkedin.restli.common.RestConstants;
import com.linkedin.restli.internal.server.RestLiInternalException;
import com.linkedin.restli.internal.server.ServerResourceContext;
import com.linkedin.restli.internal.server.model.Parameter;
import com.linkedin.restli.internal.server.model.ResourceMethodDescriptor;
import com.linkedin.restli.server.CollectionResult.PageIncrement;
import com.linkedin.restli.server.InvalidMimeTypeException;
import com.linkedin.restli.server.PagingContext;
import com.linkedin.restli.server.ProjectionMode;
import com.linkedin.restli.server.ResourceContext;
import com.linkedin.restli.server.RestLiServiceException;
import com.linkedin.restli.server.RoutingException;
import java.net.URI;
import java.util.List;
import java.util.Map;
import org.apache.commons.lang.StringUtils;
/**
* @author dellamag
*/
public class RestUtils
{
public static CollectionMetadata buildMetadata(final URI requestUri,
final ResourceContext resourceContext,
final ResourceMethodDescriptor methodDescriptor,
final List> resultElements,
final PageIncrement pageIncrement,
final Integer totalResults)
{
CollectionMetadata metadata = new CollectionMetadata();
List> pagingContextParams =
methodDescriptor.getParametersWithType(Parameter.ParamType.CONTEXT);
PagingContext defaultPagingContext =
pagingContextParams.isEmpty() ? null
: (PagingContext) pagingContextParams.get(0).getDefaultValue();
PagingContext pagingContext = getPagingContext(resourceContext, defaultPagingContext);
metadata.setCount(pagingContext.getCount());
metadata.setStart(pagingContext.getStart());
if (totalResults != null)
{
metadata.setTotal(totalResults);
}
else
{
metadata.removeTotal();
}
LinkArray links = new LinkArray();
String bestEncoding = RestConstants.HEADER_VALUE_APPLICATION_JSON;
if (resourceContext.getRawRequest() != null)
{
bestEncoding = pickBestEncoding(resourceContext.getRequestHeaders().get(RestConstants.HEADER_ACCEPT));
}
//links use count as the step interval, so links don't make sense with count==0
if (pagingContext.getCount() > 0)
{
// prev link
if (pagingContext.getStart() > 0)
{
int prevStart = Math.max(0, pagingContext.getStart() - pagingContext.getCount());
String prevUri =
buildPaginatedUri(requestUri, prevStart, pagingContext.getCount());
Link prevLink = new Link();
prevLink.setRel("prev");
prevLink.setHref(prevUri);
prevLink.setType(bestEncoding);
links.add(prevLink);
}
// next link if there are more results, or we returned a full page
Integer nextStart = getNextPageStart(resultElements.size(), totalResults, pagingContext, pageIncrement);
if (nextStart != null)
{
// R2 doesn't expose host/port => can't build absolute URI (this is ok, as
// relative URIs internally
String nextUri =
buildPaginatedUri(requestUri, nextStart, pagingContext.getCount());
Link nextLink = new Link();
nextLink.setRel("next");
nextLink.setHref(nextUri);
nextLink.setType(bestEncoding);
links.add(nextLink);
}
metadata.setLinks(links);
}
return metadata;
}
private static Integer getNextPageStart(int elementsOnCurrentPage,
final Integer totalResults,
PagingContext pagingContext,
final PageIncrement pageIncrement)
{
if(pageIncrement == PageIncrement.RELATIVE)
{
if ((totalResults != null && (pagingContext.getStart() + elementsOnCurrentPage < totalResults))
|| (elementsOnCurrentPage == pagingContext.getCount()))
{
return pagingContext.getStart() + elementsOnCurrentPage;
}
else
{
return null; // no next page
}
}
else if (pageIncrement == PageIncrement.FIXED)
{
if(totalResults == null) throw new IllegalStateException("'total' must be non-null when PageIncrement is FIXED"); // this is also checked by the CollectionResult constructor
if(pagingContext.getStart() + pagingContext.getCount() < totalResults)
{
return pagingContext.getStart() + pagingContext.getCount();
}
else
{
return null; // no next page
}
}
else
{
throw new IllegalStateException("Unrecognized enumeration value: " + pageIncrement);
}
}
private static String buildPaginatedUri(final URI requestUri,
final int start,
final Integer count)
{
UriBuilder builder = UriBuilder.fromUri(requestUri);
builder.replaceQueryParam("start", String.valueOf(start));
builder.replaceQueryParam("count", String.valueOf(count));
return builder.build().toString();
}
public static PagingContext getPagingContext(final ResourceContext context,
final PagingContext defaultContext)
{
String startString =
ArgumentUtils.argumentAsString(context.getParameter(RestConstants.START_PARAM), RestConstants.START_PARAM);
String countString =
ArgumentUtils.argumentAsString(context.getParameter(RestConstants.COUNT_PARAM),
RestConstants.COUNT_PARAM);
try
{
int defaultStart =
defaultContext == null ? RestConstants.DEFAULT_START
: defaultContext.getStart();
int defaultCount =
defaultContext == null ? RestConstants.DEFAULT_COUNT
: defaultContext.getCount();
int start =
startString == null || StringUtils.isEmpty(startString.trim()) ? defaultStart
: Integer.parseInt(startString);
int count =
countString == null || StringUtils.isEmpty(countString.trim()) ?
defaultCount : Integer.parseInt(countString);
if (count < 0 || start < 0)
{
throw new RoutingException("start/count parameters must be non-negative", 400);
}
return new PagingContext(start, count, startString != null, countString != null);
}
catch (NumberFormatException e)
{
throw new RoutingException("Invalid (non-integer) start/count parameters", 400);
}
}
public static String pickBestEncoding(String acceptHeader)
{
if (acceptHeader == null || acceptHeader.isEmpty())
return RestConstants.HEADER_VALUE_APPLICATION_JSON;
try
{
return MIMEParse.bestMatch(RestConstants.SUPPORTED_MIME_TYPES, acceptHeader);
}
// Handle the case when an accept MIME type that was passed in along with the
// request is invalid.
catch (InvalidMimeTypeException e)
{
throw new RestLiServiceException(HttpStatus.S_400_BAD_REQUEST,
String.format("Encountered invalid MIME type '%s' in accept header.",
e.getType()));
}
}
/**
* Filter input {@link DataMap} by the projection mask from the input
* {@link ResourceContext}.
*
* @param dataMap {@link DataMap} to filter
* @param resourceContext {@link ResourceContext} to get the projection mask from
* @return filtered DataMap. Empty one if the projection mast specifies no fields.
*/
public static DataMap projectFields(final DataMap dataMap,
final ResourceContext resourceContext)
{
if (resourceContext.getProjectionMode() == ProjectionMode.MANUAL)
{
return dataMap;
}
final MaskTree filter = resourceContext.getProjectionMask();
if (filter == null)
{
return dataMap;
}
final DataMap filterMap = filter.getDataMap();
//Special-case: when present, an empty filter should not return any fields.
if (filter.getDataMap().isEmpty())
{
return EMPTY_DATAMAP;
}
try
{
return (DataMap) new CopyFilter().filter(dataMap, filterMap);
}
catch (Exception e)
{
throw new RestLiInternalException("Error projecting fields", e);
}
}
/**
* Validate request headers.
*
* @param headers
* Request headers.
* @throws RestLiServiceException
* if any of the headers are invalid.
*/
public static void validateRequestHeadersAndUpdateResourceContext(final Map headers,
ServerResourceContext resourceContext)
{
// Validate whether the accept headers have at least one type that we support.
// Fail the validation if we will be unable to support the requested accept type.
String mimeType = pickBestEncoding(headers.get(RestConstants.HEADER_ACCEPT));
if (StringUtils.isEmpty(mimeType))
{
throw new RestLiServiceException(HttpStatus.S_406_NOT_ACCEPTABLE,
"None of the types in the request's 'Accept' header are supported. Supported MIME types are: "
+ RestConstants.SUPPORTED_MIME_TYPES);
}
else
{
resourceContext.setResponseMimeType(mimeType);
}
// Do other header validation here....
}
private static final DataMap EMPTY_DATAMAP = new DataMap();
static
{
EMPTY_DATAMAP.makeReadOnly();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy