-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathSecretProviderCachingExtensions.cs
79 lines (73 loc) · 4.84 KB
/
SecretProviderCachingExtensions.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
using System;
using Arcus.Security.Core.Caching.Configuration;
using Microsoft.Extensions.Caching.Memory;
namespace Arcus.Security.Core.Caching
{
/// <summary>
/// Provide extensions for more fluent/easy composition of adding caching to retrieve Azure Key Vault secrets with the <see cref="CachedSecretProvider"/>.
/// </summary>
public static class SecretProviderCachingExtensions
{
/// <summary>
/// Creates an <see cref="ICachedSecretProvider" /> instance that will use <see cref="IMemoryCache"/> to get SecretValues from the passed <paramref name="secretProvider"/>.
/// </summary>
/// <param name="secretProvider">An instantiated <see cref="ISecretProvider" /> that will only be called if the value is not cached</param>
/// <param name="cachingDuration">The duration to cache secrets in memory</param>
/// <param name="memoryCache">Optional <see cref="IMemoryCache" /> that can be used for caching. Defaults to a <see cref="MemoryCache" /> instance</param>
/// <returns>A secret provider that caches values</returns>
/// <exception cref="ArgumentNullException">Thrown when the <paramref name="secretProvider"/> or <paramref name="memoryCache"/> is <c>null</c>.</exception>
/// <exception cref="ArgumentOutOfRangeException">Thrown when the <paramref name="cachingDuration"/> is not a positive time duration.</exception>
public static ICachedSecretProvider WithCaching(this ISecretProvider secretProvider, TimeSpan cachingDuration, IMemoryCache memoryCache)
{
if (secretProvider is null)
{
throw new ArgumentNullException(nameof(secretProvider), "Requires a secret provider instance to include caching while retrieving secrets");
}
if (cachingDuration < TimeSpan.Zero)
{
throw new ArgumentOutOfRangeException(nameof(cachingDuration), "Requires a positive time duration in which the caching should take place");
}
if (memoryCache is null)
{
throw new ArgumentNullException(nameof(memoryCache), "Requires a memory caching implementation to include caching while retrieving secrets");
}
return new CachedSecretProvider(secretProvider, new CacheConfiguration(cachingDuration), memoryCache);
}
/// <summary>
/// Creates an <see cref="ICachedSecretProvider" /> instance that will use a default <see cref="IMemoryCache"/> implementation
/// to get SecretValues from the passed <paramref name="secretProvider"/>.
/// </summary>
/// <param name="secretProvider">An instantiated <see cref="ISecretProvider" /> that will only be called if the value is not cached</param>
/// <param name="cachingDuration">The duration to cache secrets in memory</param>
/// <returns>A secret provider that caches values</returns>
/// <exception cref="ArgumentNullException">Thrown when the <paramref name="secretProvider"/> is <c>null</c>.</exception>
/// <exception cref="ArgumentOutOfRangeException">Thrown when the <paramref name="cachingDuration"/> is not a positive time duration.</exception>
public static ICachedSecretProvider WithCaching(this ISecretProvider secretProvider, TimeSpan cachingDuration)
{
if (secretProvider is null)
{
throw new ArgumentNullException(nameof(secretProvider), "Requires a secret provider instance to include caching while retrieving secrets");
}
if (cachingDuration < TimeSpan.Zero)
{
throw new ArgumentOutOfRangeException(nameof(cachingDuration), "Requires a positive time duration in which the caching should take place");
}
return new CachedSecretProvider(secretProvider, new CacheConfiguration(cachingDuration));
}
/// <summary>
/// Creates an <see cref="ICachedSecretProvider" /> instance that will use a default <see cref="IMemoryCache"/> implementation
/// to get SecretValues from the passed <paramref name="secretProvider"/>.
/// </summary>
/// <param name="secretProvider">An instantiated <see cref="ISecretProvider" /> that will only be called if the value is not cached</param>
/// <returns>A secret provider that caches values</returns>
/// <exception cref="ArgumentNullException">Thrown when the <paramref name="secretProvider"/> is <c>null</c>.</exception>
public static ICachedSecretProvider WithCaching(this ISecretProvider secretProvider)
{
if (secretProvider is null)
{
throw new ArgumentNullException(nameof(secretProvider), "Requires a secret provider instance to include caching while retrieving secrets");
}
return new CachedSecretProvider(secretProvider);
}
}
}