-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathHttpResourceModel.java
316 lines (280 loc) · 12.4 KB
/
HttpResourceModel.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/*
* Copyright © 2017-2019 Cask Data, Inc.
*
* Licensed 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.cdap.http.internal;
import io.cdap.http.ExceptionHandler;
import io.cdap.http.HttpHandler;
import io.cdap.http.HttpResponder;
import io.netty.handler.codec.http.HttpMethod;
import io.netty.handler.codec.http.HttpRequest;
import io.netty.handler.codec.http.HttpResponseStatus;
import io.netty.handler.codec.http.QueryStringDecoder;
import io.netty.handler.codec.http.cookie.Cookie;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.IdentityHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.annotation.Nullable;
import javax.ws.rs.CookieParam;
import javax.ws.rs.DefaultValue;
import javax.ws.rs.HeaderParam;
import javax.ws.rs.PathParam;
import javax.ws.rs.QueryParam;
/**
* HttpResourceModel contains information needed to handle Http call for a given path. Used as a destination in
* {@code PatternPathRouterWithGroups} to route URI paths to right Http end points.
*/
public final class HttpResourceModel {
private static final Set<Class<? extends Annotation>> SUPPORTED_PARAM_ANNOTATIONS =
Collections.unmodifiableSet(new HashSet<>(Arrays.asList(PathParam.class, QueryParam.class, HeaderParam.class,
CookieParam.class)));
private final Set<HttpMethod> httpMethods;
private final String path;
private final Method method;
private final HttpHandler handler;
private final List<Map<Class<? extends Annotation>, ParameterInfo<?>>> paramsInfo;
private final ExceptionHandler exceptionHandler;
private final boolean isSecured;
private final String[] requiredRoles;
private final CookieParser cookieParser = new CookieParser(false);
/**
* Construct a resource model with HttpMethod, method that handles httprequest, Object that contains the method.
*
* @param httpMethods Set of http methods that is handled by the resource.
* @param path path associated with this model.
* @param method handler that handles the http request.
* @param handler instance {@code HttpHandler}.
* @param exceptionHandler the ExceptionHandler.
* @param isSecured whether the resource is secured.
* @param requiredRoles the roles required for this resource.
*/
public HttpResourceModel(Set<HttpMethod> httpMethods, String path, Method method, HttpHandler handler,
ExceptionHandler exceptionHandler, boolean isSecured, String[] requiredRoles) {
this.httpMethods = httpMethods;
this.path = path;
this.method = method;
this.handler = handler;
this.paramsInfo = createParametersInfos(method);
this.exceptionHandler = exceptionHandler;
this.isSecured = isSecured;
this.requiredRoles = requiredRoles;
}
/**
* @return httpMethods.
*/
public Set<HttpMethod> getHttpMethod() {
return httpMethods;
}
/**
* @return path associated with this model.
*/
public String getPath() {
return path;
}
/**
* @return handler method that handles an http end-point.
*/
public Method getMethod() {
return method;
}
/**
* @return instance of {@code HttpHandler}.
*/
public HttpHandler getHttpHandler() {
return handler;
}
/**
* Handle http Request.
*
* @param request HttpRequest to be handled.
* @param responder HttpResponder to write the response.
* @param groupValues Values needed for the invocation.
*/
@SuppressWarnings("unchecked")
public HttpMethodInfo handle(HttpRequest request,
HttpResponder responder, Map<String, String> groupValues) throws Exception {
//TODO: Refactor group values.
try {
if (httpMethods.contains(request.method())) {
//Setup args for reflection call
Object [] args = new Object[paramsInfo.size()];
// Parse cookies
Map<String, Cookie> cookies = cookieParser.parseCookies(request);
int idx = 0;
for (Map<Class<? extends Annotation>, ParameterInfo<?>> info : paramsInfo) {
if (info.containsKey(PathParam.class)) {
args[idx] = getPathParamValue(info, groupValues);
}
if (info.containsKey(QueryParam.class)) {
args[idx] = getQueryParamValue(info, request.uri());
}
if (info.containsKey(HeaderParam.class)) {
args[idx] = getHeaderParamValue(info, request);
}
if (info.containsKey(CookieParam.class)) {
args[idx] = getCookieParamValue(info, request, cookies);
}
idx++;
}
return new HttpMethodInfo(method, handler, responder, args, exceptionHandler, isSecured, requiredRoles);
} else {
//Found a matching resource but could not find the right HttpMethod so return 405
throw new HandlerException(HttpResponseStatus.METHOD_NOT_ALLOWED, String.format
("Problem accessing: %s. Reason: Method Not Allowed", request.uri()));
}
} catch (Throwable e) {
throw new HandlerException(HttpResponseStatus.INTERNAL_SERVER_ERROR,
String.format("Error in executing request: %s %s", request.method(),
request.uri()), e);
}
}
@Override
public String toString() {
return "HttpResourceModel{" +
"httpMethods=" + httpMethods +
", path='" + path + '\'' +
", method=" + method +
", handler=" + handler +
'}';
}
@SuppressWarnings("unchecked")
private Object getPathParamValue(Map<Class<? extends Annotation>, ParameterInfo<?>> annotations,
Map<String, String> groupValues) throws Exception {
ParameterInfo<String> info = (ParameterInfo<String>) annotations.get(PathParam.class);
PathParam pathParam = info.getAnnotation();
String value = groupValues.get(pathParam.value());
if (value == null) {
throw new IllegalArgumentException("Could not resolve value for path parameter " + pathParam.value());
}
return info.convert(value);
}
@SuppressWarnings("unchecked")
private Object getQueryParamValue(Map<Class<? extends Annotation>, ParameterInfo<?>> annotations,
String uri) throws Exception {
ParameterInfo<List<String>> info = (ParameterInfo<List<String>>) annotations.get(QueryParam.class);
QueryParam queryParam = info.getAnnotation();
List<String> values = new QueryStringDecoder(uri).parameters().get(queryParam.value());
return (values == null) ? info.convert(defaultValue(annotations)) : info.convert(values);
}
@SuppressWarnings("unchecked")
private Object getHeaderParamValue(Map<Class<? extends Annotation>, ParameterInfo<?>> annotations,
HttpRequest request) throws Exception {
ParameterInfo<List<String>> info = (ParameterInfo<List<String>>) annotations.get(HeaderParam.class);
HeaderParam headerParam = info.getAnnotation();
String headerName = headerParam.value();
boolean hasHeader = request.headers().contains(headerName);
return hasHeader ? info.convert(request.headers().getAll(headerName)) : info.convert(defaultValue(annotations));
}
@SuppressWarnings("unchecked")
private Object getCookieParamValue(Map<Class<? extends Annotation>, ParameterInfo<?>> annotations,
HttpRequest request, Map<String, Cookie> cookies) throws Exception {
ParameterInfo<Cookie> info = (ParameterInfo<Cookie>) annotations.get(CookieParam.class);
CookieParam cookieParam = info.getAnnotation();
String cookieName = cookieParam.value();
boolean hasCookie = cookies.containsKey(cookieName);
// return hasCookie ? info.convert(cookies.get(cookieName)) : info.convert(defaultValue(annotations));
return hasCookie ? info.convert(cookies.get(cookieName)) : null;
}
/**
* Returns a List of String created based on the {@link DefaultValue} if it is presented in the annotations Map.
*
* @return a List of String or an empty List if {@link DefaultValue} is not presented
*/
private List<String> defaultValue(Map<Class<? extends Annotation>, ParameterInfo<?>> annotations) {
ParameterInfo<?> defaultInfo = annotations.get(DefaultValue.class);
if (defaultInfo == null) {
return Collections.emptyList();
}
DefaultValue defaultValue = defaultInfo.getAnnotation();
return Collections.singletonList(defaultValue.value());
}
/**
* Gathers all parameters' annotations for the given method, starting from the third parameter.
*/
private List<Map<Class<? extends Annotation>, ParameterInfo<?>>> createParametersInfos(Method method) {
if (method.getParameterTypes().length <= 2) {
return Collections.emptyList();
}
List<Map<Class<? extends Annotation>, ParameterInfo<?>>> result = new ArrayList<>();
Type[] parameterTypes = method.getGenericParameterTypes();
Annotation[][] parameterAnnotations = method.getParameterAnnotations();
for (int i = 2; i < parameterAnnotations.length; i++) {
Annotation[] annotations = parameterAnnotations[i];
Map<Class<? extends Annotation>, ParameterInfo<?>> paramAnnotations = new IdentityHashMap<>();
for (Annotation annotation : annotations) {
Class<? extends Annotation> annotationType = annotation.annotationType();
ParameterInfo<?> parameterInfo;
if (PathParam.class.isAssignableFrom(annotationType)) {
parameterInfo = ParameterInfo.create(annotation,
ParamConvertUtils.createPathParamConverter(parameterTypes[i]));
} else if (QueryParam.class.isAssignableFrom(annotationType)) {
parameterInfo = ParameterInfo.create(annotation,
ParamConvertUtils.createQueryParamConverter(parameterTypes[i]));
} else if (HeaderParam.class.isAssignableFrom(annotationType)) {
parameterInfo = ParameterInfo.create(annotation,
ParamConvertUtils.createHeaderParamConverter(parameterTypes[i]));
} else if (CookieParam.class.isAssignableFrom(annotationType)) {
parameterInfo = ParameterInfo.create(annotation,
ParamConvertUtils.createCookieParamConverter(parameterTypes[i]));
} else {
parameterInfo = ParameterInfo.create(annotation, null);
}
paramAnnotations.put(annotationType, parameterInfo);
}
// Must have either @PathParam, @QueryParam or @HeaderParam, but not two or more.
int presence = 0;
for (Class<? extends Annotation> annotationClass : paramAnnotations.keySet()) {
if (SUPPORTED_PARAM_ANNOTATIONS.contains(annotationClass)) {
presence++;
}
}
if (presence != 1) {
throw new IllegalArgumentException(
String.format("Must have exactly one annotation from %s for parameter %d in method %s",
SUPPORTED_PARAM_ANNOTATIONS, i, method));
}
result.add(Collections.unmodifiableMap(paramAnnotations));
}
return Collections.unmodifiableList(result);
}
/**
* A container class to hold information about a handler method parameters.
*/
private static final class ParameterInfo<T> {
private final Annotation annotation;
private final Converter<T, Object> converter;
static <V> ParameterInfo<V> create(Annotation annotation, @Nullable Converter<V, Object> converter) {
return new ParameterInfo<>(annotation, converter);
}
private ParameterInfo(Annotation annotation, @Nullable Converter<T, Object> converter) {
this.annotation = annotation;
this.converter = converter;
}
@SuppressWarnings("unchecked")
<V extends Annotation> V getAnnotation() {
return (V) annotation;
}
Object convert(T input) throws Exception {
return (converter == null) ? null : converter.convert(input);
}
}
}