io.milton.http.fs.ClassPathResourceFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milton-server-ce Show documentation
Show all versions of milton-server-ce Show documentation
Milton Community Edition: Supports DAV level 1 and is available on Apache2 license
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 io.milton.http.fs;
import io.milton.resource.DigestResource;
import io.milton.resource.PostableResource;
import io.milton.resource.GetableResource;
import io.milton.common.ContentTypeUtils;
import io.milton.common.Path;
import io.milton.common.RangeUtils;
import io.milton.http.*;
import io.milton.http.Request.Method;
import io.milton.resource.Resource;
import io.milton.http.SecurityManager;
import io.milton.http.exceptions.BadRequestException;
import io.milton.http.exceptions.ConflictException;
import io.milton.http.exceptions.NotAuthorizedException;
import io.milton.http.http11.auth.DigestResponse;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Date;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* A resource factory which looks for resources on the classpath
*
* @author brad
*/
public class ClassPathResourceFactory implements ResourceFactory {
private static final Logger log = LoggerFactory.getLogger(ClassPathResourceFactory.class);
private String basePath;
private Long maxAgeSeconds = 60 * 60 * 24 * 7L;
private io.milton.http.SecurityManager securityManager;
private Date modifiedDate = new Date();
@Override
public Resource getResource(String host, String path) {
Path p = Path.path(path);
if (basePath != null) {
if (p.getFirst().equals(basePath)) {
p = p.getStripFirst();
} else {
return null;
}
}
// try to locate a resource with the given path
InputStream content = this.getClass().getResourceAsStream(p.toString());
if (content == null) {
return null;
} else {
log.trace("return class path resource");
return new ClassPathResource(host, p, content);
}
}
/**
* The resource factory will only serve resources with a path which begins
* with this
*
* May be null
*
* Eg static
*/
public String getBasePath() {
return basePath;
}
public void setBasePath(String basePath) {
this.basePath = basePath;
}
/**
* Sets a constant max age for all resources served by this resource factory
*
* @return
*/
public Long getMaxAgeSeconds() {
return maxAgeSeconds;
}
public void setMaxAgeSeconds(Long maxAgeSeconds) {
this.maxAgeSeconds = maxAgeSeconds;
}
/**
* Modified date for all content. May be null
*
* @return
*/
public Date getModifiedDate() {
return modifiedDate;
}
public void setModifiedDate(Date modifiedDate) {
this.modifiedDate = modifiedDate;
}
/**
* Security manager to delegate authentication and authorisation to. May be
* null
*
* @return
*/
public SecurityManager getSecurityManager() {
return securityManager;
}
public void setSecurityManager(SecurityManager securityManager) {
this.securityManager = securityManager;
}
public class ClassPathResource implements GetableResource, DigestResource, PostableResource {
private final String host;
private final Path path;
private final InputStream content;
public ClassPathResource(String host, Path path, InputStream content) {
this.host = host;
this.path = path;
this.content = content;
if (content == null) {
throw new IllegalArgumentException("content cannot be null");
}
}
@Override
public void sendContent(OutputStream out, Range range, Map params, String contentType) throws IOException, NotAuthorizedException, BadRequestException {
try {
RangeUtils.writeRange(content, range, out);
} catch (NullPointerException npe) {
log.debug("NullPointerException, this is often expected");
}
}
@Override
public Long getMaxAgeSeconds(Auth auth) {
return maxAgeSeconds;
}
@Override
public String getContentType(String preferredList) {
String mime = ContentTypeUtils.findContentTypes(path.getName());
String s = ContentTypeUtils.findAcceptableContentType(mime, preferredList);
if (log.isTraceEnabled()) {
log.trace("getContentType: preferred: {} mime: {} selected: {}", preferredList, mime, s);
}
return s;
}
@Override
public Long getContentLength() {
return null;
}
@Override
public String getUniqueId() {
return null;
}
@Override
public String getName() {
return path.getName();
}
@Override
public Object authenticate(String user, String password) {
if (securityManager != null) {
return securityManager.authenticate(user, password);
} else {
return "ok";
}
}
@Override
public boolean authorise(Request request, Method method, Auth auth) {
if (securityManager != null) {
return securityManager.authorise(request, method, auth, this);
} else {
return true;
}
}
@Override
public String getRealm() {
if (securityManager != null) {
return securityManager.getRealm(host);
} else {
return host;
}
}
public Date getModifiedDate() {
return modifiedDate;
}
public String checkRedirect(Request request) {
return null;
}
public Object authenticate(DigestResponse digestRequest) {
if (securityManager != null) {
return securityManager.authenticate(digestRequest);
} else {
return false;
}
}
public boolean isDigestAllowed() {
return true;
}
public String processForm(Map parameters, Map files) throws BadRequestException, NotAuthorizedException, ConflictException {
return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy