mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.4 KiB
62 lines
2.4 KiB
// ==========================================================================
|
|
// AuthenticationServices.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Squidex.Infrastructure;
|
|
|
|
namespace Squidex.Config.Authentication
|
|
{
|
|
public static class IdentityServerServices
|
|
{
|
|
public static AuthenticationBuilder AddMyIdentityServerAuthentication(this AuthenticationBuilder authBuilder, MyIdentityOptions identityOptions, IConfiguration config)
|
|
{
|
|
var apiScope = Constants.ApiScope;
|
|
|
|
var urlsOptions = config.GetSection("urls").Get<MyUrlsOptions>();
|
|
|
|
if (!string.IsNullOrWhiteSpace(urlsOptions.BaseUrl))
|
|
{
|
|
string apiAuthorityUrl;
|
|
|
|
if (!string.IsNullOrWhiteSpace(identityOptions.AuthorityUrl))
|
|
{
|
|
apiAuthorityUrl = identityOptions.AuthorityUrl.BuildFullUrl(Constants.IdentityServerPrefix);
|
|
}
|
|
else
|
|
{
|
|
apiAuthorityUrl = urlsOptions.BuildUrl(Constants.IdentityServerPrefix);
|
|
}
|
|
|
|
authBuilder.AddIdentityServerAuthentication(options =>
|
|
{
|
|
options.Authority = apiAuthorityUrl;
|
|
options.ApiName = apiScope;
|
|
options.ApiSecret = null;
|
|
options.RequireHttpsMetadata = identityOptions.RequiresHttps;
|
|
});
|
|
|
|
authBuilder.AddOpenIdConnect(options =>
|
|
{
|
|
options.Authority = apiAuthorityUrl;
|
|
options.ClientId = Constants.InternalClientId;
|
|
options.ClientSecret = Constants.InternalClientSecret;
|
|
options.RequireHttpsMetadata = identityOptions.RequiresHttps;
|
|
options.SaveTokens = true;
|
|
options.Scope.Add(Constants.RoleScope);
|
|
options.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
|
|
});
|
|
}
|
|
|
|
return authBuilder;
|
|
}
|
|
}
|
|
}
|
|
|