-
Notifications
You must be signed in to change notification settings - Fork 573
/
Copy pathService.cs
454 lines (404 loc) · 14.1 KB
/
Service.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
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
namespace Stripe
{
using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Http;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using Stripe.Infrastructure;
/// <summary>Abstract base class for all services.</summary>
/// <typeparam name="TEntityReturned">
/// The type of <see cref="IStripeEntity"/> that this service returns.
/// </typeparam>
public abstract class Service<TEntityReturned>
where TEntityReturned : IStripeEntity
{
private IStripeClient client;
/// <summary>
/// Initializes a new instance of the <see cref="Service{EntityReturned}"/> class.
/// </summary>
protected Service()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="Service{EntityReturned}"/> class with a
/// custom <see cref="IStripeClient"/>.
/// </summary>
/// <param name="client">The client used by the service to send requests.</param>
protected Service(IStripeClient client)
{
this.client = client;
}
public abstract string BasePath { get; }
public virtual string BaseUrl => this.Client.ApiBase;
/// <summary>
/// Gets or sets the client used by this service to send requests. If no client was set when the
/// service instance was created, then the default client in
/// <see cref="StripeConfiguration.StripeClient"/> is used instead.
/// </summary>
/// <remarks>
/// Setting the client at runtime may not be thread-safe.
/// If you wish to use a custom client, it is recommended that you pass it to the service's constructor and not change it during the service's lifetime.
/// </remarks>
public IStripeClient Client
{
get => this.client ?? StripeConfiguration.StripeClient;
set => this.client = value;
}
protected TEntityReturned CreateEntity(BaseOptions options, RequestOptions requestOptions)
{
return this.Request(
HttpMethod.Post,
this.ClassUrl(),
options,
requestOptions);
}
protected Task<TEntityReturned> CreateEntityAsync(
BaseOptions options,
RequestOptions requestOptions,
CancellationToken cancellationToken)
{
return this.RequestAsync(
HttpMethod.Post,
this.ClassUrl(),
options,
requestOptions,
cancellationToken);
}
protected TEntityReturned DeleteEntity(
string id,
BaseOptions options,
RequestOptions requestOptions)
{
return this.Request(
HttpMethod.Delete,
this.InstanceUrl(id),
options,
requestOptions);
}
protected Task<TEntityReturned> DeleteEntityAsync(
string id,
BaseOptions options,
RequestOptions requestOptions,
CancellationToken cancellationToken)
{
return this.RequestAsync(
HttpMethod.Delete,
this.InstanceUrl(id),
options,
requestOptions,
cancellationToken);
}
protected TEntityReturned GetEntity(
string id,
BaseOptions options,
RequestOptions requestOptions)
{
return this.Request(
HttpMethod.Get,
this.InstanceUrl(id),
options,
requestOptions);
}
protected Task<TEntityReturned> GetEntityAsync(
string id,
BaseOptions options,
RequestOptions requestOptions,
CancellationToken cancellationToken)
{
return this.RequestAsync(
HttpMethod.Get,
this.InstanceUrl(id),
options,
requestOptions,
cancellationToken);
}
protected StripeList<TEntityReturned> ListEntities(
ListOptions options,
RequestOptions requestOptions)
{
return this.Request<StripeList<TEntityReturned>>(
HttpMethod.Get,
this.ClassUrl(),
options,
requestOptions);
}
protected Task<StripeList<TEntityReturned>> ListEntitiesAsync(
ListOptions options,
RequestOptions requestOptions,
CancellationToken cancellationToken)
{
return this.RequestAsync<StripeList<TEntityReturned>>(
HttpMethod.Get,
this.ClassUrl(),
options,
requestOptions,
cancellationToken);
}
protected IEnumerable<TEntityReturned> ListEntitiesAutoPaging(
ListOptions options,
RequestOptions requestOptions)
{
return this.ListRequestAutoPaging<TEntityReturned>(
this.ClassUrl(),
options,
requestOptions);
}
protected IAsyncEnumerable<TEntityReturned> ListEntitiesAutoPagingAsync(
ListOptions options,
RequestOptions requestOptions,
CancellationToken cancellationToken)
{
return this.ListRequestAutoPagingAsync<TEntityReturned>(
this.ClassUrl(),
options,
requestOptions,
cancellationToken);
}
protected TEntityReturned UpdateEntity(
string id,
BaseOptions options,
RequestOptions requestOptions)
{
return this.Request(
HttpMethod.Post,
this.InstanceUrl(id),
options,
requestOptions);
}
protected Task<TEntityReturned> UpdateEntityAsync(
string id,
BaseOptions options,
RequestOptions requestOptions,
CancellationToken cancellationToken)
{
return this.RequestAsync(
HttpMethod.Post,
this.InstanceUrl(id),
options,
requestOptions,
cancellationToken);
}
protected TEntityReturned Request(
HttpMethod method,
string path,
BaseOptions options,
RequestOptions requestOptions)
{
return this.Request<TEntityReturned>(
method,
path,
options,
requestOptions);
}
protected Task<TEntityReturned> RequestAsync(
HttpMethod method,
string path,
BaseOptions options,
RequestOptions requestOptions,
CancellationToken cancellationToken = default)
{
return this.RequestAsync<TEntityReturned>(
method,
path,
options,
requestOptions,
cancellationToken);
}
protected T Request<T>(
HttpMethod method,
string path,
BaseOptions options,
RequestOptions requestOptions)
where T : IStripeEntity
{
return this.RequestAsync<T>(method, path, options, requestOptions)
.ConfigureAwait(false).GetAwaiter().GetResult();
}
protected async Task<T> RequestAsync<T>(
HttpMethod method,
string path,
BaseOptions options,
RequestOptions requestOptions,
CancellationToken cancellationToken = default)
where T : IStripeEntity
{
requestOptions = this.SetupRequestOptions(requestOptions);
return await this.Client.RequestAsync<T>(
method,
path,
options,
requestOptions,
cancellationToken).ConfigureAwait(false);
}
protected IEnumerable<T> ListRequestAutoPaging<T>(
string url,
ListOptions options,
RequestOptions requestOptions)
where T : IStripeEntity
{
#if NET461
return
this.ListRequestAutoPagingSync<T>(url, options, requestOptions);
#else
return AsyncUtils.ToEnumerable(
this.ListRequestAutoPagingAsync<T>(url, options, requestOptions));
#endif
}
#if NET461
protected IEnumerable<T> ListRequestAutoPagingSync<T>(
string url,
ListOptions options,
RequestOptions requestOptions)
where T : IStripeEntity
{
var page = this.Request<StripeList<T>>(
HttpMethod.Get,
url,
options,
requestOptions);
options = options ?? new ListOptions();
bool iterateBackward = false;
// Backward iterating activates if we have an `EndingBefore`
// constraint and not a `StartingAfter` constraint
if (!string.IsNullOrEmpty(options.EndingBefore) && string.IsNullOrEmpty(options.StartingAfter))
{
iterateBackward = true;
}
while (true)
{
if (iterateBackward)
{
page.Reverse();
}
string itemId = null;
foreach (var item in page)
{
// Elements in `StripeList` instances are decoded by `StripeObjectConverter`,
// which returns `null` for objects it doesn't know how to decode.
// When auto-paginating, we simply ignore these null elements but still return
// other elements.
if (item == null)
{
continue;
}
itemId = ((IHasId)item).Id;
yield return item;
}
if (!page.HasMore || string.IsNullOrEmpty(itemId))
{
break;
}
if (iterateBackward)
{
options.EndingBefore = itemId;
}
else
{
options.StartingAfter = itemId;
}
page = this.Request<StripeList<T>>(
HttpMethod.Get,
url,
options,
requestOptions);
}
}
#endif
protected async IAsyncEnumerable<T> ListRequestAutoPagingAsync<T>(
string url,
ListOptions options,
RequestOptions requestOptions,
[EnumeratorCancellation] CancellationToken cancellationToken = default)
where T : IStripeEntity
{
var page = await this.RequestAsync<StripeList<T>>(
HttpMethod.Get,
url,
options,
requestOptions,
cancellationToken);
options = options ?? new ListOptions();
bool iterateBackward = false;
// Backward iterating activates if we have an `EndingBefore`
// constraint and not a `StartingAfter` constraint
if (!string.IsNullOrEmpty(options.EndingBefore) && string.IsNullOrEmpty(options.StartingAfter))
{
iterateBackward = true;
}
while (true)
{
cancellationToken.ThrowIfCancellationRequested();
if (iterateBackward)
{
page.Reverse();
}
string itemId = null;
foreach (var item in page)
{
cancellationToken.ThrowIfCancellationRequested();
// Elements in `StripeList` instances are decoded by `StripeObjectConverter`,
// which returns `null` for objects it doesn't know how to decode.
// When auto-paginating, we simply ignore these null elements but still return
// other elements.
if (item == null)
{
continue;
}
itemId = ((IHasId)item).Id;
yield return item;
}
if (!page.HasMore || string.IsNullOrEmpty(itemId))
{
break;
}
if (iterateBackward)
{
options.EndingBefore = itemId;
}
else
{
options.StartingAfter = itemId;
}
page = await this.RequestAsync<StripeList<T>>(
HttpMethod.Get,
url,
options,
requestOptions,
cancellationToken);
}
}
protected RequestOptions SetupRequestOptions(RequestOptions requestOptions)
{
if (requestOptions == null)
{
requestOptions = new RequestOptions();
}
requestOptions.BaseUrl = requestOptions.BaseUrl ?? this.BaseUrl;
return requestOptions;
}
protected virtual string ClassUrl()
{
return this.BasePath;
}
protected virtual string InstanceUrl(string id)
{
if (string.IsNullOrWhiteSpace(id))
{
throw new ArgumentException(
"The resource ID cannot be null or whitespace.",
nameof(id));
}
return $"{this.ClassUrl()}/{WebUtility.UrlEncode(id)}";
}
private static bool IsStripeList<T>()
{
var typeInfo = typeof(T).GetTypeInfo();
return typeInfo.IsGenericType
&& typeInfo.GetGenericTypeDefinition() == typeof(StripeList<>);
}
}
}