-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathAppConfigProvider.cs
More file actions
536 lines (476 loc) · 20.3 KB
/
AppConfigProvider.cs
File metadata and controls
536 lines (476 loc) · 20.3 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
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
using System.Collections.Concurrent;
using System.Text.Json.Nodes;
using Amazon;
using Amazon.AppConfigData;
using Amazon.AppConfigData.Model;
using Amazon.Runtime;
using AWS.Lambda.Powertools.Parameters.Internal.AppConfig;
using AWS.Lambda.Powertools.Parameters.Cache;
using AWS.Lambda.Powertools.Parameters.Configuration;
using AWS.Lambda.Powertools.Parameters.Internal.Cache;
using AWS.Lambda.Powertools.Parameters.Provider;
namespace AWS.Lambda.Powertools.Parameters.AppConfig;
/// <summary>
/// The AppConfigProvider to retrieve parameter values from a AWS AppConfig.
/// </summary>
public class AppConfigProvider : ParameterProvider<AppConfigProviderConfigurationBuilder>, IAppConfigProvider
{
/// <summary>
/// The default application Id.
/// </summary>
private string _defaultApplicationId = string.Empty;
/// <summary>
/// The default environment Id.
/// </summary>
private string _defaultEnvironmentId = string.Empty;
/// <summary>
/// The default configuration profile Id.
/// </summary>
private string _defaultConfigProfileId = string.Empty;
/// <summary>
/// Instance of datetime wrapper.
/// </summary>
private readonly IDateTimeWrapper _dateTimeWrapper;
/// <summary>
/// Thread safe dictionary to store results.
/// </summary>
private readonly ConcurrentDictionary<string, AppConfigResult> _results = new(StringComparer.OrdinalIgnoreCase);
/// <summary>
/// The client instance.
/// </summary>
private IAmazonAppConfigData? _client;
/// <summary>
/// Gets the client instance.
/// </summary>
private IAmazonAppConfigData Client => _client ??= new AmazonAppConfigDataClient();
/// <summary>
/// AppConfigProvider constructor.
/// </summary>
public AppConfigProvider()
{
_dateTimeWrapper = DateTimeWrapper.Instance;
}
/// <summary>
/// AppConfigProvider constructor for test.
/// </summary>
internal AppConfigProvider(
IDateTimeWrapper dateTimeWrapper,
string? appConfigResultKey = null,
AppConfigResult? appConfigResult = null)
{
_dateTimeWrapper = dateTimeWrapper;
if (appConfigResultKey is not null && appConfigResult is not null)
_results.TryAdd(appConfigResultKey, appConfigResult);
}
#region IParameterProviderConfigurableClient implementation
/// <summary>
/// Use a custom client
/// </summary>
/// <param name="client">The custom client</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider UseClient(IAmazonAppConfigData client)
{
_client = client;
return this;
}
/// <summary>
/// Configure client with the credentials loaded from the application's default configuration.
/// </summary>
/// <param name="region">The region to connect.</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(RegionEndpoint region)
{
_client = new AmazonAppConfigDataClient(region);
return this;
}
/// <summary>
/// Configure client with the credentials loaded from the application's default configuration.
/// </summary>
/// <param name="config">The client configuration object.</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(AmazonAppConfigDataConfig config)
{
_client = new AmazonAppConfigDataClient(config);
return this;
}
/// <summary>
/// Configure client with AWS credentials.
/// </summary>
/// <param name="credentials">AWS credentials.</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(AWSCredentials credentials)
{
_client = new AmazonAppConfigDataClient(credentials);
return this;
}
/// <summary>
/// Configure client with AWS credentials.
/// </summary>
/// <param name="credentials">AWS credentials.</param>
/// <param name="region">The region to connect.</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(AWSCredentials credentials, RegionEndpoint region)
{
_client = new AmazonAppConfigDataClient(credentials, region);
return this;
}
/// <summary>
/// Configure client with AWS credentials and a client configuration object.
/// </summary>
/// <param name="credentials">AWS credentials.</param>
/// <param name="config">The client configuration object.</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(AWSCredentials credentials, AmazonAppConfigDataConfig config)
{
_client = new AmazonAppConfigDataClient(credentials, config);
return this;
}
/// <summary>
/// Configure client with AWS Access Key ID and AWS Secret Key.
/// </summary>
/// <param name="awsAccessKeyId">AWS Access Key ID</param>
/// <param name="awsSecretAccessKey">AWS Secret Access Key</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(string awsAccessKeyId, string awsSecretAccessKey)
{
_client = new AmazonAppConfigDataClient(awsAccessKeyId, awsSecretAccessKey);
return this;
}
/// <summary>
/// Configure client with AWS Access Key ID and AWS Secret Key.
/// </summary>
/// <param name="awsAccessKeyId">AWS Access Key ID</param>
/// <param name="awsSecretAccessKey">AWS Secret Access Key</param>
/// <param name="region">The region to connect.</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(string awsAccessKeyId, string awsSecretAccessKey, RegionEndpoint region)
{
_client = new AmazonAppConfigDataClient(awsAccessKeyId, awsSecretAccessKey, region);
return this;
}
/// <summary>
/// Configure client with AWS Access Key ID and AWS Secret Key and a client configuration object.
/// </summary>
/// <param name="awsAccessKeyId">AWS Access Key ID</param>
/// <param name="awsSecretAccessKey">AWS Secret Access Key</param>
/// <param name="config">The client configuration object.</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(string awsAccessKeyId, string awsSecretAccessKey,
AmazonAppConfigDataConfig config)
{
_client = new AmazonAppConfigDataClient(awsAccessKeyId, awsSecretAccessKey, config);
return this;
}
/// <summary>
/// Configure client with AWS Access Key ID and AWS Secret Key.
/// </summary>
/// <param name="awsAccessKeyId">AWS Access Key ID</param>
/// <param name="awsSecretAccessKey">AWS Secret Access Key</param>
/// <param name="awsSessionToken">AWS Session Token</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken)
{
_client = new AmazonAppConfigDataClient(awsAccessKeyId, awsSecretAccessKey, awsSessionToken);
return this;
}
/// <summary>
/// Configure client with AWS Access Key ID and AWS Secret Key.
/// </summary>
/// <param name="awsAccessKeyId">AWS Access Key ID</param>
/// <param name="awsSecretAccessKey">AWS Secret Access Key</param>
/// <param name="awsSessionToken">AWS Session Token</param>
/// <param name="region">The region to connect.</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken,
RegionEndpoint region)
{
_client = new AmazonAppConfigDataClient(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, region);
return this;
}
/// <summary>
/// Configure client with AWS Access Key ID and AWS Secret Key and a client configuration object.
/// </summary>
/// <param name="awsAccessKeyId">AWS Access Key ID</param>
/// <param name="awsSecretAccessKey">AWS Secret Access Key</param>
/// <param name="awsSessionToken">AWS Session Token</param>
/// <param name="config">The client configuration object.</param>
/// <returns>Provider instance</returns>
public IAppConfigProvider ConfigureClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken,
AmazonAppConfigDataConfig config)
{
_client = new AmazonAppConfigDataClient(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, config);
return this;
}
#endregion
/// <summary>
/// Sets the default application ID or name.
/// </summary>
/// <param name="applicationId">The application ID or name.</param>
/// <returns>The AppConfigProvider instance.</returns>
public IAppConfigProvider DefaultApplication(string applicationId)
{
if (string.IsNullOrWhiteSpace(applicationId))
throw new ArgumentNullException(nameof(applicationId));
_defaultApplicationId = applicationId;
return this;
}
/// <summary>
/// Sets the default environment ID or name.
/// </summary>
/// <param name="environmentId">The environment ID or name.</param>
/// <returns>The AppConfigProvider instance.</returns>
public IAppConfigProvider DefaultEnvironment(string environmentId)
{
if (string.IsNullOrWhiteSpace(environmentId))
throw new ArgumentNullException(nameof(environmentId));
_defaultEnvironmentId = environmentId;
return this;
}
/// <summary>
/// Sets the default configuration profile ID or name.
/// </summary>
/// <param name="configProfileId">The configuration profile ID or name.</param>
/// <returns>The AppConfigProvider instance.</returns>
public IAppConfigProvider DefaultConfigProfile(string configProfileId)
{
_defaultConfigProfileId = configProfileId;
return this;
}
/// <summary>
/// Sets the application ID or name.
/// </summary>
/// <param name="applicationId">The application ID or name.</param>
/// <returns>The AppConfigProvider configuration builder.</returns>
public AppConfigProviderConfigurationBuilder WithApplication(string applicationId)
{
return NewConfigurationBuilder().WithApplication(applicationId);
}
/// <summary>
/// Sets the environment ID or name.
/// </summary>
/// <param name="environmentId">The environment ID or name.</param>
/// <returns>The AppConfigProvider configuration builder.</returns>
public AppConfigProviderConfigurationBuilder WithEnvironment(string environmentId)
{
return NewConfigurationBuilder().WithEnvironment(environmentId);
}
/// <summary>
/// Sets the configuration profile ID or name.
/// </summary>
/// <param name="configProfileId">The configuration profile ID or name.</param>
/// <returns>The AppConfigProvider configuration builder.</returns>
public AppConfigProviderConfigurationBuilder WithConfigProfile(string configProfileId)
{
return NewConfigurationBuilder().WithConfigProfile(configProfileId);
}
/// <summary>
/// Creates and configures a new AppConfigProviderConfigurationBuilder
/// </summary>
/// <returns></returns>
protected override AppConfigProviderConfigurationBuilder NewConfigurationBuilder()
{
return new AppConfigProviderConfigurationBuilder(this)
.WithApplication(_defaultApplicationId)
.WithEnvironment(_defaultEnvironmentId)
.WithConfigProfile(_defaultConfigProfileId);
}
/// <summary>
/// Get AppConfig transformed value for the provided key.
/// </summary>
/// <param name="key">The parameter key.</param>
/// <typeparam name="T">Target transformation type.</typeparam>
/// <returns>The AppConfig transformed value.</returns>
public override async Task<T?> GetAsync<T>(string key) where T : class
{
return await NewConfigurationBuilder()
.GetAsync<T>(key)
.ConfigureAwait(false);
}
/// <summary>
/// Get last AppConfig value.
/// </summary>
/// <returns>Application Configuration.</returns>
public IDictionary<string, string?> Get()
{
return GetAsync().GetAwaiter().GetResult();
}
/// <summary>
/// Get last AppConfig value.
/// </summary>
/// <returns>The AppConfig value.</returns>
public async Task<IDictionary<string, string?>> GetAsync()
{
return await NewConfigurationBuilder()
.GetAsync()
.ConfigureAwait(false);
}
/// <summary>
/// Get last AppConfig value and transform it to JSON value.
/// </summary>
/// <typeparam name="T">JSON value type.</typeparam>
/// <returns>The AppConfig JSON value.</returns>
public T? Get<T>() where T : class
{
return GetAsync<T>().GetAwaiter().GetResult();
}
/// <summary>
/// Get last AppConfig value and transform it to JSON value.
/// </summary>
/// <typeparam name="T">JSON value type.</typeparam>
/// <returns>The AppConfig JSON value.</returns>
public async Task<T?> GetAsync<T>() where T : class
{
return await NewConfigurationBuilder()
.GetAsync<T>()
.ConfigureAwait(false);
}
/// <summary>
/// Get parameter value for the provided key.
/// </summary>
/// <param name="key">The parameter key.</param>
/// <param name="config">The parameter provider configuration</param>
/// <returns>The parameter value.</returns>
protected override async Task<string?> GetAsync(string key, ParameterProviderConfiguration? config)
{
if (config is not AppConfigProviderConfiguration configuration)
throw new ArgumentNullException(nameof(config));
var cacheKey = AppConfigProviderCacheHelper.GetCacheKey
(
configuration.ApplicationId,
configuration.EnvironmentId,
configuration.ConfigProfileId
);
var result = GetAppConfigResult(cacheKey);
if (_dateTimeWrapper.UtcNow < result.NextAllowedPollTime)
{
if (!config.ForceFetch)
return result.LastConfig;
result.PollConfigurationToken = string.Empty;
result.NextAllowedPollTime = DateTime.MinValue;
}
if (string.IsNullOrWhiteSpace(result.PollConfigurationToken))
result.PollConfigurationToken =
await GetInitialConfigurationTokenAsync(configuration)
.ConfigureAwait(false);
var request = new GetLatestConfigurationRequest
{
ConfigurationToken = result.PollConfigurationToken
};
var response =
await Client.GetLatestConfigurationAsync(request)
.ConfigureAwait(false);
if (response.NextPollIntervalInSeconds != null)
result.NextAllowedPollTime = _dateTimeWrapper.UtcNow.AddSeconds((double)response.NextPollIntervalInSeconds);
if (!string.Equals(response.ContentType, "application/json", StringComparison.CurrentCultureIgnoreCase))
throw new NotImplementedException($"Not implemented AppConfig type: {response.ContentType}");
using (var reader = new StreamReader(response.Configuration))
{
result.LastConfig =
await reader.ReadToEndAsync()
.ConfigureAwait(false);
}
return result.LastConfig;
}
/// <summary>
/// Get multiple parameter values for the provided key.
/// </summary>
/// <param name="key">The parameter key.</param>
/// <param name="config">The parameter provider configuration</param>
/// <returns>Returns a collection parameter key/value pairs.</returns>
protected override Task<IDictionary<string, string?>> GetMultipleAsync(string key,
ParameterProviderConfiguration? config)
{
throw new NotSupportedException("Impossible to get multiple values from AWS AppConfig");
}
/// <summary>
/// Gets Or Adds AppConfigResult with provided key
/// </summary>
/// <param name="cacheKey">The cache key</param>
/// <returns>AppConfigResult</returns>
private AppConfigResult GetAppConfigResult(string cacheKey)
{
if (_results.TryGetValue(cacheKey, out var cachedResult))
return cachedResult;
cachedResult = new AppConfigResult();
_results.TryAdd(cacheKey, cachedResult);
return cachedResult;
}
/// <summary>
/// Starts a configuration session used to retrieve a deployed configuration.
/// </summary>
/// <param name="config">Teh AppConfig provider configuration</param>
/// <returns>The initial configuration token</returns>
private async Task<string> GetInitialConfigurationTokenAsync(AppConfigProviderConfiguration config)
{
var request = new StartConfigurationSessionRequest
{
ApplicationIdentifier = config.ApplicationId,
EnvironmentIdentifier = config.EnvironmentId,
ConfigurationProfileIdentifier = config.ConfigProfileId
};
return (await Client.StartConfigurationSessionAsync(request).ConfigureAwait(false)).InitialConfigurationToken;
}
/// <summary>
/// Check if the feature flag is enabled.
/// </summary>
/// <param name="key">The unique feature key for the feature flag</param>
/// <param name="defaultValue">The default value of the flag</param>
/// <returns>The feature flag value, or defaultValue if the flag cannot be evaluated</returns>
public bool IsFeatureFlagEnabled(string key, bool defaultValue = false)
{
return IsFeatureFlagEnabledAsync(key, defaultValue).GetAwaiter().GetResult();
}
/// <summary>
/// Check if the feature flag is enabled.
/// </summary>
/// <param name="key">The unique feature key for the feature flag</param>
/// <param name="defaultValue">The default value of the flag</param>
/// <returns>The feature flag value, or defaultValue if the flag cannot be evaluated</returns>
public async Task<bool> IsFeatureFlagEnabledAsync(string key, bool defaultValue = false)
{
return await GetFeatureFlagAttributeValueAsync(key, AppConfigFeatureFlagHelper.EnabledAttributeKey,
defaultValue).ConfigureAwait(false);
}
/// <summary>
/// Get feature flag's attribute value.
/// </summary>
/// <param name="key">The unique feature key for the feature flag</param>
/// <param name="attributeKey">The unique attribute key for the feature flag</param>
/// <param name="defaultValue">The default value of the feature flag's attribute value</param>
/// <typeparam name="T">The type of the value to obtain from feature flag's attribute.</typeparam>
/// <returns>The feature flag's attribute value.</returns>
public T? GetFeatureFlagAttributeValue<T>(string key, string attributeKey, T? defaultValue = default)
{
return GetFeatureFlagAttributeValueAsync(key, attributeKey, defaultValue).GetAwaiter().GetResult();
}
/// <summary>
/// Get feature flag's attribute value.
/// </summary>
/// <param name="key">The unique feature key for the feature flag</param>
/// <param name="attributeKey">The unique attribute key for the feature flag</param>
/// <param name="defaultValue">The default value of the feature flag's attribute value</param>
/// <typeparam name="T">The type of the value to obtain from feature flag's attribute.</typeparam>
/// <returns>The feature flag's attribute value.</returns>
public async Task<T?> GetFeatureFlagAttributeValueAsync<T>(string key, string attributeKey,
T? defaultValue = default)
{
return string.IsNullOrWhiteSpace(key)
? defaultValue
: AppConfigFeatureFlagHelper.GetFeatureFlagAttributeValueAsync(key, attributeKey, defaultValue,
await GetAsync<JsonObject>().ConfigureAwait(false));
}
}