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

org.springframework.web.reactive.resource.PathResourceResolver Maven / Gradle / Ivy

/*
 * Copyright 2002-2018 the original author or authors.
 *
 * 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 org.springframework.web.reactive.resource;

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.util.Arrays;
import java.util.List;

import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import org.springframework.core.io.UrlResource;
import org.springframework.lang.Nullable;
import org.springframework.util.StringUtils;
import org.springframework.web.server.ServerWebExchange;

/**
 * A simple {@code ResourceResolver} that tries to find a resource under the given
 * locations matching to the request path.
 *
 * 

This resolver does not delegate to the {@code ResourceResolverChain} and is * expected to be configured at the end in a chain of resolvers. * * @author Rossen Stoyanchev * @since 5.0 */ public class PathResourceResolver extends AbstractResourceResolver { @Nullable private Resource[] allowedLocations; /** * By default when a Resource is found, the path of the resolved resource is * compared to ensure it's under the input location where it was found. * However sometimes that may not be the case, e.g. when * {@link CssLinkResourceTransformer} * resolves public URLs of links it contains, the CSS file is the location * and the resources being resolved are css files, images, fonts and others * located in adjacent or parent directories. *

This property allows configuring a complete list of locations under * which resources must be so that if a resource is not under the location * relative to which it was found, this list may be checked as well. *

By default {@link ResourceWebHandler} initializes this property * to match its list of locations. * @param locations the list of allowed locations */ public void setAllowedLocations(@Nullable Resource... locations) { this.allowedLocations = locations; } @Nullable public Resource[] getAllowedLocations() { return this.allowedLocations; } @Override protected Mono resolveResourceInternal(@Nullable ServerWebExchange exchange, String requestPath, List locations, ResourceResolverChain chain) { return getResource(requestPath, locations); } @Override protected Mono resolveUrlPathInternal(String path, List locations, ResourceResolverChain chain) { if (StringUtils.hasText(path)) { return getResource(path, locations).map(resource -> path); } else { return Mono.empty(); } } private Mono getResource(String resourcePath, List locations) { return Flux.fromIterable(locations) .concatMap(location -> getResource(resourcePath, location)) .next(); } /** * Find the resource under the given location. *

The default implementation checks if there is a readable * {@code Resource} for the given path relative to the location. * @param resourcePath the path to the resource * @param location the location to check * @return the resource, or empty {@link Mono} if none found */ protected Mono getResource(String resourcePath, Resource location) { try { Resource resource = location.createRelative(resourcePath); if (resource.exists() && resource.isReadable()) { if (checkResource(resource, location)) { if (logger.isTraceEnabled()) { logger.trace("Found match: " + resource); } return Mono.just(resource); } else if (logger.isTraceEnabled()) { Resource[] allowedLocations = getAllowedLocations(); logger.trace("Resource path \"" + resourcePath + "\" was successfully resolved " + "but resource \"" + resource.getURL() + "\" is neither under the " + "current location \"" + location.getURL() + "\" nor under any of the " + "allowed locations " + (allowedLocations != null ? Arrays.asList(allowedLocations) : "[]")); } } else if (logger.isTraceEnabled()) { logger.trace("No match for location: " + location); } return Mono.empty(); } catch (IOException ex) { if (logger.isTraceEnabled()) { logger.trace("Failure checking for relative resource under location + " + location, ex); } return Mono.error(ex); } } /** * Perform additional checks on a resolved resource beyond checking whether the * resources exists and is readable. The default implementation also verifies * the resource is either under the location relative to which it was found or * is under one of the {@link #setAllowedLocations allowed locations}. * @param resource the resource to check * @param location the location relative to which the resource was found * @return "true" if resource is in a valid location, "false" otherwise. */ protected boolean checkResource(Resource resource, Resource location) throws IOException { if (isResourceUnderLocation(resource, location)) { return true; } if (getAllowedLocations() != null) { for (Resource current : getAllowedLocations()) { if (isResourceUnderLocation(resource, current)) { return true; } } } return false; } private boolean isResourceUnderLocation(Resource resource, Resource location) throws IOException { if (resource.getClass() != location.getClass()) { return false; } String resourcePath; String locationPath; if (resource instanceof UrlResource) { resourcePath = resource.getURL().toExternalForm(); locationPath = StringUtils.cleanPath(location.getURL().toString()); } else if (resource instanceof ClassPathResource) { resourcePath = ((ClassPathResource) resource).getPath(); locationPath = StringUtils.cleanPath(((ClassPathResource) location).getPath()); } else { resourcePath = resource.getURL().getPath(); locationPath = StringUtils.cleanPath(location.getURL().getPath()); } if (locationPath.equals(resourcePath)) { return true; } locationPath = (locationPath.endsWith("/") || locationPath.isEmpty() ? locationPath : locationPath + "/"); return (resourcePath.startsWith(locationPath) && !isInvalidEncodedPath(resourcePath)); } private boolean isInvalidEncodedPath(String resourcePath) { if (resourcePath.contains("%")) { // Use URLDecoder (vs UriUtils) to preserve potentially decoded UTF-8 chars... try { String decodedPath = URLDecoder.decode(resourcePath, "UTF-8"); if (decodedPath.contains("../") || decodedPath.contains("..\\")) { if (logger.isTraceEnabled()) { logger.trace("Resolved resource path contains encoded \"../\" or \"..\\\": " + resourcePath); } return true; } } catch (UnsupportedEncodingException ex) { // Should never happen... } } return false; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy