-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFluentHttpRequestExtensions.cs
More file actions
481 lines (420 loc) · 16.7 KB
/
FluentHttpRequestExtensions.cs
File metadata and controls
481 lines (420 loc) · 16.7 KB
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/MIT.
// Copyright (C) Leszek Pomianowski and Fluent Framework Contributors.
// All Rights Reserved.
using System.Net.Http;
using System.Text.Json;
namespace Fluent.Client;
public static class FluentHttpRequestExtensions
{
extension(FluentHttpRequest request)
{
/// <summary>
/// Adds an Authorization header to the request.
/// </summary>
/// <param name="username">The username.</param>
/// <param name="password">The password.</param>
/// <param name="token">The access token.</param>
/// <param name="kind">The token kind. Defaults to "Bearer".</param>
public FluentHttpRequest Authorize(
string? username = null,
string? password = null,
string? token = null,
AuthorizationType? kind = null
)
{
if (!string.IsNullOrEmpty(username) && !string.IsNullOrEmpty(password))
{
byte[] byteArray = System.Text.Encoding.ASCII.GetBytes($"{username}:{password}");
token = Convert.ToBase64String(byteArray);
kind ??= AuthorizationType.Basic;
}
else if (!string.IsNullOrEmpty(token))
{
kind ??= AuthorizationType.Bearer;
}
else
{
throw new ArgumentException("Either token or username and password must be provided.");
}
request.Contents.Headers ??= [];
request.Contents.Headers["Authorization"] = $"{kind} {token}";
return request;
}
/// <summary>
/// Sets the body of the HTTP request.
/// </summary>
public FluentHttpRequest With(object body)
{
request.Contents.Body = body;
return request;
}
/// <summary>
/// Sets the query parameters of the HTTP request from the properties of the provided object.
/// </summary>
public FluentHttpRequest Query(object query)
{
request.Contents.QueryParameters = query
.GetType()
.GetProperties()
.Where(prop => prop.GetValue(query) is not null)
.Select(x => new KeyValuePair<string, string?>(x.Name, x.GetValue(query)?.ToString()))
.ToList();
return request;
}
/// <summary>
/// Adds a single query parameter to the HTTP request.
/// </summary>
public FluentHttpRequest WithParameter(string key, object? value)
{
request.Contents.QueryParameters ??= new List<KeyValuePair<string, string?>>();
request.Contents.QueryParameters.Add(new KeyValuePair<string, string?>(key, value?.ToString()));
return request;
}
/// <summary>
/// Adds a custom header to the HTTP request.
/// </summary>
/// <param name="key">The header name.</param>
/// <param name="value">The header value.</param>
public FluentHttpRequest WithHeader(string key, string value)
{
request.Contents.Headers ??= [];
request.Contents.Headers[key] = value;
return request;
}
/// <summary>
/// Sets the timeout for the HTTP request.
/// </summary>
/// <param name="timeout">The timeout duration.</param>
public FluentHttpRequest WithTimeout(TimeSpan timeout)
{
request.Contents.Timeout = timeout;
return request;
}
/// <summary>
/// Sets the <c>"Content-Type"</c> header value for the request body.
/// </summary>
/// <param name="contentType">The content type.</param>
public FluentHttpRequest WithContentType(string contentType)
{
request.Contents.ContentType = contentType;
return request;
}
/// <summary>
/// Sets the <c>"Accept-Language"</c> header value.
/// </summary>
/// <param name="culture">The culture/language value.</param>
public FluentHttpRequest WithCulture(string culture)
{
request.Contents.Culture = culture;
return request;
}
/// <summary>
/// Sets the <c>"Accept"</c> header value.
/// </summary>
/// <param name="accept">The accepted content type.</param>
public FluentHttpRequest WithAccept(string accept)
{
request.Contents.AcceptedContentType = accept;
return request;
}
/// <summary>
/// Sets the <c>"User-Agent"</c> header value.
/// </summary>
/// <param name="userAgent">The user agent string.</param>
public FluentHttpRequest WithUserAgent(string userAgent)
{
request.Contents.UserAgent = userAgent;
return request;
}
/// <summary>
/// Sets custom <see cref="JsonSerializerOptions"/> for this request,
/// overriding the default <see cref="FluentHttpRequest.DefaultJsonOptions"/>.
/// The provided options are used for both serializing the request body and
/// deserializing the response content.
/// </summary>
/// <param name="options">The JSON serializer options to use for this request.</param>
public FluentHttpRequest WithJsonOptions(JsonSerializerOptions options)
{
request.Contents.JsonOptions = options;
return request;
}
/// <summary>
/// Sends the HTTP request asynchronously.
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<HttpResponseMessage> Send(CancellationToken cancellationToken = default) =>
request.SendAsync(cancellationToken);
/// <summary>
/// Sends the HTTP request asynchronously and deserializes the response content to the specified type.
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
public async Task<TResponse> Send<TResponse>(CancellationToken cancellationToken = default)
where TResponse : class
{
using HttpResponseMessage response = await request.SendAsync(cancellationToken);
string responseContent = await response.Content.ReadAsStringAsync();
TResponse? result = JsonSerializer.Deserialize<TResponse>(
responseContent,
request.Contents.JsonOptions ?? FluentHttpRequest.DefaultJsonOptions
);
if (result is null)
{
throw new InvalidOperationException("Failed to deserialize the response content.");
}
return result;
}
/// <summary>
/// Sends a POST request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<HttpResponseMessage> Post(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = HttpMethod.Post;
return request.SendAsync(cancellationToken);
}
/// <summary>
/// Sends a POST request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<TResponse> Post<TResponse>(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
where TResponse : class
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = HttpMethod.Post;
return request.Send<TResponse>(cancellationToken: cancellationToken);
}
/// <summary>
/// Sends a PUT request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<HttpResponseMessage> Put(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = HttpMethod.Put;
return request.SendAsync(cancellationToken);
}
/// <summary>
/// Sends a PUT request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<TResponse> Put<TResponse>(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
where TResponse : class
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = HttpMethod.Put;
return request.Send<TResponse>(cancellationToken: cancellationToken);
}
/// <summary>
/// Sends a DELETE request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<HttpResponseMessage> Delete(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = HttpMethod.Delete;
return request.SendAsync(cancellationToken);
}
/// <summary>
/// Sends a DELETE request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<TResponse> Delete<TResponse>(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
where TResponse : class
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = HttpMethod.Delete;
return request.Send<TResponse>(cancellationToken: cancellationToken);
}
/// <summary>
/// Sends a Options request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<HttpResponseMessage> Options(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = HttpMethod.Options;
return request.SendAsync(cancellationToken);
}
/// <summary>
/// Sends a Options request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<TResponse> Options<TResponse>(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
where TResponse : class
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = HttpMethod.Options;
return request.Send<TResponse>(cancellationToken: cancellationToken);
}
/// <summary>
/// Sends a Head request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<HttpResponseMessage> Head(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = HttpMethod.Head;
return request.SendAsync(cancellationToken);
}
/// <summary>
/// Sends a Head request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<TResponse> Head<TResponse>(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
where TResponse : class
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = HttpMethod.Head;
return request.Send<TResponse>(cancellationToken: cancellationToken);
}
/// <summary>
/// Sends a GET request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="query">The request query.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<HttpResponseMessage> Get(
string path = "",
object? query = null,
CancellationToken cancellationToken = default
)
{
request.Contents.Path = path;
request.Contents.HttpMethod = HttpMethod.Get;
if (query is not null)
{
request.Query(query);
}
return request.Send(cancellationToken: cancellationToken);
}
/// <summary>
/// Sends a GET request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="query">The request query.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<TResponse> Get<TResponse>(
string path = "",
object? query = null,
CancellationToken cancellationToken = default
)
where TResponse : class
{
request.Contents.Path = path;
request.Contents.HttpMethod = HttpMethod.Get;
if (query is not null)
{
request.Query(query);
}
return request.Send<TResponse>(cancellationToken: cancellationToken);
}
/// <summary>
/// Sends a PATCH request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<HttpResponseMessage> Patch(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
{
// TODO: Consider writing custom json patch impl
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = new HttpMethod("PATCH");
return request.SendAsync(cancellationToken);
}
/// <summary>
/// Sends a PATCH request.
/// </summary>
/// <param name="path">The request path.</param>
/// <param name="body">The request body.</param>
/// <param name="cancellationToken">The cancellation token.</param>
public Task<TResponse> Patch<TResponse>(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
where TResponse : class
{
request.Contents.Path = path;
request.Contents.Body = body;
request.Contents.HttpMethod = new HttpMethod("PATCH");
return request.Send<TResponse>(cancellationToken: cancellationToken);
}
}
}