Authorization.Kentico.MVC.Core 13.0.1

Suggested Alternatives

XperienceCommunity.Authorization

Additional Details

Revamped package specifically for .Net core and republished as XperienceCommunity.Authorization.  See package site for quick migration steps.

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

// Install Authorization.Kentico.MVC.Core as a Cake Tool
#tool nuget:?package=Authorization.Kentico.MVC.Core&version=13.0.1

Kentico Authorization Attribute

For Kentico 13 .Net Core only!

Kentico Authorization Attribute for Kentico MVC, provides a [KenticoAuthorize] Attribute that you can add to your ActionResult methods that can allows for permissions on:

  1. User Authenticated
  2. User Names
  3. User Roles
  4. Page ACL Permissions (May require custom handling, see Events section below)
  5. Resource/Module Permissions

It also allows for a custom Unauthorized Redirect path in case you need to specify a specific location to send unauthorized users.

Installation

  1. Install the Authorization.Kentico.MVC.Core NuGet Package to your MVC Site
  2. Overwrite any Events if you need (especially the GetPage)
  3. Add [KenticoAuthorize()] attributes to your ActionResult methods.

Usage

  1. Add the [KenticoAuthorize()] Attribute to your ActionResult and pass in any properties you wish to configure.

Events

The Authorization Module has 4 events you can hook into in order to customize it's behavior.

AuthorizeEvents.GetPage

This allows you to modify the retrieval of the current page. By default, it will try to find the page based on Kentico's Page Builder Context, then by the relative path with a match on the NodeAliasPath.

AuthorizeEvents.GetCulture

This allows you to modify the retrieval of the current culture. This is used in the GetPage logic to get the proper TreeNode. By default, It will use the PreviewCulture (if in preview), LocalizationContext.CurrentCulture, and lastly the System.Globalization.CultureInfo.CurrentCulture.Name.

AuthorizeEvents.GetUser

This allows you to modify the retrieval of the current user. By default it will use the HttpContext.User.Identity to get the UserName of the current user. Public is the default user if none found or the found user is disabled.

AuthorizeEvents.Authorizing

This allows you to modify the Authorizing logic itself. By default it will perform all the proper checks on User, Role, Module Permissions, Page ACL, and user allowed cultures. If you do overwrite, you must set SkipDefaultValidation to true in the AuthorizingEventArgs.

Compatability

Can be used on any Kentico 13 .net Core site.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp3.1 is compatible. 
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
13.0.1 11,642 12/19/2020
13.0.0 894 12/16/2020

Unauthorized and Not Authenticated results were not properly executing, adjusted code to properly execute these, it now uses the ConfigureApplicationCookie's LoginPath and AccessDeniedPath (usually configured in Startup.cs)