summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/servlet/base/ProxyServlet.java
blob: 0784945abc502943e93488803f07a3e054a9fcb9 (plain)
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
/* CMS_SDK_LICENSE_TEXT */

package com.netscape.cms.servlet.base;

import java.io.IOException;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.StringTokenizer;
import java.util.Vector;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
import javax.servlet.http.HttpServletResponse;

import com.netscape.certsrv.apps.CMS;

/**
 * This is a servlet that proxies request to another servlet.
 * 
 * SERVLET REDIRECTION
 * Specify the URL of a servlet to forward the request to
 * destServlet: /ee/ca/newservlet
 * 
 * PARAMETER MAPPING
 * In the servlet configuration (as an init-param in web.xml) you
 * can optionally specify a value for the parameter 'parameterMap'
 * which contains a list of HTTP parameters which should be
 * translated to new names.
 * 
 * parameterMap: name1->newname1,name2->newname2
 * 
 * Optionally, names can be set to static values:
 * 
 * parameterMap: name1->name2=value
 * 
 * Examples:
 * Consider the following HTTP input parameters:
 * vehicle:car make:ford model:explorer
 * 
 * The following config strings will have this effect:
 * parameterMap: make->manufacturer,model->name=expedition,->suv=true
 * output: vehicle:car manufactuer:ford model:expedition suv:true
 * 
 * @version $Revision$, $Date$
 */
public class ProxyServlet extends HttpServlet {

    /**
     *
     */
    private static final long serialVersionUID = -2535349161521094539L;
    private String mDest = null;
    private String mDestContext = null;
    private String mSrcContext = null;
    private String mAppendPathInfo = null;
    private Vector mMatchStrings = new Vector();
    private String mDestServletOnNoMatch = null;
    private String mAppendPathInfoOnNoMatch = null;
    private Map mParamMap = new HashMap();
    private Map mParamValue = new HashMap();

    public ProxyServlet() {
    }

    private void parseParamTable(String s) {
        if (s == null)
            return;

        String[] params = s.split(",");
        for (int i = 0; i < params.length; i++) {
            String p = params[i];
            if (p != null) {
                String[] paramNames = p.split("->");
                if (paramNames.length != 2) {
                }
                String from = paramNames[0];
                String to = paramNames[1];
                if (from != null && to != null) {
                    String[] splitTo = to.split("=");
                    String toName = splitTo[0];
                    if (from.length() > 0) {
                        mParamMap.put(from, toName);
                    }
                    if (splitTo.length == 2) {
                        String toValue = splitTo[1];
                        String toValues[] = new String[1];
                        toValues[0] = toValue;
                        mParamValue.put(toName, toValues);
                    }
                }
            }
        }
    }

    public void init(ServletConfig sc) throws ServletException {
        super.init(sc);
        String mMatchStrs = sc.getInitParameter("matchURIStrings");
        if (mMatchStrs != null && (!mMatchStrs.equals(""))) {
            StringTokenizer st = new StringTokenizer(mMatchStrs, ",");
            while (st.hasMoreTokens()) {
                mMatchStrings.addElement(st.nextToken());
            }
        }
        mDestServletOnNoMatch = sc.getInitParameter("destServletOnNoMatch");
        mDestContext = sc.getInitParameter("destContext");
        mDest = sc.getInitParameter("destServlet");
        mSrcContext = sc.getInitParameter("srcContext");
        mAppendPathInfo = sc.getInitParameter("appendPathInfo");
        mAppendPathInfoOnNoMatch = sc.getInitParameter("appendPathInfoOnNoMatch");
        String map = sc.getInitParameter("parameterMap");
        if (map != null) {
            parseParamTable(map);
        }
    }

    public void service(HttpServletRequest req, HttpServletResponse res) throws
            IOException, ServletException {
        RequestDispatcher dispatcher = null;
        String dest = mDest;
        String uri = req.getRequestURI();

        // check if match strings are specified. If it is, we need
        // to deal with the alternate dest
        if (mMatchStrings.size() != 0) {
            boolean matched = false;
            for (int i = 0; i < mMatchStrings.size(); i++) {
                String t = (String) mMatchStrings.elementAt(i);
                if (uri.indexOf(t) != -1) {
                    matched = true;
                }
            }
            if (!matched) {
                dest = mDestServletOnNoMatch;
                // append Path info for OCSP request in Get method
                if (mAppendPathInfoOnNoMatch != null &&
                        !mAppendPathInfoOnNoMatch.equals("")) {
                    dest = dest + uri.replace(mAppendPathInfoOnNoMatch, "");
                }
            }
        }
        if (dest == null || dest.equals("")) {
            // mapping everything
            dest = uri;
            dest = dest.replaceFirst(mSrcContext, "");
        }
        if (mAppendPathInfo != null && !mAppendPathInfo.equals("")) {
            dest = dest + uri.replace(mAppendPathInfo, "");
        }
        if (mDestContext != null && !mDestContext.equals("")) {
            dispatcher = getServletContext().getContext(mDestContext).getRequestDispatcher(dest);
        } else {
            dispatcher = req.getRequestDispatcher(dest);
        }

        // If a parameter map was specified
        if (mParamMap != null && !mParamMap.isEmpty()) {
            // Make a new wrapper with the new parameters
            ProxyWrapper r = new ProxyWrapper(req);
            r.setParameterMapAndValue(mParamMap, mParamValue);
            req = r;
        }

        dispatcher.forward(req, res);
    }
}

class ProxyWrapper extends HttpServletRequestWrapper {
    private Map mMap = null;
    private Map mValueMap = null;

    public ProxyWrapper(HttpServletRequest req) {
        super(req);
    }

    public void setParameterMapAndValue(Map m, Map v) {
        if (m != null)
            mMap = m;
        if (v != null)
            mValueMap = v;
    }

    public Map getParameterMap() {
        try {
            // If we haven't specified any parameter mapping, just
            // use the regular implementation
            if (mMap == null)
                return super.getParameterMap();
            else {
                // Make a new Map for us to put stuff in
                Map n = new HashMap();
                // get the HTTP parameters the user supplied.
                Map m = super.getParameterMap();
                Set s = m.entrySet();
                Iterator i = s.iterator();
                while (i.hasNext()) {
                    Map.Entry me = (Map.Entry) i.next();
                    String name = (String) me.getKey();
                    String[] values = (String[]) (me.getValue());
                    String newname = null;
                    if (name != null) {
                        newname = (String) mMap.get(name);
                    }

                    // No mapping specified, just use existing name/value
                    if (newname == null || mValueMap == null) {
                        n.put(name, values);
                    } else { // new name specified
                        Object o = mValueMap.get(newname);
                        // check if new (static) value specified
                        if (o == null) {
                            n.put(newname, values);
                        } else {
                            String newvalues[] = (String[]) mValueMap.get(newname);
                            n.put(newname, newvalues);
                        }
                    }
                }
                // Now, deal with static values set in the config 
                // which weren't set in the HTTP request
                Set s2 = mValueMap.entrySet();
                Iterator i2 = s2.iterator();
                // Cycle through all the static values
                while (i2.hasNext()) {
                    Map.Entry me2 = (Map.Entry) i2.next();
                    String name2 = (String) me2.getKey();
                    if (n.get(name2) == null) {
                        String[] values2 = (String[]) me2.getValue();
                        // If the parameter is not set in the map
                        // Set it now
                        n.put(name2, values2);
                    }
                }

                return n;
            }
        } catch (NullPointerException npe) {
            CMS.debug(npe);
            return null;
        }
    }
}