org.springframework.web.reactive.resource.ResourceWebHandler.java Source code

Java tutorial

Introduction

Here is the source code for org.springframework.web.reactive.resource.ResourceWebHandler.java

Source

/*
 * 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
 *
 *      https://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.time.Instant;
import java.util.ArrayList;
import java.util.Collections;
import java.util.EnumSet;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import reactor.core.publisher.Mono;

import org.springframework.beans.factory.InitializingBean;
import org.springframework.core.ResolvableType;
import org.springframework.core.codec.Hints;
import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
import org.springframework.http.CacheControl;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.MediaTypeFactory;
import org.springframework.http.codec.ResourceHttpMessageWriter;
import org.springframework.http.server.PathContainer;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import org.springframework.util.CollectionUtils;
import org.springframework.util.ObjectUtils;
import org.springframework.util.ResourceUtils;
import org.springframework.util.StringUtils;
import org.springframework.web.reactive.HandlerMapping;
import org.springframework.web.server.MethodNotAllowedException;
import org.springframework.web.server.ResponseStatusException;
import org.springframework.web.server.ServerWebExchange;
import org.springframework.web.server.WebHandler;

/**
 * {@code HttpRequestHandler} that serves static resources in an optimized way
 * according to the guidelines of Page Speed, YSlow, etc.
 *
 * <p>The {@linkplain #setLocations "locations"} property takes a list of Spring
 * {@link Resource} locations from which static resources are allowed to
 * be served by this handler. Resources could be served from a classpath location,
 * e.g. "classpath:/META-INF/public-web-resources/", allowing convenient packaging
 * and serving of resources such as .js, .css, and others in jar files.
 *
 * <p>This request handler may also be configured with a
 * {@link #setResourceResolvers(List) resourcesResolver} and
 * {@link #setResourceTransformers(List) resourceTransformer} chains to support
 * arbitrary resolution and transformation of resources being served. By default a
 * {@link PathResourceResolver} simply finds resources based on the configured
 * "locations". An application can configure additional resolvers and
 * transformers such as the {@link VersionResourceResolver} which can resolve
 * and prepare URLs for resources with a version in the URL.
 *
 * <p>This handler also properly evaluates the {@code Last-Modified} header (if
 * present) so that a {@code 304} status code will be returned as appropriate,
 * avoiding unnecessary overhead for resources that are already cached by the
 * client.
 *
 * @author Rossen Stoyanchev
 * @author Brian Clozel
 * @since 5.0
 */
public class ResourceWebHandler implements WebHandler, InitializingBean {

    private static final Set<HttpMethod> SUPPORTED_METHODS = EnumSet.of(HttpMethod.GET, HttpMethod.HEAD);

    private static final Log logger = LogFactory.getLog(ResourceWebHandler.class);

    private final List<String> locationValues = new ArrayList<>(4);

    private final List<Resource> locations = new ArrayList<>(4);

    private final List<ResourceResolver> resourceResolvers = new ArrayList<>(4);

    private final List<ResourceTransformer> resourceTransformers = new ArrayList<>(4);

    @Nullable
    private ResourceResolverChain resolverChain;

    @Nullable
    private ResourceTransformerChain transformerChain;

    @Nullable
    private CacheControl cacheControl;

    @Nullable
    private ResourceHttpMessageWriter resourceHttpMessageWriter;

    @Nullable
    private ResourceLoader resourceLoader;

    /**
     * Accepts a list of String-based location values to be resolved into
     * {@link Resource} locations.
     * @since 5.1
     */
    public void setLocationValues(List<String> locationValues) {
        Assert.notNull(locationValues, "Location values list must not be null");
        this.locationValues.clear();
        this.locationValues.addAll(locationValues);
    }

    /**
     * Return the configured location values.
     * @since 5.1
     */
    public List<String> getLocationValues() {
        return this.locationValues;
    }

    /**
     * Set the {@code List} of {@code Resource} paths to use as sources
     * for serving static resources.
     */
    public void setLocations(@Nullable List<Resource> locations) {
        this.locations.clear();
        if (locations != null) {
            this.locations.addAll(locations);
        }
    }

    /**
     * Return the {@code List} of {@code Resource} paths to use as sources
     * for serving static resources.
     * <p>Note that if {@link #setLocationValues(List) locationValues} are provided,
     * instead of loaded Resource-based locations, this method will return
     * empty until after initialization via {@link #afterPropertiesSet()}.
     * @see #setLocationValues
     * @see #setLocations
     */
    public List<Resource> getLocations() {
        return this.locations;
    }

    /**
     * Configure the list of {@link ResourceResolver ResourceResolvers} to use.
     * <p>By default {@link PathResourceResolver} is configured. If using this property,
     * it is recommended to add {@link PathResourceResolver} as the last resolver.
     */
    public void setResourceResolvers(@Nullable List<ResourceResolver> resourceResolvers) {
        this.resourceResolvers.clear();
        if (resourceResolvers != null) {
            this.resourceResolvers.addAll(resourceResolvers);
        }
    }

    /**
     * Return the list of configured resource resolvers.
     */
    public List<ResourceResolver> getResourceResolvers() {
        return this.resourceResolvers;
    }

    /**
     * Configure the list of {@link ResourceTransformer ResourceTransformers} to use.
     * <p>By default no transformers are configured for use.
     */
    public void setResourceTransformers(@Nullable List<ResourceTransformer> resourceTransformers) {
        this.resourceTransformers.clear();
        if (resourceTransformers != null) {
            this.resourceTransformers.addAll(resourceTransformers);
        }
    }

    /**
     * Return the list of configured resource transformers.
     */
    public List<ResourceTransformer> getResourceTransformers() {
        return this.resourceTransformers;
    }

    /**
     * Set the {@link org.springframework.http.CacheControl} instance to build
     * the Cache-Control HTTP response header.
     */
    public void setCacheControl(@Nullable CacheControl cacheControl) {
        this.cacheControl = cacheControl;
    }

    /**
     * Return the {@link org.springframework.http.CacheControl} instance to build
     * the Cache-Control HTTP response header.
     */
    @Nullable
    public CacheControl getCacheControl() {
        return this.cacheControl;
    }

    /**
     * Configure the {@link ResourceHttpMessageWriter} to use.
     * <p>By default a {@link ResourceHttpMessageWriter} will be configured.
     */
    public void setResourceHttpMessageWriter(@Nullable ResourceHttpMessageWriter httpMessageWriter) {
        this.resourceHttpMessageWriter = httpMessageWriter;
    }

    /**
     * Return the configured resource message writer.
     */
    @Nullable
    public ResourceHttpMessageWriter getResourceHttpMessageWriter() {
        return this.resourceHttpMessageWriter;
    }

    /**
     * Provide the ResourceLoader to load {@link #setLocationValues(List)
     * location values} with.
     * @since 5.1
     */
    public void setResourceLoader(ResourceLoader resourceLoader) {
        this.resourceLoader = resourceLoader;
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        resolveResourceLocations();

        if (logger.isWarnEnabled() && CollectionUtils.isEmpty(this.locations)) {
            logger.warn("Locations list is empty. No resources will be served unless a "
                    + "custom ResourceResolver is configured as an alternative to PathResourceResolver.");
        }

        if (this.resourceResolvers.isEmpty()) {
            this.resourceResolvers.add(new PathResourceResolver());
        }

        initAllowedLocations();

        if (getResourceHttpMessageWriter() == null) {
            this.resourceHttpMessageWriter = new ResourceHttpMessageWriter();
        }

        // Initialize immutable resolver and transformer chains
        this.resolverChain = new DefaultResourceResolverChain(this.resourceResolvers);
        this.transformerChain = new DefaultResourceTransformerChain(this.resolverChain, this.resourceTransformers);
    }

    private void resolveResourceLocations() {
        if (CollectionUtils.isEmpty(this.locationValues)) {
            return;
        } else if (!CollectionUtils.isEmpty(this.locations)) {
            throw new IllegalArgumentException("Please set either Resource-based \"locations\" or "
                    + "String-based \"locationValues\", but not both.");
        }

        Assert.notNull(this.resourceLoader, "ResourceLoader is required when \"locationValues\" are configured.");

        for (String location : this.locationValues) {
            Resource resource = this.resourceLoader.getResource(location);
            this.locations.add(resource);
        }
    }

    /**
     * Look for a {@code PathResourceResolver} among the configured resource
     * resolvers and set its {@code allowedLocations} property (if empty) to
     * match the {@link #setLocations locations} configured on this class.
     */
    protected void initAllowedLocations() {
        if (CollectionUtils.isEmpty(this.locations)) {
            if (logger.isInfoEnabled()) {
                logger.info("Locations list is empty. No resources will be served unless a "
                        + "custom ResourceResolver is configured as an alternative to PathResourceResolver.");
            }
            return;
        }
        for (int i = getResourceResolvers().size() - 1; i >= 0; i--) {
            if (getResourceResolvers().get(i) instanceof PathResourceResolver) {
                PathResourceResolver resolver = (PathResourceResolver) getResourceResolvers().get(i);
                if (ObjectUtils.isEmpty(resolver.getAllowedLocations())) {
                    resolver.setAllowedLocations(getLocations().toArray(new Resource[0]));
                }
                break;
            }
        }
    }

    /**
     * Processes a resource request.
     * <p>Checks for the existence of the requested resource in the configured list of locations.
     * If the resource does not exist, a {@code 404} response will be returned to the client.
     * If the resource exists, the request will be checked for the presence of the
     * {@code Last-Modified} header, and its value will be compared against the last-modified
     * timestamp of the given resource, returning a {@code 304} status code if the
     * {@code Last-Modified} value  is greater. If the resource is newer than the
     * {@code Last-Modified} value, or the header is not present, the content resource
     * of the resource will be written to the response with caching headers
     * set to expire one year in the future.
     */
    @Override
    public Mono<Void> handle(ServerWebExchange exchange) {
        return getResource(exchange).switchIfEmpty(Mono.defer(() -> {
            logger.debug(exchange.getLogPrefix() + "Resource not found");
            return Mono.error(new ResponseStatusException(HttpStatus.NOT_FOUND));
        })).flatMap(resource -> {
            try {
                if (HttpMethod.OPTIONS.matches(exchange.getRequest().getMethodValue())) {
                    exchange.getResponse().getHeaders().add("Allow", "GET,HEAD,OPTIONS");
                    return Mono.empty();
                }

                // Supported methods and required session
                HttpMethod httpMethod = exchange.getRequest().getMethod();
                if (!SUPPORTED_METHODS.contains(httpMethod)) {
                    return Mono.error(new MethodNotAllowedException(exchange.getRequest().getMethodValue(),
                            SUPPORTED_METHODS));
                }

                // Header phase
                if (exchange.checkNotModified(Instant.ofEpochMilli(resource.lastModified()))) {
                    logger.trace(exchange.getLogPrefix() + "Resource not modified");
                    return Mono.empty();
                }

                // Apply cache settings, if any
                CacheControl cacheControl = getCacheControl();
                if (cacheControl != null) {
                    exchange.getResponse().getHeaders().setCacheControl(cacheControl);
                }

                // Check the media type for the resource
                MediaType mediaType = MediaTypeFactory.getMediaType(resource).orElse(null);

                // Content phase
                if (HttpMethod.HEAD.matches(exchange.getRequest().getMethodValue())) {
                    setHeaders(exchange, resource, mediaType);
                    exchange.getResponse().getHeaders().set(HttpHeaders.ACCEPT_RANGES, "bytes");
                    return Mono.empty();
                }

                setHeaders(exchange, resource, mediaType);
                ResourceHttpMessageWriter writer = getResourceHttpMessageWriter();
                Assert.state(writer != null, "No ResourceHttpMessageWriter");
                return writer.write(Mono.just(resource), null, ResolvableType.forClass(Resource.class), mediaType,
                        exchange.getRequest(), exchange.getResponse(),
                        Hints.from(Hints.LOG_PREFIX_HINT, exchange.getLogPrefix()));
            } catch (IOException ex) {
                return Mono.error(ex);
            }
        });
    }

    protected Mono<Resource> getResource(ServerWebExchange exchange) {
        String name = HandlerMapping.PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE;
        PathContainer pathWithinHandler = exchange.getRequiredAttribute(name);

        String path = processPath(pathWithinHandler.value());
        if (!StringUtils.hasText(path) || isInvalidPath(path)) {
            return Mono.empty();
        }
        if (isInvalidEncodedPath(path)) {
            return Mono.empty();
        }

        Assert.state(this.resolverChain != null, "ResourceResolverChain not initialized");
        Assert.state(this.transformerChain != null, "ResourceTransformerChain not initialized");

        return this.resolverChain.resolveResource(exchange, path, getLocations())
                .flatMap(resource -> this.transformerChain.transform(exchange, resource));
    }

    /**
     * Process the given resource path.
     * <p>The default implementation replaces:
     * <ul>
     * <li>Backslash with forward slash.
     * <li>Duplicate occurrences of slash with a single slash.
     * <li>Any combination of leading slash and control characters (00-1F and 7F)
     * with a single "/" or "". For example {@code "  / // foo/bar"}
     * becomes {@code "/foo/bar"}.
     * </ul>
     * @since 3.2.12
     */
    protected String processPath(String path) {
        path = StringUtils.replace(path, "\\", "/");
        path = cleanDuplicateSlashes(path);
        return cleanLeadingSlash(path);
    }

    private String cleanDuplicateSlashes(String path) {
        StringBuilder sb = null;
        char prev = 0;
        for (int i = 0; i < path.length(); i++) {
            char curr = path.charAt(i);
            try {
                if (curr == '/' && prev == '/') {
                    if (sb == null) {
                        sb = new StringBuilder(path.substring(0, i));
                    }
                    continue;
                }
                if (sb != null) {
                    sb.append(path.charAt(i));
                }
            } finally {
                prev = curr;
            }
        }
        return (sb != null ? sb.toString() : path);
    }

    private String cleanLeadingSlash(String path) {
        boolean slash = false;
        for (int i = 0; i < path.length(); i++) {
            if (path.charAt(i) == '/') {
                slash = true;
            } else if (path.charAt(i) > ' ' && path.charAt(i) != 127) {
                if (i == 0 || (i == 1 && slash)) {
                    return path;
                }
                return (slash ? "/" + path.substring(i) : path.substring(i));
            }
        }
        return (slash ? "/" : "");
    }

    /**
     * Check whether the given path contains invalid escape sequences.
     * @param path the path to validate
     * @return {@code true} if the path is invalid, {@code false} otherwise
     */
    private boolean isInvalidEncodedPath(String path) {
        if (path.contains("%")) {
            try {
                // Use URLDecoder (vs UriUtils) to preserve potentially decoded UTF-8 chars
                String decodedPath = URLDecoder.decode(path, "UTF-8");
                if (isInvalidPath(decodedPath)) {
                    return true;
                }
                decodedPath = processPath(decodedPath);
                if (isInvalidPath(decodedPath)) {
                    return true;
                }
            } catch (IllegalArgumentException | UnsupportedEncodingException ex) {
                // Should never happen...
            }
        }
        return false;
    }

    /**
     * Identifies invalid resource paths. By default rejects:
     * <ul>
     * <li>Paths that contain "WEB-INF" or "META-INF"
     * <li>Paths that contain "../" after a call to
     * {@link StringUtils#cleanPath}.
     * <li>Paths that represent a {@link ResourceUtils#isUrl
     * valid URL} or would represent one after the leading slash is removed.
     * </ul>
     * <p><strong>Note:</strong> this method assumes that leading, duplicate '/'
     * or control characters (e.g. white space) have been trimmed so that the
     * path starts predictably with a single '/' or does not have one.
     * @param path the path to validate
     * @return {@code true} if the path is invalid, {@code false} otherwise
     */
    protected boolean isInvalidPath(String path) {
        if (path.contains("WEB-INF") || path.contains("META-INF")) {
            if (logger.isWarnEnabled()) {
                logger.warn("Path with \"WEB-INF\" or \"META-INF\": [" + path + "]");
            }
            return true;
        }
        if (path.contains(":/")) {
            String relativePath = (path.charAt(0) == '/' ? path.substring(1) : path);
            if (ResourceUtils.isUrl(relativePath) || relativePath.startsWith("url:")) {
                if (logger.isWarnEnabled()) {
                    logger.warn("Path represents URL or has \"url:\" prefix: [" + path + "]");
                }
                return true;
            }
        }
        if (path.contains("..") && StringUtils.cleanPath(path).contains("../")) {
            if (logger.isWarnEnabled()) {
                logger.warn("Path contains \"../\" after call to StringUtils#cleanPath: [" + path + "]");
            }
            return true;
        }
        return false;
    }

    /**
     * Set headers on the response. Called for both GET and HEAD requests.
     * @param exchange current exchange
     * @param resource the identified resource (never {@code null})
     * @param mediaType the resource's media type (never {@code null})
     */
    protected void setHeaders(ServerWebExchange exchange, Resource resource, @Nullable MediaType mediaType)
            throws IOException {

        HttpHeaders headers = exchange.getResponse().getHeaders();

        long length = resource.contentLength();
        headers.setContentLength(length);

        if (mediaType != null) {
            headers.setContentType(mediaType);
        }
        if (resource instanceof HttpResource) {
            HttpHeaders resourceHeaders = ((HttpResource) resource).getResponseHeaders();
            exchange.getResponse().getHeaders().putAll(resourceHeaders);
        }
    }

    @Override
    public String toString() {
        return "ResourceWebHandler " + formatLocations();
    }

    private Object formatLocations() {
        if (!this.locationValues.isEmpty()) {
            return this.locationValues.stream().collect(Collectors.joining("\", \"", "[\"", "\"]"));
        } else if (!this.locations.isEmpty()) {
            return "[" + this.locations + "]";
        }
        return Collections.emptyList();
    }
}