summaryrefslogtreecommitdiff
path: root/qpid/tools/src/java/qpid-qmf2-rest/src/main/java/org/apache/qpid/restapi/httpserver/HttpExchangeTransaction.java
blob: 78932ec399062f9c25f127f42500d48e2cd8ba45 (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
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
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.qpid.restapi.httpserver;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.List;
import java.util.Map;

import com.sun.net.httpserver.Headers;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpPrincipal;

import org.apache.qpid.restapi.HttpTransaction;

/**
 * This class provides an implementation of the HttpTransaction interface that wraps com.sun.net.httpserver.HttpExchange
 * in order to provide an implementation neutral facade to the Server classes.
 *
 * @author Fraser Adams
 */
public final class HttpExchangeTransaction implements HttpTransaction
{
    final HttpExchange _exchange;

    /**
     * Construct an HttpExchangeTransaction from an HttpExchange object.
     */
    public HttpExchangeTransaction(final HttpExchange exchange)
    {
        _exchange = exchange;
    }

    /**
     * Log the HTTP request information (primarily for debugging purposes)
     */
    public void logRequest()
    {
        System.out.println(_exchange.getRequestMethod() + " " + _exchange.getRequestURI());
        for (Map.Entry<String, List<String>> header : _exchange.getRequestHeaders().entrySet())
        {
            System.out.println(header);
        }
        System.out.println("From: " + getRemoteHost() + ":" + getRemotePort());
    }

    /**
     * Return the content passed in the request from the client as a Stream.
     * @return the content passed in the request from the client as a Stream.
     */
    public InputStream getRequestStream() throws IOException
    {
        return _exchange.getRequestBody();
    }

    /**
     * Return the content passed in the request from the client as a String.
     * @return the content passed in the request from the client as a String.
     */
    public String getRequestString() throws IOException
    {
        return new String(getRequest());
    }


    /**
     * Return the content passed in the request from the client as a byte[].
     * @return the content passed in the request from the client as a byte[].
     */
    public byte[] getRequest() throws IOException
    {
        InputStream is = _exchange.getRequestBody();

        // Convert InputStream to byte[].
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        byte[] buffer = new byte[1024];
        int len;
        while ((len = is.read(buffer, 0, 1024)) != -1)
        {
            bos.write(buffer, 0, len);
        }
        return bos.toByteArray();
    }

    /**
     * Send the content passed as a String as an HTTP response back to the client.
     * @param status the HTTP status code e.g. 200 for OK.
     * @param mimeType the mimeType of the response content e.g. text/plain, text/xml, image/jpeg etc.
     * @param content the content of the response passed as a String.
     */
    public void sendResponse(final int status, final String mimeType, final String content) throws IOException
    {
        if (content == null)
        { // If response length has the value -1 then no response body is being sent.
            _exchange.getResponseHeaders().set("Content-Type", mimeType);
            _exchange.sendResponseHeaders(status, -1);
            _exchange.close();
        }
        else
        {
            sendResponse(status, mimeType, content.getBytes());
        }
    }

    /**
     * Send the content passed as a byte[] as an HTTP response back to the client.
     * @param status the HTTP status code e.g. 200 for OK.
     * @param mimeType the mimeType of the response content e.g. text/plain, text/xml, image/jpeg etc.
     * @param content the content of the response passed as a byte[].
     */
    public void sendResponse(final int status, final String mimeType, final byte[] content) throws IOException
    {
        _exchange.getResponseHeaders().set("Content-Type", mimeType);
        if (content == null)
        { // If response length has the value -1 then no response body is being sent. 
            _exchange.sendResponseHeaders(status, -1);
            _exchange.close();
        }
        else
        {
            _exchange.sendResponseHeaders(status, content.length);
            OutputStream os = _exchange.getResponseBody();
            os.write(content);
            os.flush();
            os.close();
            _exchange.close();
        }   
    }

    /**
     * Send the content passed as an InputStream as an HTTP response back to the client.
     * @param status the HTTP status code e.g. 200 for OK.
     * @param mimeType the mimeType of the response content e.g. text/plain, text/xml, image/jpeg etc.
     * @param is the content of the response passed as an InputStream.
     */
    public void sendResponse(final int status, final String mimeType, final InputStream is) throws IOException
    {
        _exchange.getResponseHeaders().set("Content-Type", mimeType);
        if (is == null)
        { // If response length has the value -1 then no response body is being sent.
            _exchange.sendResponseHeaders(status, -1);
            _exchange.close();
        }
        else
        {
            _exchange.sendResponseHeaders(status, 0); // For a stream we set to zero to force chunked transfer encoding.
            OutputStream os = _exchange.getResponseBody();

            byte[] buffer = new byte[8192];
            while (true)
            {
                int read = is.read(buffer, 0, buffer.length);
                if (read == -1) // Loop until EOF is reached
                {
                    break;
                }
                os.write(buffer, 0, read);
            }
          
            os.flush();
            os.close();
            _exchange.close();
        }
    }

    /**
     * Returns the Internet Protocol (IP) address of the client or last proxy that sent the request.
     * @return the Internet Protocol (IP) address of the client or last proxy that sent the request.
     */
    public String getRemoteAddr()
    {
        return _exchange.getRemoteAddress().getAddress().getHostAddress();
    }

    /**
     * Returns the fully qualified name of the client or the last proxy that sent the request.
     * @return the fully qualified name of the client or the last proxy that sent the request.
     */
    public String getRemoteHost()
    {
        return _exchange.getRemoteAddress().getHostName();
    }

    /**
     * Returns the Internet Protocol (IP) source port of the client or last proxy that sent the request.
     * @return the Internet Protocol (IP) source port of the client or last proxy that sent the request.
     */
    public int getRemotePort()
    {
        return _exchange.getRemoteAddress().getPort();
    }

    /**
     * Returns a String containing the name of the current authenticated user. If the user has not been authenticated, 
     * the method returns null.
     * @return a String containing the name of the user making this request; null if the user has not been authenticated.
     */
    public String getPrincipal()
    {
        HttpPrincipal principal = _exchange.getPrincipal();
        return principal == null ? null : principal.getUsername();
    }

    /**
     * Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT.
     * @return a String specifying the name of the method with which this request was made.
     */
    public String getMethod()
    {
        return _exchange.getRequestMethod();
    }

    /**
     * Returns the part of this request's URL from the protocol name up to the query string in the first line of
     * the HTTP request.
     * @return a String containing the part of the URL from the protocol name up to the query string.
     */
    public String getRequestURI()
    {
        return _exchange.getRequestURI().getPath();
    }

    /**
     * Sets a response header with the given name and value. If the header had already been set, the new value
     * overwrites the previous one.
     * @param name a String specifying the header name.
     * @param value a String specifying the header value. If it contains octet string, it should be encoded according
     *        to RFC 2047.
     */
    public void setHeader(final String name, final String value)
    {
        _exchange.getResponseHeaders().set(name, value);
    }

    /**
     * Returns the value of the specified request header as a String. If the request did not include a header of the 
     * specified name, this method returns null. If there are multiple headers with the same name, this method returns 
     * the first head in the request. The header name is case insensitive. You can use this method with any request 
     * header.
     * @param name a String specifying the header name.
     * @return a String containing the value of the requested header, or null if the request does not have a header of 
     *         that name.
     */
    public String getHeader(final String name)
    {
        return _exchange.getRequestHeaders().getFirst(name);
    }

    /**
     * Returns the String value of the specified cookie.
     * @param name a String specifying the cookie name.
     */
    public String getCookie(final String name)
    {
        Headers headers = _exchange.getRequestHeaders();
        if (!headers.containsKey("Cookie"))
        {
            return null;
        }

        List<String> values = headers.get("cookie");
        for (String value : values)
        {
            String[] cookies = value.split(";");
            for (String cookie : cookies)
            {
                String[] cdata = cookie.split("=");
                if (cdata[0].trim().equals(name))
                {
                    //return URLDecode(cdata[1]);
                    return cdata[1];
                }
            }
        }
        return null;
    }

    /**
     * Adds the specified cookie to the response. This method can be called multiple times to set more than one cookie.
     * @param name a String specifying the cookie name.
     * @param value a String specifying the cookie value.
     */
    public void addCookie(final String name, final String value)
    {
        //String data = name + "=" + URLEncode(value) + "; path=/";
        String data = name + "=" + value + "; path=/";
        _exchange.getResponseHeaders().add("Set-Cookie", data);
    }
}