MParchin.Authority
1.2.0
dotnet add package MParchin.Authority --version 1.2.0
NuGet\Install-Package MParchin.Authority -Version 1.2.0
<PackageReference Include="MParchin.Authority" Version="1.2.0" />
paket add MParchin.Authority --version 1.2.0
#r "nuget: MParchin.Authority, 1.2.0"
// Install MParchin.Authority as a Cake Addin #addin nuget:?package=MParchin.Authority&version=1.2.0 // Install MParchin.Authority as a Cake Tool #tool nuget:?package=MParchin.Authority&version=1.2.0
A micro service ready JWT Authentication and Authorization(claim based) solution using https://github.com/jwt-dotnet/jwt you can override or extend most of the functionality to suit your needs
on authority service that is responsible for authentication of users and generating tokens the app needs a database connection using entityframework(db should inherit from DbContext,IAuthorityDb):
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddJWTAuthentication<Db>(env.PUBLIC_KEY_FILE, env.PRIVATE_KEY_FILE, options =>
{
options.CurrentApp = env.APP;
options.Authority = env.AUTHORITY;
options.Audience = env.AUDIENCE.Split(",");
options.Expiration = TimeSpan.FromHours(env.TOKEN_EXPIRATION_HOURS);
options.RefresExpiration = TimeSpan.FromDays(env.REFRESH_EXPIRATION_DAYS);
});
....
app.MapAuthorityEndpoint("/"); // adding authority api methods
adding mail service:[optional]
builder.Services.AddMailService<MailService>();
adding text-message service:[optional]
builder.Services.AddTextMessageService<TextMessageService>();
by default authority uses in memory storage for otp storage you can also configure it to use redis database:[optional]
builder.Services.AddOTPStorageService(options => options.UseRedisStorage(env.REDIS_HOST));
on any other service that needs to use the token for authorization or simple identification of user:
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddJWTAuthentication<Db>(env.PUBLIC_KEY_FILE, options =>
{
options.CurrentApp = env.APP;
options.Authority = env.AUTHORITY;
});
and to get the user in api methods:
app.MapGet("/", (ClaimsPrincipal principal, IAuthority authority) => $"Hello {authority.GetUser(principal)}!")
.RequireAuthorization(Authorization.User);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- jwt (>= 10.1.1)
- JWT.Extensions.AspNetCore (>= 10.1.1)
- Microsoft.AspNetCore (>= 2.2.0)
- Microsoft.AspNetCore.Authorization (>= 8.0.10)
- Microsoft.EntityFrameworkCore (>= 8.0.10)
- StackExchange.Redis (>= 2.8.16)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.