1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
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 | |
|
56 | |
|
57 | |
|
58 | |
|
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 | |
|
70 | |
|
71 | |
|
72 | |
|
73 | |
|
74 | |
|
75 | |
|
76 | |
|
77 | |
|
78 | |
|
79 | |
protected WebApplicationContext initWebApplicationContext() throws BeansException { |
80 | 0 | return null; |
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 | |
|
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 | |
|
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 | |
|
128 | |
|
129 | |
|
130 | |
|
131 | |
|
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 | |
|
150 | |
|
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 | |
} |