繁体   English   中英

在 ASP.NET Core 3.1 中使用多个身份验证方案?

[英]Using multiple authentication schemes in ASP.NET Core 3.1?

我一直在使用 ASP.NET Core 3.1 使用干净的架构制作 web 应用程序。

我有一些 class 库,例如 Infrastructure、Persistence、Domain、Application 和一个名为“Web”的 MVC 应用程序项目作为我的应用程序的启动点。

在 Web 层中,我有一个“区域”,其中我有一个管理区域,其中包含一些控制器和操作方法,它们返回 JSON 作为我的 API 端点

我在 Controllers 文件夹中的 Web MVC 项目中也有一些控制器,它们的操作方法返回 html 视图

我还将 Identity 和 JWT 用于我的 API 端点,但是:

- 如果我想在我的 MVC 控制器中使用基于声明的身份,其操作结果返回 html 视图,该怎么办?

- 在此类应用程序中使用 ASP.NET Core 3.1 中基于声明的身份的最佳实践是什么?

任何帮助,将不胜感激。

经过一番研究,我在 ASP.NET 内核授权文档中找到了解决方案,标题为“ 在 ASP.NET 内核中使用特定方案进行授权”。

根据 Microsoft ASP .NET 核心文档中提到的文章,在某些情况下,例如单页应用程序 (SPA),通常使用多种身份验证方法。 例如,应用程序可以使用基于 cookie 的身份验证登录,并使用 JWT 不记名身份验证 JavaScript 请求。

认证方案是在认证过程中配置认证服务时命名的。 例如:

public void ConfigureServices(IServiceCollection services)
{
    // Code omitted for brevity

    services.AddAuthentication()
        .AddCookie(options => {
            options.LoginPath = "/Account/Unauthorized/";
            options.AccessDeniedPath = "/Account/Forbidden/";
        })
        .AddJwtBearer(options => {
            options.Audience = "http://localhost:5001/";
            options.Authority = "http://localhost:5000/";
        });

在上述代码中,添加了两个身份验证处理程序:一个用于 cookies,一个用于承载。

选择具有 Authorize 属性的方案

[Authorize(AuthenticationSchemes = 
    JwtBearerDefaults.AuthenticationScheme)]
public class MixedController : Controller

在前面的代码中,只有带有“Bearer”方案的处理程序运行。 任何基于 cookie 的身份都会被忽略。

这是解决我的问题的解决方案,我认为与需要它的人分享它会很好。

.Net Core 3.1 或 .Net 5.0 中的多种身份验证方案

启动.cs

services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme)
                    .AddCookie(x =>
                    {
                        x.LoginPath = "/";
                        x.ExpireTimeSpan = TimeSpan.FromMinutes(Configuration.GetValue<int>("CookieExpiry"));
                    })
                    .AddJwtBearer(x =>
                    {
                        x.RequireHttpsMetadata = false;
                        x.SaveToken = true;
                        x.TokenValidationParameters = new TokenValidationParameters
                        {
                            ValidateIssuerSigningKey = true,
                            IssuerSigningKey = new SymmetricSecurityKey(Encoding.ASCII.GetBytes(Configuration.GetValue<string>("JWTSecret"))),
                            ValidateIssuer = false,
                            ValidateAudience = false
                        };
                    });

            services.AddAuthorization(options =>
            {
                var defaultAuthorizationPolicyBuilder = new AuthorizationPolicyBuilder(CookieAuthenticationDefaults.AuthenticationScheme, JwtBearerDefaults.AuthenticationScheme);
                defaultAuthorizationPolicyBuilder = defaultAuthorizationPolicyBuilder.RequireAuthenticatedUser();
                options.DefaultPolicy = defaultAuthorizationPolicyBuilder.Build();
            });

/api/auth/登录

public async Task<AuthenticationResult> Login([FromForm] string userName, [FromForm] string password, [FromHeader] string authmode = "")
{
    if (userName != "demo" || password != "demo")
        return new AuthenticationResult { HasError = true, Message = "Either the user name or password is incorrect." };

    var claims = new Claim[]
    {
        new Claim(ClaimTypes.Name, userName)
    };
    

    if(authmode?.ToLower() == "token")
    {
        var tokenHandler = new JwtSecurityTokenHandler();
        var key = Encoding.ASCII.GetBytes(_config.GetValue<string>("JWTSecret"));
        var tokenDescriptor = new SecurityTokenDescriptor
        {
            Subject = new ClaimsIdentity(claims, "JWT"),
            Expires = DateTime.UtcNow.AddMinutes(_config.GetValue<int>("JWTExpiry")),
            SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(key), SecurityAlgorithms.HmacSha256Signature)
        };
        var token = tokenHandler.CreateToken(tokenDescriptor);
        var jwt = tokenHandler.WriteToken(token);
        return new AuthenticationResult { Token = jwt };
    }
    else
    {
        ClaimsPrincipal princ = new ClaimsPrincipal(new ClaimsIdentity(claims, "COOKIE"));
        await HttpContext.SignInAsync(princ);
        return new AuthenticationResult();
    }
}

Output:

在此处输入图像描述 在此处输入图像描述

在此处输入图像描述 在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM