mirror of https://github.com/Squidex/squidex.git
6 changed files with 59 additions and 4 deletions
@ -0,0 +1,34 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using Microsoft.AspNetCore.Authentication; |
|||
using Microsoft.AspNetCore.Authentication.OpenIdConnect; |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
|
|||
namespace Squidex.Config.Authentication |
|||
{ |
|||
public static class OidcServices |
|||
{ |
|||
public static AuthenticationBuilder AddMyExternalOdic(this AuthenticationBuilder authBuilder, MyIdentityOptions identityOptions) |
|||
{ |
|||
if (identityOptions.IsOidcConfigured()) |
|||
{ |
|||
var displayName = !string.IsNullOrWhiteSpace(identityOptions.OidcName) ? identityOptions.OidcName : OpenIdConnectDefaults.DisplayName; |
|||
|
|||
authBuilder.AddOpenIdConnect("ExternalOidc", displayName, options => |
|||
{ |
|||
options.Authority = identityOptions.OidcAuthority; |
|||
options.ClientId = identityOptions.OidcClient; |
|||
options.ClientSecret = identityOptions.OidcSecret; |
|||
options.RequireHttpsMetadata = false; |
|||
}); |
|||
} |
|||
|
|||
return authBuilder; |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue