Kck.Authorization.Abstractions
3.4.0
dotnet add package Kck.Authorization.Abstractions --version 3.4.0
NuGet\Install-Package Kck.Authorization.Abstractions -Version 3.4.0
<PackageReference Include="Kck.Authorization.Abstractions" Version="3.4.0" />
<PackageVersion Include="Kck.Authorization.Abstractions" Version="3.4.0" />
<PackageReference Include="Kck.Authorization.Abstractions" />
paket add Kck.Authorization.Abstractions --version 3.4.0
#r "nuget: Kck.Authorization.Abstractions, 3.4.0"
#:package Kck.Authorization.Abstractions@3.4.0
#addin nuget:?package=Kck.Authorization.Abstractions&version=3.4.0
#tool nuget:?package=Kck.Authorization.Abstractions&version=3.4.0
Kck.Authorization.Abstractions
Permission-based authorization abstractions for the Kck framework — define IAuthorizationService, IPermissionChecker, and ICurrentUserProvider contracts without coupling to any auth provider.
Installation
dotnet add package Kck.Authorization.Abstractions
Quick Start
// Implement the contracts in your auth provider
public class MyPermissionChecker : IPermissionChecker
{
public async Task<bool> HasPermissionAsync(string userId, string permission,
CancellationToken ct = default)
{
// query your permission store
return await _store.ExistsAsync(userId, permission, ct);
}
}
// Register in Program.cs
builder.Services.AddScoped<IPermissionChecker, MyPermissionChecker>();
builder.Services.AddScoped<ICurrentUserProvider, HttpContextCurrentUserProvider>();
// Use in a handler or controller
public class MyHandler(IPermissionChecker permissions, ICurrentUserProvider currentUser)
{
public async Task HandleAsync(CancellationToken ct)
{
var userId = currentUser.GetUserId();
if (!await permissions.HasPermissionAsync(userId, "orders.read", ct))
throw new UnauthorizedException("Insufficient permissions.");
}
}
Configuration
This is a contracts-only package — no configuration required. Wire up concrete implementations in your provider package (e.g. Kck.Security.Jwt).
Resources
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Kck.Authorization.Abstractions:
| Package | Downloads |
|---|---|
|
Kck.Pipeline.MediatR
MediatR-backed pipeline behaviors for Kck. Provides Authorization, Caching, Logging, Transaction, and Validation behaviors. DEPRECATED — use Kck.Pipeline.Mediator instead. Will be removed in a future version (KCK0200). |
|
|
Kck.Pipeline.Mediator
Mediator.Abstractions 3.x-backed pipeline behaviors for Kck. Provides Authorization, Caching, Logging, Transaction, and Validation cross-cutting behaviors. The recommended pipeline provider since Kck v2. Registered via AddKckMediator(). |
GitHub repositories
This package is not used by any popular GitHub repositories.