admin管理员组文章数量:1349737
Edit: I implement an AuthorizeFilter
and got the same issue.
I trying to implement permission based authorization like in this post: Permission-Based Authorization in ASP.NET Core multitenant project: A Step-by-Step Guide - DEV Community and Joao Grassi"s blog with custom AuthorizationHandler
and AuthorizationPolicyProvider
. My issue is: after the call to GetPolicyAsync
is executed, it creates a new CurrentTenantService
instance instead of reusing the current one (which has data about current request: conn string, username, etc..). I try to debug but don't know why it do it that way.
Any help is welcome, thank you.
public class PermissionAuthorizationPolicyProvider : DefaultAuthorizationPolicyProvider
{
public PermissionAuthorizationPolicyProvider(IOptions<AuthorizationOptions> options)
: base(options) { }
/// <inheritdoc />
public override async Task<AuthorizationPolicy?> GetPolicyAsync(string policyName)
{
// ...
return new AuthorizationPolicyBuilder().AddRequirements(requirement).Build();
}
}
I inject 2 services (one will make call to the database, one provide current tenant data) into the AuthorizationHandler
in order to do the authorize logic. So my handler will be register as scoped.
public class PermissionHandler : AuthorizationHandler<PermissionRequirement>
{
private readonly ICurrentTenantService _currentTenantService;
private readonly ISecurityService _securityService;
public PermissionHandler(ICurrentTenantService currentTenantService, ISecurityService securityService)
{
_currentTenantService = currentTenantService;
_securityService = securityService;
}
protected override async Task HandleRequirementAsync(
AuthorizationHandlerContext context, PermissionRequirement requirement)
{
// Authorizing.....
}
}
and they are registered like this:
builder.Services.AddScoped<ICurrentTenantService, CurrentTenantService>(); // contain connStr
builder.Services.AddDbContext<SecurityDbContext>();
builder.Services.AddDbContext<SystemDataDbContext>();
// Register custom Authorization handler
builder.Services.AddScoped<IAuthorizationHandler, PermissionHandler>();
// Overrides the DefaultAuthorizationPolicyProvider
builder.Services.AddSingleton<IAuthorizationPolicyProvider, PermissionAuthorizationPolicyProvider>();
// Middlewares
app.UseMiddleware<AuthenticationMiddleware>();
app.UseAuthorize();
I did try debugging step by step to find what cause the CurrentTenantService
to reinitialize.
I try to register my handler as singleton and get those dependencies through IServiceProvider
, but this yields the same result.
本文标签: cASPNET Core how to correctly inject scoped service in custom AuthorizationHandlerStack Overflow
版权声明:本文标题:c# - ASP.NET Core: how to correctly inject scoped service in custom AuthorizationHandler - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743865694a2552539.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论