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

io.milton.servlet.DefaultMiltonConfigurator Maven / Gradle / Ivy

Go to download

Milton Community Edition: Supports DAV level 1 and is available on Apache2 license

There is a newer version: 4.0.3.2215
Show 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.servlet;

import io.milton.config.HttpManagerBuilder;
import io.milton.http.AuthenticationHandler;
import io.milton.http.Filter;
import io.milton.http.HttpManager;
import io.milton.http.ResourceFactory;
import io.milton.http.webdav.WebDavResponseHandler;
import java.lang.reflect.InvocationTargetException;
import java.util.*;
import jakarta.servlet.ServletException;
import org.apache.commons.beanutils.BeanUtilsBean;
import org.apache.commons.beanutils.ConvertUtilsBean2;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * The default means of configuring milton's HttpManager.
 *
 * Provide init-params to the filter or servlet to configure it:
 * 
    *
  • resource.factory.class - the class of your resource factory
  • *
  • response.handler.class - specify if you want a different response * handler
  • *
  • authenticationHandlers - a list of class names for the authentication, * replaces the default auth handler structure
  • *
  • extraAuthenticationHandlers - a list of class names for the * authentication, is added to the default auth handler structure
  • *
  • handlers filter_X - define an ordered list of milton filters, where the * name is in the form filter_1, filter_2, etc and the value is the name of the * filter class
  • *
* * @author brad */ public class DefaultMiltonConfigurator implements MiltonConfigurator { private static final Logger log = LoggerFactory.getLogger(DefaultMiltonConfigurator.class); protected HttpManagerBuilder builder; protected List initables; protected HttpManager httpManager; public DefaultMiltonConfigurator() { try { // Attempt to use Enterprise edition build if available Class builderClass = Class.forName("io.milton.ent.config.HttpManagerBuilderEnt"); builder = (HttpManagerBuilder) builderClass.newInstance(); log.info("Using enterprise builder: " + builder.getClass()); } catch (InstantiationException | ClassNotFoundException | IllegalAccessException ex) { log.info("Couldnt instantiate enterprise builder, DAV level 2 and beyond features will not be available"); builder = new HttpManagerBuilder(); } } @Override public HttpManager configure(Config config) throws ServletException { log.info("Listing all config parameters:"); Map props = new HashMap<>(); for (String s : config.getInitParameterNames()) { String val = config.getInitParameter(s); log.info(" " + s + " = " + val); if (!s.contains(".") && !s.contains("_")) { props.put(s, val); } } String authHandlers = config.getInitParameter("authenticationHandlers"); if (authHandlers != null) { props.remove("authenticationHandlers"); // so the bub doesnt try to set it initAuthHandlers(authHandlers); } String extraAuthHandlers = config.getInitParameter("extraAuthenticationHandlers"); if (extraAuthHandlers != null) { props.remove("extraAuthenticationHandlers"); // so the bub doesnt try to set it initExtraAuthHandlers(extraAuthHandlers); } String resourceFactoryClassName = config.getInitParameter("resource.factory.class"); if (resourceFactoryClassName != null) { ResourceFactory rf = instantiate(resourceFactoryClassName); builder.setMainResourceFactory(rf); } else { log.warn("No custom ResourceFactory class name provided in resource.factory.class"); } String responseHandlerClassName = config.getInitParameter("response.handler.class"); if (responseHandlerClassName != null) { WebDavResponseHandler davResponseHandler = instantiate(responseHandlerClassName); builder.setWebdavResponseHandler(davResponseHandler); } List filters = null; List params = config.getInitParameterNames(); for (String paramName : params) { if (paramName.startsWith("filter_")) { String filterClass = config.getInitParameter(paramName); Filter f = instantiate(filterClass); if (filters == null) { filters = new ArrayList<>(); } filters.add(f); } } if (filters != null) { builder.setFilters(filters); } try { ConvertUtilsBean2 convertUtilsBean = new ConvertUtilsBean2(); BeanUtilsBean bub = new BeanUtilsBean(convertUtilsBean); bub.populate(builder, props); } catch (IllegalAccessException | InvocationTargetException e) { throw new ServletException(e); } ResourceFactory rf = builder.getMainResourceFactory(); // if (rf instanceof AnnotationResourceFactory) { // AnnotationResourceFactory arf = (AnnotationResourceFactory) rf; // arf.setContextPath("/"); // if (arf.getViewResolver() == null) { // ViewResolver viewResolver = new JspViewResolver(config.getServletContext()); // arf.setViewResolver(viewResolver); // } // } build(); initables = new ArrayList<>(); checkAddInitable(initables, builder.getAuthenticationHandlers()); checkAddInitable(initables, builder.getMainResourceFactory()); checkAddInitable(initables, builder.getWebdavResponseHandler()); checkAddInitable(initables, builder.getFilters()); for (Initable i : initables) { i.init(config, httpManager); } return httpManager; } /** * Actually builds the httpManager. Can be overridden by subclasses */ protected void build() { httpManager = builder.buildHttpManager(); } @Override public void shutdown() { if (httpManager != null) { httpManager.shutdown(); } if (initables != null) { for (Initable i : initables) { i.destroy(httpManager); } } } private void initAuthHandlers(String classNames) throws ServletException { List authHandlers = loadAuthHandlersIfAny(classNames); if (authHandlers == null) { return; } List list = new ArrayList<>(); for (String authHandlerClassName : authHandlers) { Object o = instantiate(authHandlerClassName); if (o instanceof AuthenticationHandler) { AuthenticationHandler auth = (AuthenticationHandler) o; list.add(auth); } else { throw new ServletException("Class: " + authHandlerClassName + " is not a: " + AuthenticationHandler.class.getCanonicalName()); } } builder.setAuthenticationHandlers(list); } private void initExtraAuthHandlers(String classNames) throws ServletException { List authHandlers = loadAuthHandlersIfAny(classNames); if (authHandlers == null) { return; } List list = new ArrayList<>(); for (String authHandlerClassName : authHandlers) { Object o = instantiate(authHandlerClassName); if (o instanceof AuthenticationHandler) { AuthenticationHandler auth = (AuthenticationHandler) o; list.add(auth); } else { throw new ServletException("Class: " + authHandlerClassName + " is not a: " + AuthenticationHandler.class.getCanonicalName()); } } builder.setExtraAuthenticationHandlers(list); } public static T instantiate(String className) throws ServletException { try { // use thread classloader, because this class might be on a child classloader without access to other classes Class c; try { c = Class.forName(className); } catch (ClassNotFoundException e) { // there are some frameworks where a class might be loadable from the local classloader, but // not from the parent. So if not found on parent lets try local c = Class.forName(className, true, Thread.currentThread().getContextClassLoader()); } return (T) c.newInstance(); } catch (Throwable ex) { throw new ServletException("Failed to instantiate: " + className, ex); } } private List loadAuthHandlersIfAny(String initParameter) { if (initParameter == null) { return null; } String[] arr = initParameter.split(","); List list = new ArrayList<>(); for (String s : arr) { s = s.trim(); if (s.length() > 0) { list.add(s); } } return list; } private void checkAddInitable(List initables, Object o) { if (o instanceof Initable) { initables.add((Initable) o); } else if (o instanceof List) { for (Object o2 : (List) o) { checkAddInitable(initables, o2); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy