Coverage Report - org.kuali.rice.ksb.messaging.servlet.KSBDispatcherServlet
 
Classes in this File Line Coverage Branch Coverage Complexity
KSBDispatcherServlet
0%
0/49
0%
0/20
3.286
 
 1  
 /*
 2  
  * Copyright 2006-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 
 17  
 package org.kuali.rice.ksb.messaging.servlet;
 18  
 
 19  
 import org.apache.cxf.Bus;
 20  
 import org.apache.cxf.interceptor.Interceptor;
 21  
 import org.apache.cxf.message.Message;
 22  
 import org.apache.cxf.transport.servlet.ServletController;
 23  
 import org.apache.cxf.transport.servlet.ServletTransportFactory;
 24  
 import org.apache.log4j.Logger;
 25  
 import org.kuali.rice.core.api.config.property.ConfigContext;
 26  
 import org.kuali.rice.core.api.exception.RiceRuntimeException;
 27  
 import org.kuali.rice.core.api.util.ClassLoaderUtils;
 28  
 import org.kuali.rice.ksb.api.KsbApiServiceLocator;
 29  
 import org.kuali.rice.ksb.api.bus.Endpoint;
 30  
 import org.kuali.rice.ksb.api.bus.ServiceConfiguration;
 31  
 import org.kuali.rice.ksb.api.bus.support.SoapServiceConfiguration;
 32  
 import org.kuali.rice.ksb.security.SignatureSigningResponseWrapper;
 33  
 import org.kuali.rice.ksb.security.SignatureVerifyingRequestWrapper;
 34  
 import org.kuali.rice.ksb.service.KSBServiceLocator;
 35  
 import org.springframework.beans.BeansException;
 36  
 import org.springframework.web.HttpRequestHandler;
 37  
 import org.springframework.web.context.WebApplicationContext;
 38  
 import org.springframework.web.servlet.DispatcherServlet;
 39  
 import org.springframework.web.servlet.HandlerAdapter;
 40  
 import org.springframework.web.servlet.HandlerExecutionChain;
 41  
 import org.springframework.web.servlet.ModelAndView;
 42  
 import org.springframework.web.servlet.mvc.Controller;
 43  
 import org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter;
 44  
 import org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter;
 45  
 
 46  
 import javax.servlet.ServletException;
 47  
 import javax.servlet.http.HttpServletRequest;
 48  
 import javax.servlet.http.HttpServletResponse;
 49  
 import javax.xml.namespace.QName;
 50  
 import java.io.IOException;
 51  
 import java.util.List;
 52  
 
 53  
 
 54  
 /**
 55  
  * A {@link DispatcherServlet} which dispatches incoming requests to the appropriate
 56  
  * service endpoint.
 57  
  *
 58  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 59  
  */
 60  0
 public class KSBDispatcherServlet extends DispatcherServlet {
 61  
 
 62  0
         private static final Logger LOG = Logger.getLogger(KSBDispatcherServlet.class);
 63  
 
 64  
         private static final long serialVersionUID = 6790121225857950019L;
 65  
         private KSBHttpInvokerHandler httpInvokerHandler;
 66  
         private ServletController cxfServletController;
 67  
 
 68  
         /**
 69  
          * Instantiate the WebApplicationContext for this servlet, either a default
 70  
          * XmlWebApplicationContext or a custom context class if set. This implementation
 71  
          * expects custom contexts to implement ConfigurableWebApplicationContext.
 72  
          * Can be overridden in subclasses.
 73  
          * @param parent the parent ApplicationContext to use, or <code>null</code> if none
 74  
          * @return the WebApplicationContext for this servlet
 75  
          * @throws BeansException if the context couldn't be initialized
 76  
          * @see #setContextClass
 77  
          * @see org.springframework.web.context.support.XmlWebApplicationContext
 78  
          */
 79  
         protected WebApplicationContext initWebApplicationContext() throws BeansException {
 80  0
                 return null;//we want to start spring all by ourselves
 81  
         }
 82  
 
 83  
         protected void initFrameworkServlet() throws ServletException, BeansException {
 84  0
                 this.httpInvokerHandler = new KSBHttpInvokerHandler();
 85  
                 
 86  0
         Bus bus = KSBServiceLocator.getCXFBus();
 87  
 
 88  0
         List<Interceptor<? extends Message>> inInterceptors = KSBServiceLocator.getInInterceptors();
 89  0
         if(inInterceptors != null) {
 90  0
                 List<Interceptor<? extends Message>> busInInterceptors = bus.getInInterceptors();
 91  0
                 busInInterceptors.addAll(inInterceptors);
 92  
         }
 93  
        
 94  0
         List<Interceptor<? extends Message>> outInterceptors = KSBServiceLocator.getOutInterceptors();
 95  0
         if(outInterceptors != null) {
 96  0
                 List<Interceptor<? extends Message>> busOutInterceptors = bus.getOutInterceptors();
 97  0
                 busOutInterceptors.addAll(outInterceptors);
 98  
         }
 99  
         
 100  0
                 ServletTransportFactory servletTransportFactory = KSBServiceLocator.getCXFServletTransportFactory();
 101  
                                 
 102  0
                 this.cxfServletController = new ServletController(servletTransportFactory, this.getServletConfig(), this.getServletContext(), bus);
 103  
                 
 104  0
                 if (!ConfigContext.getCurrentContextConfig().getDevMode()) {
 105  
                     // disable handling of URLs ending in /services which display CXF generated service lists
 106  0
                     this.cxfServletController.setHideServiceList(true);
 107  
                 }
 108  
                 
 109  0
                 this.setPublishEvents(false);
 110  0
         }
 111  
 
 112  
         protected HandlerAdapter getHandlerAdapter(Object handler) throws ServletException {
 113  0
                 if (handler instanceof HttpRequestHandler) {
 114  0
                         return new HttpRequestHandlerAdapter();
 115  0
                 } else if (handler instanceof Controller) {
 116  0
                         Object unwrappedHandler = ClassLoaderUtils.unwrapFromProxy(handler);
 117  0
                         if (unwrappedHandler instanceof CXFServletControllerAdapter) {
 118  
                                 // TODO this just seems weird as this controller is initially null when it's created, does there need to be some synchronization here?
 119  0
                                 ((CXFServletControllerAdapter)unwrappedHandler).setController(cxfServletController);
 120  
                         }                        
 121  0
                         return new SimpleControllerHandlerAdapter();
 122  
                 }
 123  0
                 throw new RiceRuntimeException("handler of type " + handler.getClass().getName() + " is not known and can't be used by " + KSBDispatcherServlet.class.getName());
 124  
         }
 125  
 
 126  
         /**
 127  
          * Return the HandlerExecutionChain for this request.
 128  
          * Try all handler mappings in order.
 129  
          * @param request current HTTP request
 130  
          * @param cache whether to cache the HandlerExecutionChain in a request attribute
 131  
          * @return the HandlerExceutionChain, or <code>null</code> if no handler could be found
 132  
          */
 133  
         protected HandlerExecutionChain getHandler(HttpServletRequest request, boolean cache) throws Exception {
 134  0
                 return this.httpInvokerHandler.getHandler(request);
 135  
         }
 136  
 
 137  
         @Override
 138  
         protected ModelAndView processHandlerException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
 139  
                 try {
 140  0
                         QName serviceName = this.httpInvokerHandler.getServiceNameFromRequest(request);
 141  0
                         LOG.info("Caught Exception from service " + serviceName, ex);
 142  0
                 } catch (Throwable throwable) {
 143  0
                         LOG.warn("Caught exception attempting to log exception thrown from remotely accessed service", throwable);
 144  0
                 }
 145  0
                 return null;
 146  
         }
 147  
 
 148  
         /**
 149  
          * Overrides the service method to replace the request and responses with one which will provide input and output streams for
 150  
          * verifying and signing the data.
 151  
          */
 152  
         @Override
 153  
         protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 154  0
                 if (isSecure(request)) {
 155  0
                         super.service(new SignatureVerifyingRequestWrapper(request), new SignatureSigningResponseWrapper(response));
 156  
                 } else {
 157  0
                         super.service(request, response);
 158  
                 }
 159  0
         }
 160  
 
 161  
         protected boolean isSecure(HttpServletRequest request) {
 162  0
                 QName serviceName = this.httpInvokerHandler.getServiceNameFromRequest(request);
 163  0
                 if (LOG.isDebugEnabled()) {
 164  0
                     LOG.debug("Checking service " + serviceName + " for security enabled");
 165  
                 }
 166  0
                 Endpoint endpoint = KsbApiServiceLocator.getServiceBus().getEndpoint(serviceName);
 167  0
                 if (endpoint == null) {
 168  0
                         LOG.error("Attempting to acquire non-existent service " + request.getRequestURI());
 169  0
                     throw new RiceRuntimeException("Attempting to acquire non-existent service.");
 170  
                 }
 171  0
                 ServiceConfiguration serviceConfiguration = endpoint.getServiceConfiguration();
 172  0
                 if (serviceConfiguration instanceof SoapServiceConfiguration) {
 173  0
                     return false;
 174  
                 }
 175  0
                 return serviceConfiguration.getBusSecurity();
 176  
         }
 177  
 }