-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCircuitBreakingBookingProxy.cs
More file actions
91 lines (85 loc) · 2.96 KB
/
Copy pathCircuitBreakingBookingProxy.cs
File metadata and controls
91 lines (85 loc) · 2.96 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
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using BookFast.Web.Contracts;
using BookFast.Web.Contracts.Exceptions;
using BookFast.Web.Contracts.Models;
using Microsoft.Rest;
using Polly;
using Polly.CircuitBreaker;
namespace BookFast.Web.Proxy
{
internal class CircuitBreakingBookingProxy : IBookingProxy
{
private readonly IBookingProxy innerProxy;
private readonly CircuitBreakerPolicy breaker =
Policy.Handle<HttpOperationException>(ex => ex.StatusCode() >= 500 || ex.StatusCode() == 429)
.CircuitBreakerAsync(
exceptionsAllowedBeforeBreaking: 2,
durationOfBreak: TimeSpan.FromMinutes(1));
public CircuitBreakingBookingProxy(IBookingProxy innerProxy)
{
this.innerProxy = innerProxy;
}
public async Task BookAsync(string userId, int accommodationId, BookingDetails details)
{
try
{
await breaker.ExecuteAsync(() => innerProxy.BookAsync(userId, accommodationId, details));
}
catch (HttpOperationException ex)
{
throw new RemoteServiceFailedException(ex.StatusCode(), ex);
}
catch (BrokenCircuitException ex)
{
throw new RemoteServiceFailedException(ex.StatusCode(), ex);
}
}
public async Task CancelAsync(string userId, Guid id)
{
try
{
await breaker.ExecuteAsync(() => innerProxy.CancelAsync(userId, id));
}
catch (HttpOperationException ex)
{
throw new RemoteServiceFailedException(ex.StatusCode(), ex);
}
catch (BrokenCircuitException ex)
{
throw new RemoteServiceFailedException(ex.StatusCode(), ex);
}
}
public async Task<Contracts.Models.Booking> FindAsync(string userId, Guid id)
{
try
{
return await breaker.ExecuteAsync(() => innerProxy.FindAsync(userId, id));
}
catch (HttpOperationException ex)
{
throw new RemoteServiceFailedException(ex.StatusCode(), ex);
}
catch (BrokenCircuitException ex)
{
throw new RemoteServiceFailedException(ex.StatusCode(), ex);
}
}
public async Task<List<Contracts.Models.Booking>> ListPendingAsync(string userId)
{
try
{
return await breaker.ExecuteAsync(() => innerProxy.ListPendingAsync(userId));
}
catch (HttpOperationException ex)
{
throw new RemoteServiceFailedException(ex.StatusCode(), ex);
}
catch (BrokenCircuitException ex)
{
throw new RemoteServiceFailedException(ex.StatusCode(), ex);
}
}
}
}