This repository has been archived by the owner on Nov 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathPollyHttpClientBuilderExtensions.cs
238 lines (215 loc) · 10.5 KB
/
PollyHttpClientBuilderExtensions.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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Net.Http;
using Microsoft.Extensions.Http;
using Polly;
using Polly.Extensions.Http;
using Polly.Registry;
namespace Microsoft.Extensions.DependencyInjection
{
/// <summary>
/// Extensions methods for configuring <see cref="PolicyHttpMessageHandler"/> message handlers as part of
/// and <see cref="HttpClient"/> message handler pipeline.
/// </summary>
public static class PollyHttpClientBuilderExtensions
{
/// <summary>
/// Adds a <see cref="PolicyHttpMessageHandler"/> which will surround request execution with the provided
/// <see cref="IAsyncPolicy{HttpResponseMessage}"/>.
/// </summary>
/// <param name="builder">The <see cref="IHttpClientBuilder"/>.</param>
/// <param name="policy">The <see cref="IAsyncPolicy{HttpResponseMessage}"/>.</param>
/// <returns>An <see cref="IHttpClientBuilder"/> that can be used to configure the client.</returns>
/// <remarks>
/// <para>
/// See the remarks on <see cref="PolicyHttpMessageHandler"/> for guidance on configuring policies.
/// </para>
/// </remarks>
public static IHttpClientBuilder AddPolicyHandler(this IHttpClientBuilder builder, IAsyncPolicy<HttpResponseMessage> policy)
{
if (builder == null)
{
throw new ArgumentNullException(nameof(builder));
}
if (policy == null)
{
throw new ArgumentNullException(nameof(policy));
}
builder.AddHttpMessageHandler(() => new PolicyHttpMessageHandler(policy));
return builder;
}
/// <summary>
/// Adds a <see cref="PolicyHttpMessageHandler"/> which will surround request execution with a policy returned
/// by the <paramref name="policySelector"/>.
/// </summary>
/// <param name="builder">The <see cref="IHttpClientBuilder"/>.</param>
/// <param name="policySelector">
/// Selects an <see cref="IAsyncPolicy{HttpResponseMessage}"/> to apply to the current request.
/// </param>
/// <returns>An <see cref="IHttpClientBuilder"/> that can be used to configure the client.</returns>
/// <remarks>
/// <para>
/// See the remarks on <see cref="PolicyHttpMessageHandler"/> for guidance on configuring policies.
/// </para>
/// </remarks>
public static IHttpClientBuilder AddPolicyHandler(
this IHttpClientBuilder builder,
Func<HttpRequestMessage, IAsyncPolicy<HttpResponseMessage>> policySelector)
{
if (builder == null)
{
throw new ArgumentNullException(nameof(builder));
}
if (policySelector == null)
{
throw new ArgumentNullException(nameof(policySelector));
}
builder.AddHttpMessageHandler(() => new PolicyHttpMessageHandler(policySelector));
return builder;
}
/// <summary>
/// Adds a <see cref="PolicyHttpMessageHandler"/> which will surround request execution with a policy returned
/// by the <paramref name="policySelector"/>.
/// </summary>
/// <param name="builder">The <see cref="IHttpClientBuilder"/>.</param>
/// <param name="policySelector">
/// Selects an <see cref="IAsyncPolicy{HttpResponseMessage}"/> to apply to the current request.
/// </param>
/// <returns>An <see cref="IHttpClientBuilder"/> that can be used to configure the client.</returns>
/// <remarks>
/// <para>
/// See the remarks on <see cref="PolicyHttpMessageHandler"/> for guidance on configuring policies.
/// </para>
/// </remarks>
public static IHttpClientBuilder AddPolicyHandler(
this IHttpClientBuilder builder,
Func<IServiceProvider, HttpRequestMessage, IAsyncPolicy<HttpResponseMessage>> policySelector)
{
if (builder == null)
{
throw new ArgumentNullException(nameof(builder));
}
if (policySelector == null)
{
throw new ArgumentNullException(nameof(policySelector));
}
builder.AddHttpMessageHandler((services) =>
{
return new PolicyHttpMessageHandler((request) => policySelector(services, request));
});
return builder;
}
/// <summary>
/// Adds a <see cref="PolicyHttpMessageHandler"/> which will surround request execution with a policy returned
/// by the <see cref="IReadOnlyPolicyRegistry{String}"/>.
/// </summary>
/// <param name="builder">The <see cref="IHttpClientBuilder"/>.</param>
/// <param name="policyKey">
/// The key used to resolve a policy from the <see cref="IReadOnlyPolicyRegistry{String}"/>.
/// </param>
/// <returns>An <see cref="IHttpClientBuilder"/> that can be used to configure the client.</returns>
/// <remarks>
/// <para>
/// See the remarks on <see cref="PolicyHttpMessageHandler"/> for guidance on configuring policies.
/// </para>
/// </remarks>
public static IHttpClientBuilder AddPolicyHandlerFromRegistry(this IHttpClientBuilder builder, string policyKey)
{
if (builder == null)
{
throw new ArgumentNullException(nameof(builder));
}
if (policyKey == null)
{
throw new ArgumentNullException(nameof(policyKey));
}
builder.AddHttpMessageHandler((services) =>
{
var registry = services.GetRequiredService<IReadOnlyPolicyRegistry<string>>();
var policy = registry.Get<IAsyncPolicy<HttpResponseMessage>>(policyKey);
return new PolicyHttpMessageHandler(policy);
});
return builder;
}
/// <summary>
/// Adds a <see cref="PolicyHttpMessageHandler"/> which will surround request execution with a policy returned
/// by the <see cref="IReadOnlyPolicyRegistry{String}"/>.
/// </summary>
/// <param name="builder">The <see cref="IHttpClientBuilder"/>.</param>
/// <param name="policySelector">
/// Selects an <see cref="IAsyncPolicy{HttpResponseMessage}"/> to apply to the current request.
/// </param>
/// <returns>An <see cref="IHttpClientBuilder"/> that can be used to configure the client.</returns>
/// <remarks>
/// <para>
/// See the remarks on <see cref="PolicyHttpMessageHandler"/> for guidance on configuring policies.
/// </para>
/// </remarks>
public static IHttpClientBuilder AddPolicyHandlerFromRegistry(
this IHttpClientBuilder builder,
Func<IReadOnlyPolicyRegistry<string>, HttpRequestMessage, IAsyncPolicy<HttpResponseMessage>> policySelector)
{
if (builder == null)
{
throw new ArgumentNullException(nameof(builder));
}
if (policySelector == null)
{
throw new ArgumentNullException(nameof(policySelector));
}
builder.AddHttpMessageHandler((services) =>
{
var registry = services.GetRequiredService<IReadOnlyPolicyRegistry<string>>();
return new PolicyHttpMessageHandler((request) => policySelector(registry, request));
});
return builder;
}
/// <summary>
/// Adds a <see cref="PolicyHttpMessageHandler"/> which will surround request execution with a <see cref="Policy"/>
/// created by executing the provided configuration delegate. The policy builder will be preconfigured to trigger
/// application of the policy for requests that fail with conditions that indicate a transient failure.
/// </summary>
/// <param name="builder">The <see cref="IHttpClientBuilder"/>.</param>
/// <param name="configurePolicy">A delegate used to create a <see cref="IAsyncPolicy{HttpResponseMessage}"/>.</param>
/// <returns>An <see cref="IHttpClientBuilder"/> that can be used to configure the client.</returns>
/// <remarks>
/// <para>
/// See the remarks on <see cref="PolicyHttpMessageHandler"/> for guidance on configuring policies.
/// </para>
/// <para>
/// The <see cref="PolicyBuilder{HttpResponseMessage}"/> provided to <paramref name="configurePolicy"/> has been
/// preconfigured errors to handle errors in the following categories:
/// <list type="bullet">
/// <item><description>Network failures (as <see cref="HttpRequestException"/>)</description></item>
/// <item><description>HTTP 5XX status codes (server errors)</description></item>
/// <item><description>HTTP 408 status code (request timeout)</description></item>
/// </list>
/// </para>
/// <para>
/// The policy created by <paramref name="configurePolicy"/> will be cached indefinitely per named client. Policies
/// are generally designed to act as singletons, and can be shared when appropriate. To share a policy across multiple
/// named clients, first create the policy and then pass it to multiple calls to
/// <see cref="AddPolicyHandler(IHttpClientBuilder, IAsyncPolicy{HttpResponseMessage})"/> as desired.
/// </para>
/// </remarks>
public static IHttpClientBuilder AddTransientHttpErrorPolicy(
this IHttpClientBuilder builder,
Func<PolicyBuilder<HttpResponseMessage>, IAsyncPolicy<HttpResponseMessage>> configurePolicy)
{
if (builder == null)
{
throw new ArgumentNullException(nameof(builder));
}
if (configurePolicy == null)
{
throw new ArgumentNullException(nameof(configurePolicy));
}
var policyBuilder = HttpPolicyExtensions.HandleTransientHttpError();
// Important - cache policy instances so that they are singletons per handler.
var policy = configurePolicy(policyBuilder);
builder.AddHttpMessageHandler(() => new PolicyHttpMessageHandler(policy));
return builder;
}
}
}