DotNetBrightener.Infrastructure.Security 2024.0.12.11621

dotnet add package DotNetBrightener.Infrastructure.Security --version 2024.0.12.11621
NuGet\Install-Package DotNetBrightener.Infrastructure.Security -Version 2024.0.12.11621
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="DotNetBrightener.Infrastructure.Security" Version="2024.0.12.11621" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotNetBrightener.Infrastructure.Security --version 2024.0.12.11621
#r "nuget: DotNetBrightener.Infrastructure.Security, 2024.0.12.11621"
#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 DotNetBrightener.Infrastructure.Security as a Cake Addin
#addin nuget:?package=DotNetBrightener.Infrastructure.Security&version=2024.0.12.11621

// Install DotNetBrightener.Infrastructure.Security as a Cake Tool
#tool nuget:?package=DotNetBrightener.Infrastructure.Security&version=2024.0.12.11621

Security Infratructure Library

© DotNet Brightener

Installation

Run this in command line:

dotnet add package DotNetBrightener.Infrastructure.Security

Or add the following to .csproj file

<PackageReference Include="DotNetBrightener.Infrastructure.Security" Version="2022.10.0" />

You should check the latest version from Nuget Site

Adding Permission System

  1. Register the Permission System to IServiceCollection
serviceCollection.AddPermissionAuthorization();
  1. Calling the following before application starts.
var app = builder.Build();

// call this before app.Run()
app.LoadAndValidatePermissions();

app.Run();

If you use legacy Startup.cs file then the app.LoadAndValidatePermissions() should be called in Configure() method

Authorization Extensions

  1. Authorize with IAuthorizationService
var authorizationResult = await IAuthorizationService.AuthorizePermissionAsync(user, permissionKey);
  1. Authorize with [PermissionAuthorize] attribute

public class SomeController: Controller 
{
    [PermissionAuthorize("<your_permission_key>")]
    public async Task<IActionResult> SomeAction() 
    {
        // your action implementation
    }   
}

Automatically Register Permissions

Given the following class for defining permissions


public class SomePermissionsList: AutomaticPermissionProvider
{
    /// <summary>
    ///     Description for Permission 1
    /// </summary>
    public const string Permission1 = "ThisIsKey.OfThePermission";

    /// <summary>
    ///     Description for Permission 2
    /// </summary>
    public const string Permission2 = "Permission.Permission2";
}

You can register the permissions defined in this class into service collection by doing the following:

// with SomePermissionsList is the type of permission provider
serviceCollection.RegisterPermissionProvider<SomePermissionsList>();

The app.LoadAndValidatePermissions() call above should automatically register the permissions you defined in the class provided

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 (4)

Showing the top 4 NuGet packages that depend on DotNetBrightener.Infrastructure.Security:

Package Downloads
DotNetBrightener.Infrastructure.JwtAuthentication

Package Description

DotNetBrightener.WebApp.CommonShared

Package Description

DotNetBrightener.Infrastructure.ApiKeyAuthentication

Package Description

DotNetBrightener.MultiTenancy

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2024.0.12.11621 51 4/25/2024
2024.0.12.11523 64 4/24/2024
2024.0.12.11522 72 4/24/2024
2024.0.12.11417 115 4/23/2024
2024.0.12.11400 122 4/22/2024
2024.0.12.11316 104 4/22/2024
2024.0.11.10220 97 4/11/2024
2024.0.11.10120 90 4/10/2024
2024.0.11.10119 85 4/10/2024
2024.0.11.10115 93 4/10/2024
2024.0.11.9914 118 4/8/2024
2024.0.11.9901 95 4/7/2024
2024.0.11.9823 108 4/7/2024
2024.0.11.9401 112 4/2/2024
2024.0.11.9301 99 4/1/2024
2024.0.11.9206 99 3/31/2024
2024.0.11.9205 97 3/31/2024
2024.0.11.8200 113 3/21/2024
2024.0.11.8122 84 3/21/2024
2024.0.11.8120 86 3/21/2024
2024.0.11.7320 130 3/13/2024
2024.0.11.7316 104 3/13/2024
2024.0.11.7310 101 3/13/2024
2024.0.11 100 3/13/2024
2024.0.10 127 3/3/2024
2024.0.9 109 2/27/2024
2024.0.8 147 2/1/2024
2024.0.7 102 1/26/2024
2024.0.6 102 1/25/2024
2024.0.5 89 1/24/2024
2024.0.4 92 1/24/2024
2024.0.3 106 1/22/2024
2024.0.2 168 1/10/2024
2024.0.1 106 1/9/2024
2024.0.1-alpha-3 90 1/9/2024
2024.0.1-alpha-2 95 1/9/2024
2024.0.1-alpha-1 112 1/3/2024
2024.0.0 155 12/26/2023
2023.0.27 166 12/21/2023
2023.0.26 127 12/21/2023
2023.0.25 159 12/11/2023
2023.0.24 142 12/8/2023
2023.0.23 132 12/6/2023
2023.0.21 193 12/4/2023
2023.0.20 184 11/27/2023
2023.0.19 148 11/20/2023
2023.0.18 158 10/25/2023
2023.0.17 204 10/22/2023
2023.0.16 218 10/16/2023
2023.0.16-alpha-1 90 10/16/2023
2023.0.15 146 10/14/2023
2023.0.14 118 10/14/2023
2023.0.13 121 10/14/2023
2023.0.12 137 10/14/2023
2023.0.11 125 10/10/2023
2023.0.10 137 10/9/2023
2023.0.9 212 8/16/2023
2023.0.8 199 8/15/2023
2023.0.8-alpha-2 242 5/31/2023
2023.0.7 525 5/12/2023
2023.0.6 219 5/10/2023
2023.0.5 180 5/7/2023
2023.0.4 213 4/22/2023
2023.0.3 254 4/19/2023
2023.0.2 244 4/6/2023
2023.0.1 231 3/13/2023
2022.10.4 334 11/9/2022
2022.10.3 390 10/19/2022
2022.10.2 462 10/19/2022
2022.10.0 441 10/16/2022
2022.7.1 471 7/18/2022

Basic infrastructure provided for authorizing User with given permission