78cd36209d5c0914b45a68696a606ce1e3dc3845
[mir.git] / source / mir / session / HTTPAdapters.java
1 /*
2  * Copyright (C) 2001, 2002 The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with  any library licensed under the Apache Software License,
22  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library
23  * (or with modified versions of the above that use the same license as the above),
24  * and distribute linked combinations including the two.  You must obey the
25  * GNU General Public License in all respects for all of the code used other than
26  * the above mentioned libraries.  If you modify this file, you may extend this
27  * exception to your version of the file, but you are not obligated to do so.
28  * If you do not wish to do so, delete this exception statement from your version.
29  */
30 package mir.session;
31
32 import java.util.*;
33 import java.net.InetAddress;
34 import java.net.UnknownHostException;
35 import javax.servlet.http.HttpServletRequest;
36 import javax.servlet.http.HttpSession;
37
38 import mir.util.HTTPParsedRequest;
39 import org.apache.commons.fileupload.FileItem;
40
41 public class HTTPAdapters {
42   public static class HTTPRequestAdapter implements Request {
43     private HttpServletRequest request;
44     private String cachedHostName = null;
45
46     public HTTPRequestAdapter(HttpServletRequest aRequest) {
47       request = aRequest;
48     }
49
50     public String getHeader(String aHeaderName) {
51       if (aHeaderName.equals("ip"))
52         return request.getRemoteAddr();
53
54       if (aHeaderName.equals("hostname")) {
55         if (aHeaderName.equals("hostname")) {
56           if (cachedHostName==null) {
57             try {
58               cachedHostName = InetAddress.getByName(request.getRemoteAddr()).getHostName();
59             }
60             catch (UnknownHostException e) {
61               cachedHostName = request.getRemoteAddr();
62             }
63           }
64
65           return cachedHostName;
66         }
67
68       }
69
70       return request.getHeader(aHeaderName);
71     };
72
73     public String getParameter(String aName) {
74       return request.getParameter(aName);
75     };
76
77     public List getPrefixedParameterNames(String aPrefix) {
78       List result = new ArrayList();
79
80       Enumeration enumeration = request.getParameterNames();
81       while (enumeration.hasMoreElements()) {
82         String name = (String) enumeration.nextElement();
83         if (name.startsWith(aPrefix)) {
84           result.add(name);
85         }
86       }
87
88       return result;
89     };
90
91     public List getUploadedFiles() {
92       return Collections.EMPTY_LIST;
93     };
94
95     public List getParameters(String aName) {
96       return Arrays.asList(request.getParameterValues(aName));
97     };
98
99     public HttpServletRequest getRequest() {
100       return request;
101     }
102   }
103
104   public static class HTTPParsedRequestAdapter implements Request {
105     private HTTPParsedRequest request;
106     private String cachedHostName = null;
107
108     public HTTPParsedRequestAdapter(HTTPParsedRequest aRequest) {
109       request = aRequest;
110     }
111
112     public String getHeader(String aHeaderName) {
113       if (aHeaderName.equals("ip")) {
114         // transparent proxies propagate the originating ip in the x-forwarded-for
115         // header. So if it's there, we should use it.
116         Enumeration headers = request.getRequest().getHeaders("x-forwarded-for");
117         if (headers.hasMoreElements()) {
118           return (String) headers.nextElement();
119         }
120         else {
121           return request.getRequest().getRemoteAddr();
122         }
123       }
124
125       if (aHeaderName.equals("hostname")) {
126         if (cachedHostName==null) {
127           try {
128             cachedHostName = InetAddress.getByName(getHeader("ip")).getHostName();
129           }
130           catch (UnknownHostException e) {
131             cachedHostName = request.getRequest().getRemoteAddr();
132           }
133         }
134
135         return cachedHostName;
136       }
137
138       return request.getHeader(aHeaderName);
139     }
140
141     public String getParameter(String aName) {
142       return request.getParameter(aName);
143     };
144
145     public List getParameters(String aName) {
146       return request.getParameterList(aName);
147     };
148
149     public List getPrefixedParameterNames(String aPrefix) {
150       List result = new ArrayList();
151
152       Iterator i = request.getParameterNames().iterator();
153
154       while (i.hasNext()) {
155         String name = (String) i.next();
156         if (name.startsWith(aPrefix)) {
157           result.add(name);
158         }
159       }
160
161       return result;
162     };
163
164     public List getUploadedFiles() {
165       List result = new ArrayList();
166       List files = request.getFiles();
167
168       for (int i=0; i<files.size(); i++) {
169         result.add(new CommonsUploadedFileAdapter((FileItem) files.get(i)));
170       }
171
172       return result;
173     };
174
175     public HttpServletRequest getRequest() {
176       return request.getRequest();
177     }
178   }
179
180   public static class HTTPSessionAdapter implements Session {
181     private HttpSession session;
182
183     public HTTPSessionAdapter(HttpSession aSession) {
184       session = aSession;
185     }
186     public Object getAttribute(String aName) {
187       return session.getAttribute(aName);
188     }
189
190     public void deleteAttribute(String aName) {
191       session.removeAttribute(aName);
192     }
193
194     public void setAttribute(String aName, Object aNewValue) {
195       if (aName.equals("$httpsessiontimeout")) {
196         if (aNewValue instanceof Number) {
197           try {
198             session.setMaxInactiveInterval( ( (Number) aNewValue).intValue());
199           }
200           catch (Throwable t) {
201           }
202         }
203       }
204       else {
205         if (aNewValue == null)
206           deleteAttribute(aName);
207         else
208           session.setAttribute(aName, aNewValue);
209       }
210     }
211
212     public void terminate() {
213       session.invalidate();
214     }
215   }
216 }