forked from Wyn-Enterprise/sampleSQLCustomSecurityProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOAuthAPISecurityProviderFactory.cs
57 lines (53 loc) · 2.24 KB
/
OAuthAPISecurityProviderFactory.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
using GrapeCity.Enterprise.Identity.ExternalIdentityProvider.Configuration;
using GrapeCity.Enterprise.Identity.SecurityProvider;
using Microsoft.Extensions.Logging;
using Microsoft.IdentityModel.Logging;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace OAuthAPISecurityProvider
{
public class OAuthAPISecurityProviderFactory : ISecurityProviderFactory
{
public string ProviderName => Consts.ProviderName;
public string Description => Consts.ProviderDescription;
public IEnumerable<ConfigurationItem> SupportedSettings => new List<ConfigurationItem>
{
new ConfigurationItem(Consts.ConfigurationItemOAuthWellKnownUri, "Well-known openid configuration", "Url for your B2C tenant's openid configuration") {
Restriction = ConfigurationItemRestriction.Mandatory,
ValueType = ConfigurationItemValueType.Text,
Value = "https://yourb2ctenant.b2clogin.com/yourb2ctenant.onmicrosoft.com/B2C_1A_SIGNUP_SIGNIN/v2.0/.well-known/openid-configuration"
},
new ConfigurationItem(Consts.ConfigurationItemDefaultTTL, "User token TTL", "User Token time to live, in seconds") {
Restriction = ConfigurationItemRestriction.Mandatory,
ValueType = ConfigurationItemValueType.Number,
Value = 3600
},
new ConfigurationItem(Consts.ConfigurationItemValidAudiences, "Valid AAD audience applications", "(optional, comma delimited) List of AAD app registrations that are allowed to call this endpoint.") {
Restriction = ConfigurationItemRestriction.Optional,
ValueType = ConfigurationItemValueType.Text,
Value = String.Empty
}
};
public Task<ISecurityProvider> CreateAsync(IEnumerable<ConfigurationItem> settings, ILogger logger)
{
IdentityModelEventSource.ShowPII = true;
Logger.SetLogger(logger);
return Task.Run(() =>
{
try
{
// TODO: remove when not debugging
Logger.Debug($"Creating security provider '{Consts.ProviderName}'...");
var securityProvider = new OAuthAPISecurityProvider(settings);
return securityProvider as ISecurityProvider;
}
catch (Exception e)
{
Logger.Exception(e, $"Create security provider '{Consts.ProviderName}' failed.");
return null;
}
});
}
}
}