cos removed from the open posting system + misc. updates here and there
[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 the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32 package mir.session;
33
34 import java.util.Arrays;
35 import java.util.List;
36 import java.util.Vector;
37 import javax.servlet.http.HttpServletRequest;
38 import javax.servlet.http.HttpSession;
39
40 import org.apache.commons.fileupload.FileItem;
41 import mir.util.HTTPParsedRequest;
42
43 public class HTTPAdapters {
44   public static class HTTPRequestAdapter implements Request {
45     private HttpServletRequest request;
46
47     public HTTPRequestAdapter(HttpServletRequest aRequest) {
48       request = aRequest;
49     }
50
51     public String getParameter(String aName) {
52       return request.getParameter(aName);
53     };
54
55     public List getUploadedFiles() {
56       return new Vector();
57     };
58
59     public List getParameters(String aName) {
60       return Arrays.asList(request.getParameterValues(aName));
61     };
62
63     public HttpServletRequest getRequest() {
64       return request;
65     }
66   }
67
68   public static class HTTPParsedRequestAdapter implements Request {
69     private HTTPParsedRequest request;
70
71     public HTTPParsedRequestAdapter(HTTPParsedRequest aRequest) {
72       request = aRequest;
73     }
74
75     public String getParameter(String aName) {
76       return request.getParameter(aName);
77     };
78
79     public List getParameters(String aName) {
80       return request.getParameterList(aName);
81     };
82
83     public List getUploadedFiles() {
84       List result = new Vector();
85       List files = request.getFiles();
86
87       for (int i=0; i<files.size(); i++) {
88         result.add(new CommonsUploadedFileAdapter((FileItem) files.get(i)));
89       }
90
91       return result;
92     };
93
94     public HttpServletRequest getRequest() {
95       return request.getRequest();
96     }
97   }
98
99   public static class HTTPSessionAdapter implements Session {
100     private HttpSession session;
101
102     public HTTPSessionAdapter(HttpSession aSession) {
103       session = aSession;
104     }
105     public Object getAttribute(String aName) {
106       return session.getAttribute(aName);
107     }
108
109     public void deleteAttribute(String aName) {
110       session.removeAttribute(aName);
111     }
112
113     public void setAttribute(String aName, Object aNewValue) {
114       session.setAttribute(aName, aNewValue);
115     }
116
117     public void terminate() {
118       session.invalidate();
119     }
120   }
121 }