MParchin.Authority 1.2.0

dotnet add package MParchin.Authority --version 1.2.0                
NuGet\Install-Package MParchin.Authority -Version 1.2.0                
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="MParchin.Authority" Version="1.2.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MParchin.Authority --version 1.2.0                
#r "nuget: MParchin.Authority, 1.2.0"                
#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 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.2.0 0 11/23/2024
1.1.1 32 11/21/2024
1.1.0 37 11/21/2024
1.0.2 75 11/10/2024
1.0.1 75 11/10/2024
1.0.0 80 11/10/2024