-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHttpClientExtensions.cs
More file actions
217 lines (197 loc) · 9.27 KB
/
HttpClientExtensions.cs
File metadata and controls
217 lines (197 loc) · 9.27 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
// 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 HttpResponseMessage = System.Net.Http.HttpResponseMessage;
namespace Fluent.Client;
public static class HttpClientExtensions
{
extension(HttpClient client)
{
/// <summary>
/// Starts defining a fluent HTTP request with the provided body content.
/// </summary>
/// <param name="body">The request body.</param>
public FluentHttpRequest With<TRequest>(TRequest body)
where TRequest : class => new(client, new FluentHttpRequestContents { Body = body });
/// <summary>
/// Starts defining a fluent HTTP request with the specified authorization credentials.
/// </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
) => new FluentHttpRequest(client).Authorize(username, password, token, kind);
/// <summary>
/// Sets the query parameters of the HTTP request from the properties of the provided object.
/// </summary>
public FluentHttpRequest Query(object query) => new FluentHttpRequest(client).Query(query);
/// <summary>
/// Adds a single query parameter to the HTTP request.
/// </summary>
public FluentHttpRequest WithParameter(string key, object? value) =>
new FluentHttpRequest(client).WithParameter(key, value);
/// <summary>
/// Sends an HTTP POST request asynchronously.
/// </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
) => new FluentHttpRequest(client).Post(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP POST request asynchronously and deserializes the JSON response.
/// </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 =>
new FluentHttpRequest(client).Post<TResponse>(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP PUT request asynchronously.
/// </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
) => new FluentHttpRequest(client).Put(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP PUT request asynchronously and deserializes the JSON response.
/// </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 =>
new FluentHttpRequest(client).Put<TResponse>(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP PATCH request asynchronously.
/// </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
) => new FluentHttpRequest(client).Patch(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP PATCH request asynchronously and deserializes the JSON response.
/// </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 =>
new FluentHttpRequest(client).Patch<TResponse>(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP HEAD request asynchronously.
/// </summary>
public Task<HttpResponseMessage> Head(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
) => new FluentHttpRequest(client).Head(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP HEAD request asynchronously and deserializes the JSON response.
/// </summary>
public Task<TResponse> Head<TResponse>(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
where TResponse : class =>
new FluentHttpRequest(client).Head<TResponse>(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP OPTIONS request asynchronously.
/// </summary>
public Task<HttpResponseMessage> Options(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
) => new FluentHttpRequest(client).Options(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP OPTIONS request asynchronously and deserializes the JSON response.
/// </summary>
public Task<TResponse> Options<TResponse>(
string path = "",
object? body = null,
CancellationToken cancellationToken = default
)
where TResponse : class =>
new FluentHttpRequest(client).Options<TResponse>(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP DELETE request asynchronously.
/// </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
) => new FluentHttpRequest(client).Delete(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP DELETE request asynchronously and deserializes the JSON response.
/// </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 =>
new FluentHttpRequest(client).Delete<TResponse>(path, body, cancellationToken);
/// <summary>
/// Sends an HTTP GET request asynchronously.
/// </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
) => new FluentHttpRequest(client).Get(path, query, cancellationToken);
/// <summary>
/// Sends an HTTP GET request asynchronously and deserializes the JSON response.
/// </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 =>
new FluentHttpRequest(client).Get<TResponse>(path, query, cancellationToken);
}
}