SEC-1186: Additional changes to remove custom-filter decorator functionality.
This commit is contained in:
parent
abddcb044a
commit
43dab4c3b3
|
@ -1,135 +0,0 @@
|
||||||
package org.springframework.security.config;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import javax.servlet.Filter;
|
|
||||||
import javax.servlet.FilterChain;
|
|
||||||
import javax.servlet.FilterConfig;
|
|
||||||
import javax.servlet.ServletException;
|
|
||||||
import javax.servlet.ServletRequest;
|
|
||||||
import javax.servlet.ServletResponse;
|
|
||||||
|
|
||||||
import org.springframework.beans.factory.config.BeanDefinitionHolder;
|
|
||||||
import org.springframework.beans.factory.config.RuntimeBeanReference;
|
|
||||||
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
|
|
||||||
import org.springframework.beans.factory.xml.BeanDefinitionDecorator;
|
|
||||||
import org.springframework.beans.factory.xml.ParserContext;
|
|
||||||
import org.springframework.core.Ordered;
|
|
||||||
import org.springframework.util.Assert;
|
|
||||||
import org.springframework.util.StringUtils;
|
|
||||||
import org.w3c.dom.Element;
|
|
||||||
import org.w3c.dom.Node;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds the decorated "Filter" bean into the standard filter chain maintained by the FilterChainProxy.
|
|
||||||
* This allows user to add their own custom filters to the security chain. If the user's filter
|
|
||||||
* already implements Ordered, and no "order" attribute is specified, the filter's default order will be used.
|
|
||||||
*
|
|
||||||
* @author Luke Taylor
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
|
||||||
public class OrderedFilterBeanDefinitionDecorator implements BeanDefinitionDecorator {
|
|
||||||
|
|
||||||
public static final String ATT_AFTER = "after";
|
|
||||||
public static final String ATT_BEFORE = "before";
|
|
||||||
public static final String ATT_POSITION = "position";
|
|
||||||
|
|
||||||
public BeanDefinitionHolder decorate(Node node, BeanDefinitionHolder holder, ParserContext parserContext) {
|
|
||||||
Element elt = (Element)node;
|
|
||||||
String order = getOrder(elt, parserContext);
|
|
||||||
|
|
||||||
BeanDefinitionBuilder wrapper = BeanDefinitionBuilder.rootBeanDefinition("org.springframework.security.config.OrderedFilterBeanDefinitionDecorator$OrderedFilterDecorator");
|
|
||||||
wrapper.addConstructorArgValue(holder.getBeanName());
|
|
||||||
wrapper.addConstructorArgValue(new RuntimeBeanReference(holder.getBeanName()));
|
|
||||||
|
|
||||||
if (StringUtils.hasText(order)) {
|
|
||||||
wrapper.addPropertyValue("order", order);
|
|
||||||
}
|
|
||||||
|
|
||||||
// ConfigUtils.addHttpFilter(parserContext, wrapper.getBeanDefinition());
|
|
||||||
|
|
||||||
return holder;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Attempts to get the order of the filter by parsing the 'before' or 'after' attributes.
|
|
||||||
*/
|
|
||||||
private String getOrder(Element elt, ParserContext pc) {
|
|
||||||
String after = elt.getAttribute(ATT_AFTER);
|
|
||||||
String before = elt.getAttribute(ATT_BEFORE);
|
|
||||||
String position = elt.getAttribute(ATT_POSITION);
|
|
||||||
|
|
||||||
if(ConfigUtils.countNonEmpty(new String[] {after, before, position}) != 1) {
|
|
||||||
pc.getReaderContext().error("A single '" + ATT_AFTER + "', '" + ATT_BEFORE + "', or '" +
|
|
||||||
ATT_POSITION + "' attribute must be supplied", pc.extractSource(elt));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (StringUtils.hasText(position)) {
|
|
||||||
return Integer.toString(FilterChainOrder.getOrder(position));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (StringUtils.hasText(after)) {
|
|
||||||
int order = FilterChainOrder.getOrder(after);
|
|
||||||
|
|
||||||
return Integer.toString(order == Integer.MAX_VALUE ? order : order + 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (StringUtils.hasText(before)) {
|
|
||||||
int order = FilterChainOrder.getOrder(before);
|
|
||||||
|
|
||||||
return Integer.toString(order == Integer.MIN_VALUE ? order : order - 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
static class OrderedFilterDecorator implements Filter, Ordered {
|
|
||||||
private Integer order = null;
|
|
||||||
private Filter delegate;
|
|
||||||
private String beanName;
|
|
||||||
|
|
||||||
OrderedFilterDecorator(String beanName, Filter delegate) {
|
|
||||||
this.delegate = delegate;
|
|
||||||
this.beanName = beanName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public final void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
|
|
||||||
delegate.doFilter(request, response, chain);
|
|
||||||
}
|
|
||||||
|
|
||||||
public final void init(FilterConfig filterConfig) throws ServletException {
|
|
||||||
delegate.init(filterConfig);
|
|
||||||
}
|
|
||||||
|
|
||||||
public final void destroy() {
|
|
||||||
delegate.destroy();
|
|
||||||
}
|
|
||||||
|
|
||||||
public final int getOrder() {
|
|
||||||
if(order == null) {
|
|
||||||
Assert.isInstanceOf(Ordered.class, delegate, "Filter '"+ beanName +"' must implement the 'Ordered' interface " +
|
|
||||||
" or you must specify one of the attributes '" + ATT_AFTER + "' or '" +
|
|
||||||
ATT_BEFORE + "' in <" + Elements.CUSTOM_FILTER +">");
|
|
||||||
|
|
||||||
return ((Ordered)delegate).getOrder();
|
|
||||||
}
|
|
||||||
return order.intValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
public final void setOrder(int order) {
|
|
||||||
this.order = new Integer(order);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBeanName() {
|
|
||||||
return beanName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String toString() {
|
|
||||||
return "OrderedFilterDecorator[ delegate=" + delegate + "; order=" + getOrder() + "]";
|
|
||||||
}
|
|
||||||
|
|
||||||
Filter getDelegate() {
|
|
||||||
return delegate;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -30,7 +30,7 @@ public class SecurityNamespaceHandler extends NamespaceHandlerSupport {
|
||||||
// Decorators
|
// Decorators
|
||||||
registerBeanDefinitionDecorator(Elements.INTERCEPT_METHODS, new InterceptMethodsBeanDefinitionDecorator());
|
registerBeanDefinitionDecorator(Elements.INTERCEPT_METHODS, new InterceptMethodsBeanDefinitionDecorator());
|
||||||
registerBeanDefinitionDecorator(Elements.FILTER_CHAIN_MAP, new FilterChainMapBeanDefinitionDecorator());
|
registerBeanDefinitionDecorator(Elements.FILTER_CHAIN_MAP, new FilterChainMapBeanDefinitionDecorator());
|
||||||
registerBeanDefinitionDecorator(Elements.CUSTOM_FILTER, new OrderedFilterBeanDefinitionDecorator());
|
registerBeanDefinitionDecorator(Elements.CUSTOM_FILTER, new CustomFilterBeanDefinitionDecorator());
|
||||||
registerBeanDefinitionDecorator(Elements.CUSTOM_AUTH_PROVIDER, new CustomAuthenticationProviderBeanDefinitionDecorator());
|
registerBeanDefinitionDecorator(Elements.CUSTOM_AUTH_PROVIDER, new CustomAuthenticationProviderBeanDefinitionDecorator());
|
||||||
registerBeanDefinitionDecorator(Elements.CUSTOM_AFTER_INVOCATION_PROVIDER, new CustomAfterInvocationProviderBeanDefinitionDecorator());
|
registerBeanDefinitionDecorator(Elements.CUSTOM_AFTER_INVOCATION_PROVIDER, new CustomAfterInvocationProviderBeanDefinitionDecorator());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue