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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
|
/*
* Copyright 2011 gitblit.com.
*
* 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 com.gitblit;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.security.Principal;
import java.util.Collection;
import java.util.Enumeration;
import java.util.Locale;
import java.util.Map;
import javax.servlet.AsyncContext;
import javax.servlet.DispatcherType;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletInputStream;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.servlet.http.Part;
/**
* ServletRequestWrapper is a pass-through/delegate wrapper class for a servlet
* request. This class is used in conjunction with ServletFilters, such as the
* AccessRestrictionFilter.
*
* The original request is wrapped by instances of this class and this class is
* set as the servlet request in the filter. This allows for specialized
* implementations of request methods, like getUserPrincipal() with delegation
* to the original request for any method not overridden.
*
* This class, by itself, is not altogether interesting. Subclasses of this
* class, however, are of interest.
*
* @author James Moger
*
*/
public abstract class ServletRequestWrapper implements HttpServletRequest {
protected final HttpServletRequest req;
public ServletRequestWrapper(HttpServletRequest req) {
this.req = req;
}
@Override
public Object getAttribute(String name) {
return req.getAttribute(name);
}
@Override
public Enumeration getAttributeNames() {
return req.getAttributeNames();
}
@Override
public String getCharacterEncoding() {
return req.getCharacterEncoding();
}
@Override
public void setCharacterEncoding(String env) throws UnsupportedEncodingException {
req.setCharacterEncoding(env);
}
@Override
public int getContentLength() {
return req.getContentLength();
}
@Override
public String getContentType() {
return req.getContentType();
}
@Override
public ServletInputStream getInputStream() throws IOException {
return req.getInputStream();
}
@Override
public String getParameter(String name) {
return req.getParameter(name);
}
@Override
public Enumeration getParameterNames() {
return req.getParameterNames();
}
@Override
public String[] getParameterValues(String name) {
return req.getParameterValues(name);
}
@Override
public Map getParameterMap() {
return req.getParameterMap();
}
@Override
public String getProtocol() {
return req.getProtocol();
}
@Override
public String getScheme() {
return req.getScheme();
}
@Override
public String getServerName() {
return req.getServerName();
}
@Override
public int getServerPort() {
return req.getServerPort();
}
@Override
public BufferedReader getReader() throws IOException {
return req.getReader();
}
@Override
public String getRemoteAddr() {
return req.getRemoteAddr();
}
@Override
public String getRemoteHost() {
return req.getRemoteHost();
}
@Override
public void setAttribute(String name, Object o) {
req.setAttribute(name, o);
}
@Override
public void removeAttribute(String name) {
req.removeAttribute(name);
}
@Override
public Locale getLocale() {
return req.getLocale();
}
@Override
public Enumeration getLocales() {
return req.getLocales();
}
@Override
public boolean isSecure() {
return req.isSecure();
}
@Override
public RequestDispatcher getRequestDispatcher(String path) {
return req.getRequestDispatcher(path);
}
@Override
@Deprecated
public String getRealPath(String path) {
return req.getRealPath(path);
}
@Override
public int getRemotePort() {
return req.getRemotePort();
}
@Override
public String getLocalName() {
return req.getLocalName();
}
@Override
public String getLocalAddr() {
return req.getLocalAddr();
}
@Override
public int getLocalPort() {
return req.getLocalPort();
}
@Override
public String getAuthType() {
return req.getAuthType();
}
@Override
public Cookie[] getCookies() {
return req.getCookies();
}
@Override
public long getDateHeader(String name) {
return req.getDateHeader(name);
}
@Override
public String getHeader(String name) {
return req.getHeader(name);
}
@Override
public Enumeration getHeaders(String name) {
return req.getHeaders(name);
}
@Override
public Enumeration getHeaderNames() {
return req.getHeaderNames();
}
@Override
public int getIntHeader(String name) {
return req.getIntHeader(name);
}
@Override
public String getMethod() {
return req.getMethod();
}
@Override
public String getPathInfo() {
return req.getPathInfo();
}
@Override
public String getPathTranslated() {
return req.getPathTranslated();
}
@Override
public String getContextPath() {
return req.getContextPath();
}
@Override
public String getQueryString() {
return req.getQueryString();
}
@Override
public String getRemoteUser() {
return req.getRemoteUser();
}
@Override
public boolean isUserInRole(String role) {
return req.isUserInRole(role);
}
@Override
public Principal getUserPrincipal() {
return req.getUserPrincipal();
}
@Override
public String getRequestedSessionId() {
return req.getRequestedSessionId();
}
@Override
public String getRequestURI() {
return req.getRequestURI();
}
@Override
public StringBuffer getRequestURL() {
return req.getRequestURL();
}
@Override
public String getServletPath() {
return req.getServletPath();
}
@Override
public HttpSession getSession(boolean create) {
return req.getSession(create);
}
@Override
public HttpSession getSession() {
return req.getSession();
}
@Override
public boolean isRequestedSessionIdValid() {
return req.isRequestedSessionIdValid();
}
@Override
public boolean isRequestedSessionIdFromCookie() {
return req.isRequestedSessionIdFromCookie();
}
@Override
public boolean isRequestedSessionIdFromURL() {
return req.isRequestedSessionIdFromURL();
}
@Override
@Deprecated
public boolean isRequestedSessionIdFromUrl() {
return req.isRequestedSessionIdFromUrl();
}
/*
* Servlet 3.0 Methods
*/
@Override
public boolean authenticate(HttpServletResponse response) throws IOException, ServletException {
return false;
}
@Override
public void login(String username, String password) throws ServletException {
}
@Override
public void logout() throws ServletException {
}
@Override
public Part getPart(String arg0) throws IOException, ServletException {
return req.getPart(arg0);
}
@Override
public Collection<Part> getParts() throws IOException, ServletException {
return req.getParts();
}
@Override
public AsyncContext getAsyncContext() {
return req.getAsyncContext();
}
@Override
public DispatcherType getDispatcherType() {
return req.getDispatcherType();
}
@Override
public ServletContext getServletContext() {
return req.getServletContext();
}
@Override
public boolean isAsyncStarted() {
return req.isAsyncStarted();
}
@Override
public boolean isAsyncSupported() {
return req.isAsyncStarted();
}
@Override
public AsyncContext startAsync() throws IllegalStateException {
return req.startAsync();
}
@Override
public AsyncContext startAsync(ServletRequest arg0, ServletResponse arg1)
throws IllegalStateException {
return req.startAsync(arg0, arg1);
}
}
|