zoukankan      html  css  js  c++  java
  • 5.0AuthenticationMiddleware&AuthAppBuilderExtensions

    IApplicationBuilder->IAuthenticationSchemeProvider->IAuthenticationHandlerProvider
    using System;
    using Microsoft.AspNetCore.Authentication;
    
    namespace Microsoft.AspNetCore.Builder
    {
        /// <summary>
        /// Extension methods to add authentication capabilities to an HTTP application pipeline.
        /// </summary>
        public static class AuthAppBuilderExtensions
        {
            /// <summary>
            /// Adds the <see cref="AuthenticationMiddleware"/> to the specified <see cref="IApplicationBuilder"/>, which enables authentication capabilities.
            /// </summary>
            /// <param name="app">The <see cref="IApplicationBuilder"/> to add the middleware to.</param>
            /// <returns>A reference to this instance after the operation has completed.</returns>
            public static IApplicationBuilder UseAuthentication(this IApplicationBuilder app)
            {
                if (app == null)
                {
                    throw new ArgumentNullException(nameof(app));
                }
    
                return app.UseMiddleware<AuthenticationMiddleware>();
            }
        }
    }
    using System;
    using System.Threading.Tasks;
    using Microsoft.AspNetCore.Http;
    using Microsoft.AspNetCore.Http.Features.Authentication;
    using Microsoft.Extensions.DependencyInjection;
    
    namespace Microsoft.AspNetCore.Authentication
    {
        /// <summary>
        /// Middleware that performs authentication.
        /// </summary>
        public class AuthenticationMiddleware
        {
            private readonly RequestDelegate _next;
    
            /// <summary>
            /// Initializes a new instance of <see cref="AuthenticationMiddleware"/>.
            /// </summary>
            /// <param name="next">The next item in the middleware pipeline.</param>
            /// <param name="schemes">The <see cref="IAuthenticationSchemeProvider"/>.</param>
            public AuthenticationMiddleware(RequestDelegate next, IAuthenticationSchemeProvider schemes)
            {
                if (next == null)
                {
                    throw new ArgumentNullException(nameof(next));
                }
                if (schemes == null)
                {
                    throw new ArgumentNullException(nameof(schemes));
                }
    
                _next = next;
                Schemes = schemes;
            }
    
            /// <summary>
            /// Gets or sets the <see cref="IAuthenticationSchemeProvider"/>.
            /// </summary>
            public IAuthenticationSchemeProvider Schemes { get; set; }
    
            /// <summary>
            /// Invokes the middleware performing authentication.
            /// </summary>
            /// <param name="context">The <see cref="HttpContext"/>.</param>
            public async Task Invoke(HttpContext context)
            {
                context.Features.Set<IAuthenticationFeature>(new AuthenticationFeature
                {
                    OriginalPath = context.Request.Path,
                    OriginalPathBase = context.Request.PathBase
                });
    
                // Give any IAuthenticationRequestHandler schemes a chance to handle the request
                var handlers = context.RequestServices.GetRequiredService<IAuthenticationHandlerProvider>();
                foreach (var scheme in await Schemes.GetRequestHandlerSchemesAsync())
                {
                    var handler = await handlers.GetHandlerAsync(context, scheme.Name) as IAuthenticationRequestHandler;
                    if (handler != null && await handler.HandleRequestAsync())
                    {
                        return;
                    }
                }
    
                var defaultAuthenticate = await Schemes.GetDefaultAuthenticateSchemeAsync();
                if (defaultAuthenticate != null)
                {
                    var result = await context.AuthenticateAsync(defaultAuthenticate.Name);
                    if (result?.Principal != null)
                    {
                        context.User = result.Principal;
                    }
                    if (result?.Succeeded ?? false)
                    {
                        var authFeatures = new AuthenticationFeatures(result);
                        context.Features.Set<IHttpAuthenticationFeature>(authFeatures);
                        context.Features.Set<IAuthenticateResultFeature>(authFeatures);
                    }
                }
    
                await _next(context);
            }
        }
    }
  • 相关阅读:
    Oracle查看正在执行的存储过程的sid---转
    使用WITH子句重用子查询
    oracle解决显示数据的层次问题--实现数据缩进
    oracle9i、10g、11g区别 --转
    oracle10g安装在裸设备上
    在Linux系统上面创建使用裸设备的数据库
    监控Oracle数据库的常用shell脚本-转
    sql server使用维护计划定时备份完整数据库、差异数据库
    使用Advanced Installer14.3 简单打包windows窗体应用程序
    SVG Path标签 A 参数
  • 原文地址:https://www.cnblogs.com/htlp/p/15257163.html
Copyright © 2011-2022 走看看