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
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Noticia.AspNetCore.AuthorizationEvaluationMiddleware" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Noticia.AspNetCore.AuthorizationEvaluationMiddleware --version 1.0.4
#r "nuget: Noticia.AspNetCore.AuthorizationEvaluationMiddleware, 1.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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

Nuget .NET License: MIT CodeQL

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • 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.

Version Downloads Last updated
1.0.4 425 3/22/2022
1.0.2 377 3/22/2022
1.0.1 386 3/22/2022