-
Notifications
You must be signed in to change notification settings - Fork 217
/
DownstreamApiExtensions.cs
136 lines (123 loc) · 5.44 KB
/
DownstreamApiExtensions.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Linq;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Identity.Abstractions;
namespace Microsoft.Identity.Web
{
/// <summary>
/// Extension methods to support downstream API services.
/// </summary>
public static class DownstreamApiExtensions
{
/// <summary>
/// Adds a named downstream API service related to a specific configuration section.
/// </summary>
/// <param name="services">services.</param>
/// <param name="serviceName">Name of the configuration for the service.
/// This is the name used when calling the service from controller/pages.</param>
/// <param name="configuration">Configuration.</param>
/// <returns>The builder for chaining.</returns>
public static IServiceCollection AddDownstreamApi(
this IServiceCollection services,
string serviceName,
IConfiguration configuration)
{
_ = Throws.IfNull(services);
services.Configure<DownstreamApiOptions>(serviceName, configuration);
RegisterDownstreamApi(services);
return services;
}
/// <summary>
/// Adds a named downstream API service initialized with delegates.
/// </summary>
/// <param name="services">services.</param>
/// <param name="serviceName">Name of the configuration for the service.
/// This is the name which will be used when calling the service from controller/pages.</param>
/// <param name="configureOptions">Action to configure the options.</param>
/// <returns>The builder for chaining.</returns>
public static IServiceCollection AddDownstreamApi(
this IServiceCollection services,
string serviceName,
Action<DownstreamApiOptions> configureOptions)
{
_ = Throws.IfNull(services);
services.Configure(serviceName, configureOptions);
RegisterDownstreamApi(services);
return services;
}
internal /* for unit tests*/ static void RegisterDownstreamApi(IServiceCollection services)
{
ServiceDescriptor? tokenAcquisitionService = services.FirstOrDefault(s => s.ServiceType == typeof(ITokenAcquisition));
ServiceDescriptor? downstreamApi = services.FirstOrDefault(s => s.ServiceType == typeof(IDownstreamApi));
if (tokenAcquisitionService != null)
{
if (downstreamApi != null)
{
if (downstreamApi.Lifetime != tokenAcquisitionService.Lifetime)
{
services.Remove(downstreamApi);
AddDownstreamApiWithLifetime(services, tokenAcquisitionService.Lifetime);
}
}
else
{
AddDownstreamApiWithLifetime(services, tokenAcquisitionService.Lifetime);
}
}
else
{
services.AddScoped<IDownstreamApi, DownstreamApi>();
}
}
internal static /* for unit tests*/ void AddDownstreamApiWithLifetime(IServiceCollection services, ServiceLifetime lifetime)
{
if (lifetime == ServiceLifetime.Singleton)
{
services.AddSingleton<IDownstreamApi, DownstreamApi>();
}
else
{
services.AddScoped<IDownstreamApi, DownstreamApi>();
}
}
#if NETCOREAPP
/// <summary>
/// Adds a named downstream web service related to a specific configuration section.
/// </summary>
/// <param name="builder">Builder.</param>
/// <param name="serviceName">Name of the configuration for the service.
/// This is the name used when calling the service from controller/pages.</param>
/// <param name="configuration">Configuration.</param>
/// <returns>The builder for chaining.</returns>
public static MicrosoftIdentityAppCallsWebApiAuthenticationBuilder AddDownstreamApi(
this MicrosoftIdentityAppCallsWebApiAuthenticationBuilder builder,
string serviceName,
IConfiguration configuration)
{
_ = Throws.IfNull(builder);
builder.Services.AddDownstreamApi(serviceName, configuration);
return builder;
}
/// <summary>
/// Adds a named downstream API service initialized with delegates.
/// </summary>
/// <param name="builder">Builder.</param>
/// <param name="serviceName">Name of the configuration for the service.
/// This is the name which will be used when calling the service from controller/pages.</param>
/// <param name="configureOptions">Action to configure the options.</param>
/// <returns>The builder for chaining.</returns>
public static MicrosoftIdentityAppCallsWebApiAuthenticationBuilder AddDownstreamApi(
this MicrosoftIdentityAppCallsWebApiAuthenticationBuilder builder,
string serviceName,
Action<DownstreamApiOptions> configureOptions)
{
_ = Throws.IfNull(builder);
builder.Services.AddDownstreamApi(serviceName, configureOptions);
return builder;
}
#endif
}
}