-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathRequestExtensions.ResponseActions.cs
130 lines (115 loc) · 4.65 KB
/
RequestExtensions.ResponseActions.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
using System;
using System.Linq;
namespace KubeClient.Http
{
/// <summary>
/// <see cref="HttpRequest"/> / <see cref="IHttpRequest"/> extension methods for response-processing actions.
/// </summary>
public static partial class RequestExtensions
{
/// <summary>
/// Create a copy of the request with the specified response-processing action.
/// </summary>
/// <param name="request">
/// The HTTP request.
/// </param>
/// <param name="responseAction">
/// A delegate that configures incoming response messages.
/// </param>
/// <returns>
/// The new <see cref="HttpRequest"/>.
/// </returns>
public static HttpRequest WithResponseAction(this HttpRequest request, ResponseAction responseAction)
{
if (request == null)
throw new ArgumentNullException(nameof(request));
if (responseAction == null)
throw new ArgumentNullException(nameof(responseAction));
return request.Clone(properties =>
{
properties[nameof(HttpRequest.ResponseActions)] = request.ResponseActions.Add(
(message, context) => responseAction(message)
);
});
}
/// <summary>
/// Create a copy of the request with the specified response-processing action.
/// </summary>
/// <param name="request">
/// The HTTP request.
/// </param>
/// <param name="responseAction">
/// A delegate that configures incoming response messages.
/// </param>
/// <returns>
/// The new <see cref="HttpRequest"/>.
/// </returns>
public static HttpRequest WithResponseAction(this HttpRequest request, ResponseAction<object> responseAction)
{
if (request == null)
throw new ArgumentNullException(nameof(request));
if (responseAction == null)
throw new ArgumentNullException(nameof(responseAction));
return request.Clone(properties =>
{
properties[nameof(HttpRequest.ResponseActions)] = request.ResponseActions.Add(responseAction);
});
}
/// <summary>
/// Create a copy of the request with the specified response-processing actions.
/// </summary>
/// <param name="request">
/// The HTTP request.
/// </param>
/// <param name="responseActions">
/// A delegate that configures incoming response messages.
/// </param>
/// <returns>
/// The new <see cref="HttpRequest"/>.
/// </returns>
public static HttpRequest WithResponseAction(this HttpRequest request, params ResponseAction[] responseActions)
{
if (request == null)
throw new ArgumentNullException(nameof(request));
if (responseActions == null)
throw new ArgumentNullException(nameof(responseActions));
if (responseActions.Length == 0)
return request;
return request.Clone(properties =>
{
properties[nameof(HttpRequest.ResponseActions)] = request.ResponseActions.AddRange(
responseActions.Select(responseAction =>
{
ResponseAction<object> responseActionWithContext = (message, context) => responseAction(message);
return responseActionWithContext;
})
);
});
}
/// <summary>
/// Create a copy of the request with the specified response-processing actions.
/// </summary>
/// <param name="request">
/// The HTTP request.
/// </param>
/// <param name="responseActions">
/// A delegate that configures incoming response messages.
/// </param>
/// <returns>
/// The new <see cref="HttpRequest"/>.
/// </returns>
public static HttpRequest WithResponseAction(this HttpRequest request, params ResponseAction<object>[] responseActions)
{
if (request == null)
throw new ArgumentNullException(nameof(request));
if (responseActions == null)
throw new ArgumentNullException(nameof(responseActions));
if (responseActions.Length == 0)
return request;
return request.Clone(properties =>
{
properties[nameof(HttpRequest.ResponseActions)] = request.ResponseActions.AddRange(responseActions);
});
}
}
}