mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
cleanup
This commit is contained in:
parent
645f5fa366
commit
366aac238f
@ -143,18 +143,6 @@ public class Startup
|
||||
(c.Value.Contains(ApiScopes.Api) || c.Value.Contains(ApiScopes.ApiSecrets))
|
||||
));
|
||||
});
|
||||
|
||||
// Simplest implementation: check for role
|
||||
// Issues:
|
||||
// - unable to specify custom permissions
|
||||
// - multiple policies are treated as AND rather than OR
|
||||
// - does not allow for more complex conditional logic - e.g. providers can affect whether owners can view billing
|
||||
// Alternative: describe broad action/capability, e.g. ManageUsers, ManageGroups, ViewBilling, similar to CurrentContext today
|
||||
// the handler is then implemented per domain to define who can do those things
|
||||
// config.AddPolicy("owner", policy
|
||||
// => policy.AddRequirements(new RoleRequirementAttribute(OrganizationUserType.Owner)));
|
||||
// config.AddPolicy("admin", policy
|
||||
// => policy.AddRequirements(new RoleRequirementAttribute(OrganizationUserType.Admin)));
|
||||
});
|
||||
|
||||
services.AddScoped<AuthenticatorTokenProvider>();
|
||||
@ -268,7 +256,7 @@ public class Startup
|
||||
// Add authentication and authorization to the request pipeline.
|
||||
app.UseAuthentication();
|
||||
|
||||
// Add current context - before authz
|
||||
// Add current context - before authz. Is this OK?
|
||||
app.UseMiddleware<CurrentContextMiddleware>();
|
||||
|
||||
app.UseAuthorization();
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
namespace Bit.Core.AdminConsole.OrganizationFeatures.Shared.Authorization;
|
||||
|
||||
public interface IOrganizationRequirement : IAuthorizationRequirement;
|
||||
|
||||
public class OrganizationAuthorizeAttribute<T>
|
||||
: AuthorizeAttribute, IAuthorizationRequirementData
|
||||
where T : IOrganizationRequirement, new()
|
||||
|
@ -1,13 +1,10 @@
|
||||
#nullable enable
|
||||
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Routing;
|
||||
|
||||
namespace Bit.Core.AdminConsole.OrganizationFeatures.Shared.Authorization;
|
||||
|
||||
public interface IOrganizationRequirement : IAuthorizationRequirement;
|
||||
|
||||
public static class OrganizationRequirementHelpers
|
||||
{
|
||||
public static Guid? GetOrganizationId(this IHttpContextAccessor httpContextAccessor)
|
Loading…
x
Reference in New Issue
Block a user