QQAuthenticationExtensions.cs 3.57 KB
/*
 * 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 JetBrains.Annotations;
using Microsoft.AspNetCore.Authentication;
using Microsoft.Extensions.DependencyInjection;

namespace Yi.Framework.AspNetCore.Authentication.OAuth.QQ;

/// <summary>
/// Extension methods to add QQ authentication capabilities to an HTTP application pipeline.
/// </summary>
public static class QQAuthenticationExtensions
{
    /// <summary>
    /// Adds <see cref="QQAuthenticationHandler"/> to the specified
    /// <see cref="AuthenticationBuilder"/>, which enables QQ authentication capabilities.
    /// </summary>
    /// <param name="builder">The authentication builder.</param>
    /// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
    public static AuthenticationBuilder AddQQ([NotNull] this AuthenticationBuilder builder)
    {
        return builder.AddQQ(QQAuthenticationDefaults.AuthenticationScheme, options => { });
    }

    /// <summary>
    /// Adds <see cref="QQAuthenticationHandler"/> to the specified
    /// <see cref="AuthenticationBuilder"/>, which enables QQ 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 AddQQ(
        [NotNull] this AuthenticationBuilder builder,
        [NotNull] Action<QQAuthenticationOptions> configuration)
    {
        return builder.AddQQ(QQAuthenticationDefaults.AuthenticationScheme, configuration);
    }

    /// <summary>
    /// Adds <see cref="QQAuthenticationHandler"/> to the specified
    /// <see cref="AuthenticationBuilder"/>, which enables QQ 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 QQ options.</param>
    /// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
    public static AuthenticationBuilder AddQQ(
        [NotNull] this AuthenticationBuilder builder,
        [NotNull] string scheme,
        [NotNull] Action<QQAuthenticationOptions> configuration)
    {
        return builder.AddQQ(scheme, QQAuthenticationDefaults.DisplayName, configuration);
    }

    /// <summary>
    /// Adds <see cref="QQAuthenticationHandler"/> to the specified
    /// <see cref="AuthenticationBuilder"/>, which enables QQ 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 QQ options.</param>
    /// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
    public static AuthenticationBuilder AddQQ(
        [NotNull] this AuthenticationBuilder builder,
        [NotNull] string scheme,
        [CanBeNull] string caption,
        [NotNull] Action<QQAuthenticationOptions> configuration)
    {
        return builder.AddScheme<QQAuthenticationOptions, QQAuthenticationHandler>(scheme, caption, configuration);

    }
}