-
Notifications
You must be signed in to change notification settings - Fork 572
/
Copy pathRequestStringBuilder.cs
402 lines (354 loc) · 14.6 KB
/
RequestStringBuilder.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
namespace Stripe.Infrastructure.Middleware
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Net;
using System.Reflection;
using Newtonsoft.Json;
public static class RequestStringBuilder
{
public static void ApplyParameterToRequestString(ref string requestString, string argument, string value)
{
var token = requestString.Contains("?") ? "&" : "?";
requestString = $"{requestString}{token}{argument}={WebUtility.UrlEncode(value)}";
}
/// <summary>
/// Creates the HTTP query string for a given options class.
/// </summary>
/// <param name="requestString">The string to which the query string will be appended.</param>
/// <param name="options">The options class for which to create the query string.</param>
public static void CreateQuery(ref string requestString, INestedOptions options)
{
List<Parameter> flatParams = FlattenParams(options);
foreach (Parameter param in flatParams)
{
RequestStringBuilder.ApplyParameterToRequestString(ref requestString, param.Key, param.Value);
}
}
/// <summary>
/// Returns a list of parameters for a given options class. If the class contains
/// containers (e.g. dictionaries, lists, arrays or other options classes), the parameters
/// will be computed recursively and a flat list will be returned.
/// </summary>
/// <param name="options">The options class for which to create the list of parameters.</param>
/// <returns>The list of parameters</returns>
private static List<Parameter> FlattenParams(INestedOptions options)
{
return FlattenParamsOptions(options, null);
}
/// <summary>
/// Returns a list of parameters for a given value. The value can be basically anything, as
/// long as it can be encoded in some way.
/// </summary>
/// <param name="value">The value for which to create the list of parameters.</param>
/// <param name="keyPrefix">The key under which new keys should be nested, if any.</param>
/// <returns>The list of parameters</returns>
private static List<Parameter> FlattenParamsValue(object value, string keyPrefix)
{
List<Parameter> flatParams = null;
if (value is INestedOptions)
{
flatParams = FlattenParamsOptions((INestedOptions)value, keyPrefix);
}
else if (IsDictionary(value))
{
// Cast to Dictionary<string, object>
Dictionary<string, object> dictionary = ((IDictionary)value).
Cast<dynamic>().
ToDictionary(
entry => (string)entry.Key,
entry => entry.Value);
flatParams = FlattenParamsDictionary(dictionary, keyPrefix);
}
else if (IsList(value))
{
// Cast to List<object>
List<object> list = ((IEnumerable)value).
Cast<dynamic>().
ToList();
flatParams = FlattenParamsList(list, keyPrefix);
}
else if (IsArray(value))
{
// Cast to object[]
object[] array = ((IEnumerable)value).
Cast<dynamic>().
ToArray();
flatParams = FlattenParamsArray(array, keyPrefix);
}
else if (IsEnum(value))
{
flatParams = new List<Parameter>();
// Use JsonConvert to grab the EnumMemberAttribute's Value for the enum element
string paramValue = JsonConvert.SerializeObject(value).Trim('"');
flatParams.Add(new Parameter(keyPrefix, paramValue));
}
else if (value is DateTime)
{
flatParams = new List<Parameter>();
DateTime? dateTime = (DateTime)value;
if (dateTime.HasValue)
{
flatParams.Add(new Parameter(keyPrefix, dateTime?.ConvertDateTimeToEpoch().ToString(CultureInfo.InvariantCulture)));
}
}
else if (value == null)
{
flatParams = new List<Parameter>();
flatParams.Add(new Parameter(keyPrefix, string.Empty));
}
else
{
flatParams = new List<Parameter>();
flatParams.Add(new Parameter(
keyPrefix,
string.Format(CultureInfo.InvariantCulture, "{0}", value)));
}
return flatParams;
}
/// <summary>
/// Returns a list of parameters for a given options class. If a key prefix is provided, the
/// keys for the new parameters will be nested under the key prefix. E.g. if the key prefix
/// `foo` is passed and the options class contains a parameter `bar`, then a parameter
/// with key `foo[bar]` will be returned.
/// </summary>
/// <param name="options">The options class for which to create the list of parameters.</param>
/// <param name="keyPrefix">The key under which new keys should be nested, if any.</param>
/// <returns>The list of parameters</returns>
private static List<Parameter> FlattenParamsOptions(INestedOptions options, string keyPrefix)
{
List<Parameter> flatParams = new List<Parameter>();
if (options == null)
{
return flatParams;
}
foreach (var property in options.GetType().GetRuntimeProperties())
{
var value = property.GetValue(options, null);
// Fields on a class which are never set by the user will contain null values (for
// reference types), so skip those to avoid encoding them in the request.
if (value == null)
{
continue;
}
var attribute = property.GetCustomAttribute<JsonPropertyAttribute>();
if (attribute == null)
{
continue;
}
string key = attribute.PropertyName;
string newPrefix = NewPrefix(key, keyPrefix);
flatParams.AddRange(FlattenParamsValue(value, newPrefix));
}
return flatParams;
}
/// <summary>
/// Returns a list of parameters for a given dictionary. If a key prefix is provided, the
/// keys for the new parameters will be nested under the key prefix. E.g. if the key prefix
/// `foo` is passed and the dictionary contains a key `bar`, then a parameter with key
/// `foo[bar]` will be returned.
/// </summary>
/// <param name="dictionary">The dictionary for which to create the list of parameters.</param>
/// <param name="keyPrefix">The key under which new keys should be nested, if any.</param>
/// <returns>The list of parameters</returns>
private static List<Parameter> FlattenParamsDictionary(Dictionary<string, object> dictionary, string keyPrefix)
{
List<Parameter> flatParams = new List<Parameter>();
if (dictionary == null)
{
return flatParams;
}
foreach (KeyValuePair<string, object> entry in dictionary)
{
string key = entry.Key;
object value = entry.Value;
string newPrefix = NewPrefix(key, keyPrefix);
flatParams.AddRange(FlattenParamsValue(value, newPrefix));
}
return flatParams;
}
/// <summary>
/// Returns a list of parameters for a given list of objects. The parameter keys will be
/// indexed under the `keyPrefix` parameter. E.g. if the `keyPrefix` is `foo`, then the
/// key for the first element's will be `foo[0]`, etc.
/// </summary>
/// <param name="list">The list for which to create the list of parameters.</param>
/// <param name="keyPrefix">The key under which new keys should be nested.</param>
/// <returns>The list of parameters</returns>
private static List<Parameter> FlattenParamsList(List<object> list, string keyPrefix)
{
List<Parameter> flatParams = new List<Parameter>();
if (list == null)
{
return flatParams;
}
if (!list.Any())
{
flatParams.Add(new Parameter(keyPrefix, string.Empty));
}
else
{
var listEnumerator = list.GetEnumerator();
for (int i = 0; listEnumerator.MoveNext() == true; i++)
{
object value = listEnumerator.Current;
string newPrefix = $"{keyPrefix}[{i}]";
flatParams.AddRange(FlattenParamsValue(value, newPrefix));
}
}
return flatParams;
}
/// <summary>
/// Returns a list of parameters for a given array of objects. The parameter keys will be
/// indexed under the `keyPrefix` parameter. E.g. if the `keyPrefix` is `foo`, then the
/// key for the first element's will be `foo[0]`, etc.
/// </summary>
/// <param name="array">The array for which to create the list of parameters.</param>
/// <param name="keyPrefix">The key under which new keys should be nested.</param>
/// <returns>The list of parameters</returns>
private static List<Parameter> FlattenParamsArray(object[] array, string keyPrefix)
{
List<Parameter> flatParams = new List<Parameter>();
if (array.Length == 0)
{
flatParams.Add(new Parameter(keyPrefix, string.Empty));
}
else
{
for (int i = 0; i < array.Length; i++)
{
object value = array[i];
string newPrefix = $"{keyPrefix}[{i}]";
flatParams.AddRange(FlattenParamsValue(value, newPrefix));
}
}
return flatParams;
}
/// <summary>
/// Checks if a given object is a dictionary.
/// </summary>
/// <param name="o">The object to check.</param>
/// <returns>True if the object is a dictionary, false otherwise.</returns>
private static bool IsDictionary(object o)
{
if (o == null)
{
return false;
}
var type = o.GetType();
if (!type.GetTypeInfo().IsGenericType)
{
return false;
}
if (type.GetTypeInfo().GetGenericTypeDefinition() != typeof(Dictionary<,>))
{
return false;
}
return true;
}
/// <summary>
/// Checks if a given object is a list.
/// </summary>
/// <param name="o">The object to check.</param>
/// <returns>True if the object is a list, false otherwise.</returns>
private static bool IsList(object o)
{
if (o == null)
{
return false;
}
var type = o.GetType();
if (!type.GetTypeInfo().IsGenericType)
{
return false;
}
if (type.GetTypeInfo().GetGenericTypeDefinition() != typeof(List<>))
{
return false;
}
return true;
}
/// <summary>
/// Checks if a given object is an array.
/// </summary>
/// <param name="o">The object to check.</param>
/// <returns>True if the object is an array, false otherwise.</returns>
private static bool IsArray(object o)
{
if (o == null)
{
return false;
}
var type = o.GetType();
return type.IsArray;
}
/// <summary>
/// Checks if a given object is an enum. Note that nullable enums count as enums.
/// </summary>
/// <param name="o">The object to check.</param>
/// <returns>True if the object is an enum (nullable or not), false otherwise.</returns>
private static bool IsEnum(object o)
{
if (o == null)
{
return false;
}
var type = o.GetType();
if (type.GetTypeInfo().IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>))
{
type = Nullable.GetUnderlyingType(type);
}
if (!type.GetTypeInfo().IsEnum)
{
return false;
}
return true;
}
/// <summary>
/// Computes the new key prefix, given a key and an existing prefix (if any).
/// E.g. if the key is `bar` and the existing prefix is `foo`, then `foo[bar]` is returned.
/// If a key already contains nested values, then only the non-nested part is nested under
/// the prefix, e.g. if the key is `bar[baz]` and the prefix is `foo`, then `foo[bar][baz]`
/// is returned.
/// If no prefix is provided, the key is returned unchanged.
/// </summary>
/// <param name="key">The key.</param>
/// <param name="keyPrefix">The existing key prefix, if any.</param>
/// <returns>The new key prefix.</returns>
private static string NewPrefix(string key, string keyPrefix)
{
if (string.IsNullOrEmpty(keyPrefix))
{
return key;
}
else
{
int i = key.IndexOf("[");
if (i == -1)
{
return $"{keyPrefix}[{key}]";
}
else
{
return $"{keyPrefix}[{key.Substring(0, i)}]{key.Substring(i)}";
}
}
}
/// <summary>
/// Represents a parameter in a query string, i.e. a key/value pair.
/// </summary>
internal sealed class Parameter
{
public readonly string Key;
public readonly string Value;
public Parameter(string key, string value)
{
this.Key = key;
this.Value = value;
}
}
}
}