Noticia.AspNetCore.AuthorizationEvaluationMiddleware
1.0.4
dotnet add package Noticia.AspNetCore.AuthorizationEvaluationMiddleware --version 1.0.4
NuGet\Install-Package Noticia.AspNetCore.AuthorizationEvaluationMiddleware -Version 1.0.4
<PackageReference Include="Noticia.AspNetCore.AuthorizationEvaluationMiddleware" Version="1.0.4" />
paket add Noticia.AspNetCore.AuthorizationEvaluationMiddleware --version 1.0.4
#r "nuget: Noticia.AspNetCore.AuthorizationEvaluationMiddleware, 1.0.4"
// Install Noticia.AspNetCore.AuthorizationEvaluationMiddleware as a Cake Addin #addin nuget:?package=Noticia.AspNetCore.AuthorizationEvaluationMiddleware&version=1.0.4 // Install Noticia.AspNetCore.AuthorizationEvaluationMiddleware as a Cake Tool #tool nuget:?package=Noticia.AspNetCore.AuthorizationEvaluationMiddleware&version=1.0.4
This middleware provides the option to not execute requests whenever the Authorization-Evaluation
header of a HTTP request is set to a truthy value.
Providing this header allows for a policy agent (like OpenPolicyAgent) to evaluate the request and when granted, preventing the HTTP request's further execution.
This workflow is useful when using client apps (i.e. SPAs like Angular) and you need to check whether the user has certain permissions to access resources within the client app, but without having to allow public access to the policy agent.
NOTE: This package currently requires the usage of a policy middleware. This library only prevents requests from being executed whenever the policy server grants the request. Whenever the request is granted and this middleware prevents the execution, the request will receive a 204 (No Content)
response.
Installation
dotnet add package Noticia.AspNetCore.AuthorizationEvaluationMiddleware
Usage
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
...
app.UseAuthorizationEvaluation();
...
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.