spark.staticfiles.StaticFilesConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark-core Show documentation
Show all versions of spark-core Show documentation
A micro framework for creating web applications in Kotlin and Java 8 with minimal effort
The newest version!
/*
* Copyright 2016 - Per Wendel
*
* 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 spark.staticfiles;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import spark.resource.AbstractFileResolvingResource;
import spark.resource.AbstractResourceHandler;
import spark.resource.ClassPathResourceHandler;
import spark.resource.ExternalResource;
import spark.resource.ExternalResourceHandler;
import spark.utils.Assert;
import spark.utils.GzipUtils;
import spark.utils.IOUtils;
/**
* Holds the static file configuration.
* TODO: ETAG ?
*/
public class StaticFilesConfiguration {
private final Logger LOG = LoggerFactory.getLogger(StaticFilesConfiguration.class);
private List staticResourceHandlers = null;
private boolean staticResourcesSet = false;
private boolean externalStaticResourcesSet = false;
public static StaticFilesConfiguration servletInstance = new StaticFilesConfiguration();
private Map customHeaders = new HashMap<>();
/**
* Attempt consuming using either static resource handlers or jar resource handlers
*
* @param httpRequest The HTTP servlet request.
* @param httpResponse The HTTP servlet response.
* @return true if consumed, false otherwise.
* @throws IOException in case of IO error.
*/
public boolean consume(HttpServletRequest httpRequest,
HttpServletResponse httpResponse) throws IOException {
try {
if (consumeWithFileResourceHandlers(httpRequest, httpResponse)) {
return true;
}
} catch (DirectoryTraversal.DirectoryTraversalDetection directoryTraversalDetection) {
httpResponse.setStatus(400);
httpResponse.getWriter().write("Bad request");
httpResponse.getWriter().flush();
LOG.warn(directoryTraversalDetection.getMessage() + " directory traversal detection for path: "
+ httpRequest.getPathInfo());
}
return false;
}
private boolean consumeWithFileResourceHandlers(HttpServletRequest httpRequest,
HttpServletResponse httpResponse) throws IOException {
if (staticResourceHandlers != null) {
for (AbstractResourceHandler staticResourceHandler : staticResourceHandlers) {
AbstractFileResolvingResource resource = staticResourceHandler.getResource(httpRequest);
if (resource != null && resource.isReadable()) {
if (MimeType.shouldGuess()) {
httpResponse.setHeader(MimeType.CONTENT_TYPE, MimeType.fromResource(resource));
}
customHeaders.forEach(httpResponse::setHeader); //add all user-defined headers to response
try (InputStream inputStream = resource.getInputStream();
OutputStream wrappedOutputStream = GzipUtils.checkAndWrap(httpRequest, httpResponse, false)) {
IOUtils.copy(inputStream, wrappedOutputStream);
}
return true;
}
}
}
return false;
}
/**
* Clears all static file configuration
*/
public void clear() {
if (staticResourceHandlers != null) {
staticResourceHandlers.clear();
staticResourceHandlers = null;
}
staticResourcesSet = false;
externalStaticResourcesSet = false;
}
public boolean isStaticResourcesSet() {
return staticResourcesSet;
}
public boolean isExternalStaticResourcesSet() {
return externalStaticResourcesSet;
}
/**
* Configures location for static resources
*
* @param folder the location
*/
public synchronized void configure(String folder) {
Assert.notNull(folder, "'folder' must not be null");
if (!staticResourcesSet) {
if (staticResourceHandlers == null) {
staticResourceHandlers = new ArrayList<>();
}
staticResourceHandlers.add(new ClassPathResourceHandler(folder, "index.html"));
LOG.info("StaticResourceHandler configured with folder = " + folder);
staticResourcesSet = true;
}
}
/**
* Configures location for static resources
*
* @param folder the location
*/
public synchronized void configureExternal(String folder) {
Assert.notNull(folder, "'folder' must not be null");
if (!externalStaticResourcesSet) {
try {
ExternalResource resource = new ExternalResource(folder);
if (!resource.getFile().isDirectory()) {
LOG.error("External Static resource location must be a folder");
return;
}
if (staticResourceHandlers == null) {
staticResourceHandlers = new ArrayList<>();
}
staticResourceHandlers.add(new ExternalResourceHandler(folder, "index.html"));
LOG.info("External StaticResourceHandler configured with folder = " + folder);
} catch (IOException e) {
LOG.error("Error when creating external StaticResourceHandler", e);
}
externalStaticResourcesSet = true;
}
}
public static StaticFilesConfiguration create() {
return new StaticFilesConfiguration();
}
public void setExpireTimeSeconds(long expireTimeSeconds) {
customHeaders.put("Cache-Control", "private, max-age=" + expireTimeSeconds);
customHeaders.put("Expires", new Date(System.currentTimeMillis() + (expireTimeSeconds * 1000)).toString());
}
public void putCustomHeaders(Map headers) {
customHeaders.putAll(headers);
}
public void putCustomHeader(String key, String value) {
customHeaders.put(key, value);
}
}