1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.ksb.messaging.serviceconnectors; |
17 | |
|
18 | |
import java.net.URL; |
19 | |
import java.util.Map; |
20 | |
import java.lang.SuppressWarnings; |
21 | |
|
22 | |
import org.apache.commons.collections.MapUtils; |
23 | |
import org.apache.cxf.binding.BindingFactoryManager; |
24 | |
import org.apache.cxf.interceptor.LoggingInInterceptor; |
25 | |
import org.apache.cxf.interceptor.LoggingOutInterceptor; |
26 | |
import org.apache.cxf.jaxrs.JAXRSBindingFactory; |
27 | |
import org.apache.cxf.jaxrs.client.JAXRSClientFactoryBean; |
28 | |
import org.apache.log4j.Logger; |
29 | |
import org.kuali.rice.core.api.exception.RiceRuntimeException; |
30 | |
import org.kuali.rice.core.api.security.credentials.CredentialsSource; |
31 | |
import org.kuali.rice.ksb.api.bus.support.RestServiceConfiguration; |
32 | |
import org.kuali.rice.ksb.api.messaging.ResourceFacade; |
33 | |
import org.kuali.rice.ksb.messaging.BusClientFailureProxy; |
34 | |
import org.kuali.rice.ksb.messaging.bam.BAMClientProxy; |
35 | |
import org.kuali.rice.ksb.security.soap.CredentialsOutHandler; |
36 | |
import org.kuali.rice.ksb.service.KSBServiceLocator; |
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
public class ResourceFacadeImpl implements ResourceFacade { |
45 | |
|
46 | 0 | private static final Logger LOG = Logger.getLogger(ResourceFacadeImpl.class); |
47 | |
|
48 | |
private final RestServiceConfiguration serviceConfiguration; |
49 | |
private CredentialsSource credentialsSource; |
50 | |
private URL actualEndpointUrl; |
51 | |
|
52 | 0 | public ResourceFacadeImpl(final RestServiceConfiguration serviceConfiguration, URL actualEndpointUrl) { |
53 | 0 | if (serviceConfiguration == null) { |
54 | 0 | throw new IllegalArgumentException("serviceConfiguration cannot be null"); |
55 | |
} |
56 | 0 | if (actualEndpointUrl == null) { |
57 | 0 | throw new IllegalArgumentException("actual endpoint url cannot be null"); |
58 | |
} |
59 | 0 | this.serviceConfiguration = serviceConfiguration; |
60 | 0 | this.actualEndpointUrl = actualEndpointUrl; |
61 | 0 | } |
62 | |
|
63 | |
|
64 | |
|
65 | |
|
66 | |
|
67 | |
|
68 | |
public <R> R getResource(Class<R> resourceClass) { |
69 | 0 | if (resourceClass == null) throw new IllegalArgumentException("resourceClass argument must not be null"); |
70 | |
|
71 | 0 | if (!serviceConfiguration.hasClass(resourceClass.getName())) { |
72 | 0 | throw new IllegalArgumentException("Service " + serviceConfiguration.getServiceName() + |
73 | |
" does not contain an implementation of type " + resourceClass.getName()); |
74 | |
} |
75 | |
|
76 | 0 | return getServiceProxy(resourceClass); |
77 | |
} |
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | |
|
83 | |
|
84 | |
public <R> R getResource(String resourceName) { |
85 | |
|
86 | 0 | String resourceClassName = null; |
87 | |
|
88 | 0 | Map<String, String> resourceToClassNameMap = serviceConfiguration.getResourceToClassNameMap(); |
89 | |
|
90 | 0 | if (resourceName != null && resourceToClassNameMap != null) |
91 | 0 | resourceClassName = resourceToClassNameMap.get(resourceName); |
92 | |
else |
93 | 0 | resourceClassName = serviceConfiguration.getResourceClass(); |
94 | |
|
95 | 0 | if (resourceClassName == null) |
96 | 0 | throw new RiceRuntimeException("No resource class name was found for the specified resourceName: " + resourceName); |
97 | |
|
98 | 0 | Class<?> resourceClass = null; |
99 | |
|
100 | |
try { |
101 | 0 | resourceClass = Class.forName(resourceClassName); |
102 | 0 | } catch (ClassNotFoundException e) { |
103 | 0 | throw new RiceRuntimeException("Configured resource class " + resourceClassName + |
104 | |
" in service " + serviceConfiguration.getServiceName() + " is not loadable", e); |
105 | 0 | } |
106 | |
|
107 | |
|
108 | |
|
109 | |
@SuppressWarnings("unchecked") |
110 | 0 | R serviceProxy = (R)getServiceProxy(resourceClass); |
111 | 0 | return serviceProxy; |
112 | |
} |
113 | |
|
114 | |
|
115 | |
|
116 | |
|
117 | |
|
118 | |
|
119 | |
|
120 | |
private <R> R getServiceProxy(Class<R> resourceClass) { |
121 | |
JAXRSClientFactoryBean clientFactory; |
122 | |
|
123 | 0 | clientFactory = new JAXRSClientFactoryBean(); |
124 | 0 | clientFactory.setBus(KSBServiceLocator.getCXFBus()); |
125 | |
|
126 | 0 | clientFactory.setResourceClass(resourceClass); |
127 | 0 | clientFactory.setAddress(actualEndpointUrl.toString()); |
128 | 0 | BindingFactoryManager bindingFactoryManager = KSBServiceLocator.getCXFBus().getExtension(BindingFactoryManager.class); |
129 | 0 | JAXRSBindingFactory bindingFactory = new JAXRSBindingFactory(); |
130 | 0 | bindingFactory.setBus(KSBServiceLocator.getCXFBus()); |
131 | |
|
132 | 0 | bindingFactoryManager.registerBindingFactory(JAXRSBindingFactory.JAXRS_BINDING_ID, bindingFactory); |
133 | |
|
134 | |
|
135 | 0 | if (LOG.isDebugEnabled()) { |
136 | 0 | clientFactory.getOutInterceptors().add(new LoggingOutInterceptor()); |
137 | |
} |
138 | |
|
139 | 0 | if (getCredentialsSource() != null) { |
140 | 0 | clientFactory.getOutInterceptors().add(new CredentialsOutHandler(getCredentialsSource(), serviceConfiguration)); |
141 | |
} |
142 | |
|
143 | 0 | if (LOG.isDebugEnabled()) { |
144 | 0 | clientFactory.getInInterceptors().add(new LoggingInInterceptor()); |
145 | |
} |
146 | |
|
147 | 0 | Object service = clientFactory.create(); |
148 | 0 | return getServiceProxyWithFailureMode(resourceClass, service, serviceConfiguration); |
149 | |
} |
150 | |
|
151 | |
public boolean isSingleResourceService() { |
152 | 0 | return MapUtils.isEmpty(serviceConfiguration.getResourceToClassNameMap()); |
153 | |
} |
154 | |
|
155 | |
public void setCredentialsSource(final CredentialsSource credentialsSource) { |
156 | 0 | this.credentialsSource = credentialsSource; |
157 | 0 | } |
158 | |
|
159 | |
protected CredentialsSource getCredentialsSource() { |
160 | 0 | return this.credentialsSource; |
161 | |
} |
162 | |
|
163 | |
protected <R> R getServiceProxyWithFailureMode(final Class<R> resourceClass, final Object service, final RestServiceConfiguration serviceConfiguration) { |
164 | 0 | Object bamWrappedClientProxy = BAMClientProxy.wrap(service, serviceConfiguration); |
165 | 0 | Object proxy = BusClientFailureProxy.wrap(bamWrappedClientProxy, serviceConfiguration); |
166 | 0 | if (!resourceClass.isInstance(proxy)) { |
167 | 0 | throw new IllegalArgumentException("Wrapped proxy is of the wrong type " + proxy.getClass() + ", expected " + resourceClass); |
168 | |
} |
169 | 0 | return resourceClass.cast(proxy); |
170 | |
} |
171 | |
|
172 | |
} |