80 lines
3.9 KiB
C#
80 lines
3.9 KiB
C#
|
/*
|
|||
|
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
|
|||
|
* See https://github.com/aspnet-contrib/AspNet.Security.OAuth.Providers
|
|||
|
* for more information concerning the license and the contributors participating to this project.
|
|||
|
*/
|
|||
|
|
|||
|
using Microsoft.AspNetCore.Authentication;
|
|||
|
using Microsoft.Extensions.DependencyInjection.Extensions;
|
|||
|
using Microsoft.Extensions.Options;
|
|||
|
using System.Diagnostics.CodeAnalysis;
|
|||
|
using ZeroFramework.IdentityServer.API.Infrastructure.Authentication.GitHub;
|
|||
|
|
|||
|
namespace Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Extension methods to add GitHub authentication capabilities to an HTTP application pipeline.
|
|||
|
/// </summary>
|
|||
|
public static class GitHubAuthenticationExtensions
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Adds <see cref="GitHubAuthenticationHandler"/> to the specified
|
|||
|
/// <see cref="AuthenticationBuilder"/>, which enables GitHub authentication capabilities.
|
|||
|
/// </summary>
|
|||
|
/// <param name="builder">The authentication builder.</param>
|
|||
|
/// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
|
|||
|
public static AuthenticationBuilder AddGitHub([NotNull] this AuthenticationBuilder builder)
|
|||
|
{
|
|||
|
return builder.AddGitHub(GitHubAuthenticationDefaults.AuthenticationScheme, options => { });
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Adds <see cref="GitHubAuthenticationHandler"/> to the specified
|
|||
|
/// <see cref="AuthenticationBuilder"/>, which enables GitHub authentication capabilities.
|
|||
|
/// </summary>
|
|||
|
/// <param name="builder">The authentication builder.</param>
|
|||
|
/// <param name="configuration">The delegate used to configure the OpenID 2.0 options.</param>
|
|||
|
/// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
|
|||
|
public static AuthenticationBuilder AddGitHub(
|
|||
|
[NotNull] this AuthenticationBuilder builder,
|
|||
|
[NotNull] Action<GitHubAuthenticationOptions> configuration)
|
|||
|
{
|
|||
|
return builder.AddGitHub(GitHubAuthenticationDefaults.AuthenticationScheme, configuration);
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Adds <see cref="GitHubAuthenticationHandler"/> to the specified
|
|||
|
/// <see cref="AuthenticationBuilder"/>, which enables GitHub authentication capabilities.
|
|||
|
/// </summary>
|
|||
|
/// <param name="builder">The authentication builder.</param>
|
|||
|
/// <param name="scheme">The authentication scheme associated with this instance.</param>
|
|||
|
/// <param name="configuration">The delegate used to configure the GitHub options.</param>
|
|||
|
/// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
|
|||
|
public static AuthenticationBuilder AddGitHub(
|
|||
|
[NotNull] this AuthenticationBuilder builder,
|
|||
|
[NotNull] string scheme,
|
|||
|
[NotNull] Action<GitHubAuthenticationOptions> configuration)
|
|||
|
{
|
|||
|
return builder.AddGitHub(scheme, GitHubAuthenticationDefaults.DisplayName, configuration);
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Adds <see cref="GitHubAuthenticationHandler"/> to the specified
|
|||
|
/// <see cref="AuthenticationBuilder"/>, which enables GitHub authentication capabilities.
|
|||
|
/// </summary>
|
|||
|
/// <param name="builder">The authentication builder.</param>
|
|||
|
/// <param name="scheme">The authentication scheme associated with this instance.</param>
|
|||
|
/// <param name="caption">The optional display name associated with this instance.</param>
|
|||
|
/// <param name="configuration">The delegate used to configure the GitHub options.</param>
|
|||
|
/// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
|
|||
|
public static AuthenticationBuilder AddGitHub(
|
|||
|
[NotNull] this AuthenticationBuilder builder,
|
|||
|
[NotNull] string scheme,
|
|||
|
[MaybeNull] string caption,
|
|||
|
[NotNull] Action<GitHubAuthenticationOptions> configuration)
|
|||
|
{
|
|||
|
builder.Services.TryAddSingleton<IPostConfigureOptions<GitHubAuthenticationOptions>, GitHubPostConfigureOptions>();
|
|||
|
return builder.AddOAuth<GitHubAuthenticationOptions, GitHubAuthenticationHandler>(scheme, caption, configuration);
|
|||
|
}
|
|||
|
}
|