blob: 7f2e5e87fceeb9b14378d5e192ff7d2486523103 [file] [log] [blame]
/*
* 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 org.apache.jackrabbit.oak.standalone;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import javax.jcr.Repository;
import javax.servlet.ServletContext;
import org.apache.jackrabbit.server.remoting.davex.JcrRemotingServlet;
import org.apache.jackrabbit.webdav.simple.SimpleWebdavServlet;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
/**
* Configures the Webdav and Davex servlet to enabled remote
* access to the repository
*/
@Configuration
public class RemotingInitializer {
@Value("${repo.home}/dav")
private String davHome;
@Autowired
private Repository repository;
@Autowired
private ServletContext servletContext;
@Bean
public ServletRegistrationBean webDavServlet() {
ServletRegistrationBean bean = new ServletRegistrationBean(new SimpleWebdavServlet() {
@Override
public Repository getRepository() {
return repository;
}
@Override
public ServletContext getServletContext() {
return RemotingInitializer.this.getServletContext();
}
}, "/repository/*");
bean.addInitParameter(SimpleWebdavServlet.INIT_PARAM_RESOURCE_PATH_PREFIX, "/repository");
bean.addInitParameter(SimpleWebdavServlet.INIT_PARAM_RESOURCE_CONFIG, "/remoting/webdav-config.xml");
return bean;
}
@Bean
public ServletRegistrationBean remotingServlet() {
ServletRegistrationBean bean = new ServletRegistrationBean(new JcrRemotingServlet() {
@Override
public Repository getRepository() {
return repository;
}
@Override
public ServletContext getServletContext() {
return RemotingInitializer.this.getServletContext();
}
}, "/server/*");
bean.addInitParameter(JcrRemotingServlet.INIT_PARAM_RESOURCE_PATH_PREFIX, "/server");
bean.addInitParameter(JcrRemotingServlet.INIT_PARAM_BATCHREAD_CONFIG, "/remoting/batchread.properties");
bean.addInitParameter(JcrRemotingServlet.INIT_PARAM_PROTECTED_HANDLERS_CONFIG,
"/remoting/protectedHandlersConfig.xml");
bean.addInitParameter(JcrRemotingServlet.INIT_PARAM_HOME, davHome);
return bean;
}
/**
* Creates a proxy ServletContext which delegates the resource loading to Spring Resource support
* Without this default embedded server ServletContext based resource loading was failing
*/
private ServletContext getServletContext(){
return (ServletContext) Proxy.newProxyInstance(getClass().getClassLoader(), new Class[]{ServletContext.class},
new InvocationHandler(){
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
if ("getResourceAsStream".equals(method.getName())){
return getResource((String) args[0]).getInputStream();
}
if ("getResource".equals(method.getName())){
return getResource((String) args[0]).getURL();
}
return method.invoke(servletContext, args);
}
});
}
private Resource getResource(String path) {
return new ClassPathResource(path);
}
}