-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathServiceCollectionExtensions.cs
229 lines (215 loc) · 9.26 KB
/
ServiceCollectionExtensions.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
// Copyright (c) Escendit Ltd. All Rights Reserved.
// Licensed under the MIT. See LICENSE.txt file in the solution root for full license information.
namespace Microsoft.Extensions.DependencyInjection;
using System.Net;
using Escendit.Extensions.DependencyInjection.RabbitMQ.Abstractions;
using global::RabbitMQ.Stream.Client;
using Logging;
using Options;
/// <summary>
/// Service Collection Extensions.
/// </summary>
public static class ServiceCollectionExtensions
{
/// <summary>
/// Add Rabbit Mq Stream System As Default.
/// </summary>
/// <param name="services">The initial service collection.</param>
/// <param name="configureOptions">The configure options.</param>
/// <returns>The updated service collection.</returns>
public static IServiceCollection AddRabbitMqStreamSystemAsDefault(
this IServiceCollection services,
Action<ConnectionOptions> configureOptions)
{
ArgumentNullException.ThrowIfNull(services);
ArgumentNullException.ThrowIfNull(ConnectionOptions.DefaultKey);
ArgumentNullException.ThrowIfNull(configureOptions);
return services
.AddRabbitMqConnectionOptions(ConnectionOptions.DefaultKey, configureOptions)
.AddService(ConnectionOptions.DefaultKey, CreateStreamSystem);
}
/// <summary>
/// Add Rabbit Mq Stream System As Default.
/// </summary>
/// <param name="services">The initial service collection.</param>
/// <param name="configureOptions">The configure options.</param>
/// <returns>The updated service collection.</returns>
public static IServiceCollection AddRabbitMqStreamSystemAsDefault(
this IServiceCollection services,
Action<OptionsBuilder<ConnectionOptions>> configureOptions)
{
ArgumentNullException.ThrowIfNull(services);
ArgumentNullException.ThrowIfNull(ConnectionOptions.DefaultKey);
ArgumentNullException.ThrowIfNull(configureOptions);
return services
.AddRabbitMqConnectionOptions(ConnectionOptions.DefaultKey, configureOptions)
.AddService(ConnectionOptions.DefaultKey, CreateStreamSystem);
}
/// <summary>
/// Add Rabbit Mq Stream System As Default.
/// </summary>
/// <param name="services">The initial service collection.</param>
/// <param name="configSectionPath">The config section path.</param>
/// <returns>The updated service collection.</returns>
public static IServiceCollection AddRabbitMqStreamSystemAsDefault(
this IServiceCollection services,
string configSectionPath)
{
ArgumentNullException.ThrowIfNull(services);
ArgumentNullException.ThrowIfNull(configSectionPath);
return services
.AddRabbitMqConnectionOptions(ConnectionOptions.DefaultKey, configSectionPath)
.AddService(ConnectionOptions.DefaultKey, CreateStreamSystem);
}
/// <summary>
/// Add Rabbit Mq Stream System From Options As Default.
/// </summary>
/// <remarks>
/// It needs provided connection options.
/// </remarks>
/// <param name="services">The initial service collection.</param>
/// <param name="optionsName">The named option.</param>
/// <returns>The updated service collection.</returns>
public static IServiceCollection AddRabbitMqStreamSystemFromOptionAsDefault(
this IServiceCollection services,
string optionsName)
{
ArgumentNullException.ThrowIfNull(services);
ArgumentNullException.ThrowIfNull(optionsName);
return services
.AddService(ConnectionOptions.DefaultKey, (serviceProvider, _) =>
CreateStreamSystem(serviceProvider, optionsName));
}
/// <summary>
/// Add Rabbit Mq Stream System.
/// </summary>
/// <param name="services">The initial service collection.</param>
/// <param name="name">The name.</param>
/// <param name="configureOptions">The configure options.</param>
/// <returns>The updated service collection.</returns>
public static IServiceCollection AddRabbitMqStreamSystem(
this IServiceCollection services,
string name,
Action<ConnectionOptions> configureOptions)
{
ArgumentNullException.ThrowIfNull(services);
ArgumentNullException.ThrowIfNull(name);
ArgumentNullException.ThrowIfNull(configureOptions);
return services
.AddRabbitMqConnectionOptions(name, configureOptions)
.AddService(name, CreateStreamSystem);
}
/// <summary>
/// Add Rabbit Mq Stream System.
/// </summary>
/// <param name="services">The initial service collection.</param>
/// <param name="name">The name.</param>
/// <param name="configureOptions">The configure options.</param>
/// <returns>The updated service collection.</returns>
public static IServiceCollection AddRabbitMqStreamSystem(
this IServiceCollection services,
string name,
Action<OptionsBuilder<ConnectionOptions>> configureOptions)
{
ArgumentNullException.ThrowIfNull(services);
ArgumentNullException.ThrowIfNull(name);
ArgumentNullException.ThrowIfNull(configureOptions);
return services
.AddRabbitMqConnectionOptions(name, configureOptions)
.AddService(name, CreateStreamSystem);
}
/// <summary>
/// Add Rabbit Mq Stream System.
/// </summary>
/// <param name="services">The initial service collection.</param>
/// <param name="name">The name.</param>
/// <param name="configSectionPath">The config section path.</param>
/// <returns>The updated service collection.</returns>
public static IServiceCollection AddRabbitMqStreamSystem(
this IServiceCollection services,
string name,
string configSectionPath)
{
ArgumentNullException.ThrowIfNull(services);
ArgumentNullException.ThrowIfNull(name);
ArgumentNullException.ThrowIfNull(configSectionPath);
return services
.AddRabbitMqConnectionOptions(name, configSectionPath)
.AddService(name, CreateStreamSystem);
}
/// <summary>
/// Add Rabbit Mq Stream System From Option.
/// </summary>
/// <remarks>
/// It needs provided connection options.
/// </remarks>
/// <param name="services">The initial service collection.</param>
/// <param name="name">The name.</param>
/// <param name="optionsName">The named option.</param>
/// <returns>The updated service collection.</returns>
public static IServiceCollection AddRabbitMqStreamSystemFromOptions(
this IServiceCollection services,
string name,
string optionsName)
{
ArgumentNullException.ThrowIfNull(services);
ArgumentNullException.ThrowIfNull(name);
ArgumentNullException.ThrowIfNull(optionsName);
return services
.AddService(name, (serviceProvider, _) =>
CreateStreamSystem(serviceProvider, optionsName));
}
private static StreamSystem CreateStreamSystem(IServiceProvider serviceProvider, object? name)
{
if (name is not string stringedName)
{
throw new ArgumentException("Invalid name");
}
var monitor = serviceProvider.GetRequiredService<IOptionsMonitor<ConnectionOptions>>();
var options = monitor.Get(stringedName);
var config = CreateStreamSystemConfig(options);
return CreateStreamSystemInternal(serviceProvider, config);
}
private static StreamSystem CreateStreamSystemInternal(
IServiceProvider serviceProvider,
StreamSystemConfig streamSystemConfig)
{
var logger = serviceProvider.GetRequiredService<ILogger<StreamSystem>>();
return StreamSystem
.Create(streamSystemConfig, logger)
.ConfigureAwait(false)
.GetAwaiter()
.GetResult();
}
private static StreamSystemConfig CreateStreamSystemConfig(ConnectionOptions options)
{
return new StreamSystemConfig
{
Endpoints = options
.Endpoints
.Select(endpoint => new DnsEndPoint(endpoint.HostName, endpoint.Port ?? 5552))
.Cast<EndPoint>()
.ToList(),
Heartbeat = options.Heartbeat,
Password = options.Password,
UserName = options.UserName,
VirtualHost = options.VirtualHost,
ClientProvidedName = options.ClientProvidedName,
Ssl = options.SslOptions is null
? new()
: new SslOption
{
AcceptablePolicyErrors = options.SslOptions.AcceptablePolicyErrors,
ServerName = options.SslOptions.ServerName,
CertificateSelectionCallback = options.SslOptions.CertificateSelectionCallback,
CertificateValidationCallback = options.SslOptions.CertificateValidationCallback,
CertPassphrase = options.SslOptions.CertPassphrase,
CertPath = options.SslOptions.CertPath,
Certs = options.SslOptions.Certificates,
CheckCertificateRevocation = options.SslOptions.CheckCertificateRevocation,
Enabled = options.SslOptions.Enabled,
Version = options.SslOptions.Version,
},
};
}
}