This repository was archived by the owner on Sep 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathHttpService.cs
455 lines (408 loc) · 14.9 KB
/
HttpService.cs
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/*
* Copyright 2012 Splunk, Inc.
*
* 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.
*/
namespace Splunk
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Reflection;
using System.Text;
using System.Web;
/// <summary>
/// A generic HTTP/S layer that facilitates HTTP/S access to Splunk
/// </summary>
public class HttpService
{
/// <summary>
/// Gets or sets the host name of the service
/// </summary>
private string host;
/// <summary>
/// Gets or sets the port number of the service
/// </summary>
private int port;
/// <summary>
/// Gets or sets the prefix.
/// </summary>
private string prefix;
/// <summary>
/// Gets or sets the scheme used to access the service
/// </summary>
private string scheme;
/// <summary>
/// Constant for http scheme
/// </summary>
public const string SchemeHttp = "http";
/// <summary>
/// Constant for https scheme
/// </summary>
public const string SchemeHttps = "https";
/// <summary>
/// Constant for default scheme
/// </summary>
public const string DefaultScheme = SchemeHttps;
/// <summary>
/// Initializes a new instance of the <see cref="HttpService"/> class.
/// </summary>
public HttpService()
{
this.InitProperties();
this.SetTrustPolicy();
}
/// <summary>
/// Initializes a new instance of the <see cref="HttpService"/> class,
/// adding the host.
/// </summary>
/// <param name="host">The host name</param>
public HttpService(string host)
{
this.InitProperties();
this.Host = host;
this.SetTrustPolicy();
}
/// <summary>
/// Initializes a new instance of the <see cref="HttpService"/> class,
/// adding the host and the port.
/// </summary>
/// <param name="host">The hostname</param>
/// <param name="port">The port</param>
public HttpService(string host, int port)
{
this.InitProperties();
this.Host = host;
this.Port = port;
this.SetTrustPolicy();
}
/// <summary>
/// Initializes a new instance of the <see cref="HttpService"/> class,
/// adding the host, port and scheme.
/// </summary>
/// <param name="host">The hostname</param>
/// <param name="port">The port</param>
/// <param name="scheme">The scheme, either http, or https</param>
public HttpService(string host, int port, string scheme)
{
this.InitProperties();
this.Host = host;
this.Port = port;
scheme = scheme.ToLower();
if (scheme != SchemeHttp && scheme != SchemeHttps)
{
throw new Exception("Scheme not supported");
}
this.Scheme = scheme;
this.SetTrustPolicy();
}
/// <summary>
/// Gets or sets the hostname of this service
/// </summary>
/// <returns>The hostname</returns>
public string Host
{
get
{
return this.host;
}
set
{
this.host = value;
}
}
/// <summary>
/// Gets or sets the port of this service
/// </summary>
/// <returns>The port</returns>
public int Port
{
get
{
return this.port;
}
set
{
this.port = value;
}
}
/// <summary>
/// Gets or sets the URL prefix of this service, consisting of
/// scheme://host:port
/// </summary>
/// <returns>The URL prefix</returns>
public string Prefix
{
get
{
if (this.prefix == null)
{
this.prefix = string.Format(
"{0}://{1}:{2}", this.Scheme, this.Host, this.Port);
}
return this.prefix;
}
set
{
this.prefix = value;
}
}
/// <summary>
/// Gets or sets the scheme used by this service.
/// </summary>
/// <returns>The scheme</returns>
public string Scheme
{
get
{
return this.scheme;
}
set
{
this.scheme = value;
}
}
/// <summary>
/// Initialize the properties.
/// </summary>
private void InitProperties()
{
this.Host = "localhost";
this.Port = 8089;
this.Prefix = null;
this.Scheme = "https";
}
/// <summary>
/// Returns the count of arguments in the given dictionary
/// </summary>
/// <param name="args">The dictionary</param>
/// <returns>The number of elements in the dictionary</returns>
private static int Count(Dictionary<string, object> args)
{
if (args == null)
{
return 0;
}
return args.Count;
}
/// <summary>
/// Issues an HTTP GET request against the service using a given path.
/// </summary>
/// <param name="path">The path</param>
/// <returns>The responseMessage</returns>
public ResponseMessage Get(string path)
{
return this.Send(path, new RequestMessage("GET"));
}
/// <summary>
/// Issues an HTTP GET request against the service using a given path
/// and arguments
/// </summary>
/// <param name="path">The path</param>
/// <param name="args">The arguments</param>
/// <returns>The ResponseMessage</returns>
public ResponseMessage Get(string path, Dictionary<string, object> args)
{
if (Count(args) > 0)
{
path = path + "?" + Args.Encode(args);
}
RequestMessage request = new RequestMessage("GET");
return this.Send(path, request);
}
/// <summary>
/// Constructs a fully qualified URL for this service using a given path.
/// </summary>
/// <param name="path">The path</param>
/// <returns>The fully qualified URL</returns>
public Uri GetUrl(string path)
{
// Taken from http://stackoverflow.com/questions/781205/getting-a-url-with-an-url-encoded-slash
// WebRequest can munge an encoded URL, and we don't want it to.
// This technique forces WebRequest to leave the URL alone. There is
// no simple mechanism to ask .Net to do this, once there is, this
// code can be changed. This code also may break in the future, as
// it reaches into the class's non-public fields and whacks them
// with a hammer.
Uri uri = new Uri(this.Prefix + path);
string paq = uri.PathAndQuery; // need to access PathAndQuery
FieldInfo flagsFieldInfo =
typeof(Uri).GetField(
"m_Flags", BindingFlags.Instance | BindingFlags.NonPublic);
ulong flags = (ulong)flagsFieldInfo.GetValue(uri);
// Flags.PathNotCanonical|Flags.QueryNotCanonical = 0x30
flags &= ~((ulong)0x30);
flagsFieldInfo.SetValue(uri, flags);
return uri;
}
/// <summary>
/// Issues a POST request against the service using a given path.
/// </summary>
/// <param name="path">The path</param>
/// <returns>The <see cref="repsonseMessage"/></returns>
public ResponseMessage Post(string path)
{
return this.Post(path, null);
}
/// <summary>
/// Issues a POST request against the service using a given path and
/// arguments.
/// </summary>
/// <param name="path">The path</param>
/// <param name="args">The arguments</param>
/// <returns>The <see cref="repsonseMessage"/></returns>
public ResponseMessage
Post(string path, Dictionary<string, object> args)
{
RequestMessage request = new RequestMessage("POST");
if (Count(args) > 0)
{
request.Content = Args.Encode(args);
}
return this.Send(path, request);
}
/// <summary>
/// Issues a DELETE request against the service using a given path.
/// </summary>
/// <param name="path">The path</param>
/// <returns>The <see cref="repsonseMessage"/></returns>
public ResponseMessage Delete(string path)
{
RequestMessage request = new RequestMessage("DELETE");
return this.Send(path, request);
}
/// <summary>
/// Issues a DELETE request against the service using a given path and
/// arguments.
/// </summary>
/// <param name="path">The path</param>
/// <param name="args">The arguments</param>
/// <returns>The <see cref="repsonseMessage"/></returns>
public ResponseMessage
Delete(string path, Dictionary<string, object> args)
{
if (Count(args) > 0)
{
path = path + "?" + Args.Encode(args);
}
RequestMessage request = new RequestMessage("DELETE");
return this.Send(path, request);
}
/// <summary>
/// Open a TcpClient connected to the service
/// </summary>
/// <returns>The TcpClient object</returns>
public TcpClient Open()
{
this.SetTrustPolicy();
TcpClient sock = new TcpClient();
sock.Connect(this.Host, this.Port);
return sock.Connected ? sock : null;
}
/// <summary>
/// The main HTTP send method. Sends any of the supported HTTP/S
/// methods to the service.
/// </summary>
/// <param name="path">The path</param>
/// <param name="request">The requestMessage</param>
/// <returns>The responseMessage</returns>
public virtual ResponseMessage Send(string path, RequestMessage request)
{
// Construct a full URL to the resource
Uri url = this.GetUrl(path);
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url);
// build web request.
webRequest.Method = request.Method;
webRequest.AllowAutoRedirect = true;
// Add headers from request message
Dictionary<string, string> header = request.Header;
foreach (KeyValuePair<string, string> entry in header)
{
webRequest.Headers.Add(entry.Key, entry.Value);
}
webRequest.UserAgent = "splunk-sdk-csharp/0.1";
webRequest.Accept = "*/*";
if (request.Method.Equals("POST"))
{
webRequest.ContentType = "application/x-www-form-urlencoded";
}
// Write out request content, if any
object content = request.Content;
if (content != null)
{
// Get the bytes for proper encoded length when going over the
// wire.
byte[] bytes = Encoding.UTF8.GetBytes((string)content);
try
{
webRequest.ContentLength = bytes.GetLength(0);
Stream stream = webRequest.GetRequestStream();
StreamWriter streamWriter = new StreamWriter(stream);
streamWriter.Write(content);
streamWriter.Flush();
stream.Close();
}
catch (Exception e)
{
System.Console.WriteLine("Excetion: " + e.Message);
}
}
int status;
HttpWebResponse response = null;
try
{
response = (HttpWebResponse)webRequest.GetResponse();
status = response.StatusCode.GetHashCode();
}
catch (WebException ex)
{
if (ex.Status == WebExceptionStatus.ProtocolError &&
ex.Response != null)
{
var resp = (HttpWebResponse)ex.Response;
status = resp.StatusCode.GetHashCode();
}
throw;
}
Stream input;
input = status >= 400
? null
: response != null ? response.GetResponseStream() : null;
// If there is no input, then we can closeout this response
// straight away.
if (input == null)
{
response.Close();
response = null;
}
ResponseMessage returnResponse =
new ResponseMessage(status, input, response);
return returnResponse;
}
/// <summary>
/// Sets the trust policy for communication to the service. The default
/// is trust all servers.
/// </summary>
private void SetTrustPolicy()
{
if (ServicePointManager.ServerCertificateValidationCallback == null)
{
ServicePointManager.ServerCertificateValidationCallback =
(sender, certificate, chain, sslPolicyErrors) => true;
}
ServicePointManager.DefaultConnectionLimit = 100;
}
}
}