Practical ASP.NET

Accessing and Extending Authorization Claims in ASP.NET Core and Blazor

When you need to integrate authorization with procedural code, you're going to need your application's ClaimsPrincipal object so that you can check the user's authorization claims. Here's both how to get to the ClaimsPrincipal and how to extend it with custom claims.

If you've written code to access user information in ASP.NET MVC, you've worked with the ClaimsPrincipal object. That object is still necessary in ASP.NET Core but the way you access it has changed. In ASP.NET MVC there was an assumption of stability that ASP.NET Core doesn't count on. You could, for example, in ASP.NET MVC retrieve the ClaimsPrincipal object from the thread your Action method was executing on. In the asynchronous world of ASP.NET Core, where your request may start on one thread and finish on another, that's not a viable option.

So in this post, I'll start by showing how to get the ClaimsPrincipal object both in ASP.NET Core and in Blazor. However, the reason you want to get to the ClaimsPrincipal object is to access the claims that are associated with it.

That's because claims perform two functions. Primarily, of course, claims provide authorization information which is why you need them for authorization code. However, claims also act as carriers for useful information about the current user. Since claims are available wherever the ClaimsPrincipal object is available (and, as you'll see, the ClaimsPrincipal object is available everywhere), claims let you access user-related information without having to make a trip to some datastore. So I'm also going to show how your application can add claims to the ClaimsPrincipal object to make it more useful both not only to your authorization process but to any other process that requires user-related information.

Retrieving the ClaimsPrincipal Object in ASP.NET
Getting the ClaimsPrincipal object in a Controller or in the model class for a Razor Page is relatively easy: Just use the base class' User property, like this:

    ClaimsPrincipal cp = this.User;

For any class that has access to ASP.NET Core's HttpContext class, the process is equally simple because the HttpContext object also has a User property that holds a ClaimsPrincipal object.

In any component that you add to your application's services collection (i.e. in the Startup class' ConfigureServices method), you can ask for the IHttpContextAccessor object in the object's constructor. While the IHttpContextAccessor object doesn't have a User property, it does give you access to the HttpContext object which has a User property. To use the IHttpContextAccess object, you first need to add it to your application's services collection in your ConfigureServices method:

services.AddHttpContextAccessor();

Then, in your service class' constructor you can ask for the IHttpContextAccessor object and use it to get the HttpContext object and its User property. Typical code might look like this:

private HttpContext hcontext;
public MyController(IHttpContextAccessor haccess)
{
  hcontext = haccess.HttpContext;
}

public IActionResult ContactUs()
{
   ClaimsPrincipal cp = hcontext.User;

Getting the ClaimsPrincipal Object in Blazor
In Blazor, the process for getting the ClaimsPrincipal object is a little more complicated. In Blazor, the user's authorization information is cascaded down to you through the CascadingAuthenticationState component. To grab that information, which is of type Task<AuthenticationState>, you need to set up a CascadingParameter property in the component where you want to authorize the user.

In this code, I've defined that parameter and called the property authState:

[CascadingParameter]
private Task<AuthenticationState> authState { get; set; }

The AuthenticationState object that this property grabs has a User property that holds the ClaimsPrincipal object you need.

The earliest point in the life cycle of the component where you can use a CascadingParameter is your component's OnParametersSet method. This code overrides that method, grabs the AuthorizationState object from the Task object and extracts its User property into a ClaimsPrincipal field called principal (it also checks to see if the authState property is null first, in case no authorization information has been cascaded down to the component):

private System.Security.Claims.ClaimsPrincipal principal;
protected async override void OnParametersSet()
{
  if (authState != null) 
  { 
     principal = (await authState).User;
  }

Adding Claims
If claims are as useful as I'm saying they are then, after a user is authenticated (see Eric Vogel's posts on authenticating users here and here), you may want to retrieve information about the user and add it to the ClaimsPrincipal object's Claims collection. For example, it might be important to processing logic throughout your application to know what country the user is from. One way to handle that requirement would be to add a country claim to the ClaimsPrincipal object that represents the current user.

The way to do this that works with all the authentication methods that ASP.NET Core supports is to create a class that implements the IClaimsTransformation interface. Adding that interface to a class obliges you to add the TransformAsync method to your class (the TransformAsync method will automatically be called by ASP.NET after the user is authenticated and will be passed the ClaimsPrincipal object representing the current user). The method must return the ClaimsPrincipal object wrapped inside a Task object so that makes the method a candidate for the Task object's FromResult method.

A basic IClaimsTransformation class, then, might look like this:

public class UserInfoClaims : IClaimsTransformation
{
   public Task<ClaimsPrincipal> TransformAsync(ClaimsPrincipal principal)
   {
      return Task.FromResult(principal);
   }
}

The TransformAsync method may be called multiple times in processing a request so you don't want to do anything in here if you don't have to -- especially, you don't want to add any claims that you may have added during a previous call to this method. So the first thing you should do is check to see if the claim that you want to add is already present.

As an example, this code checks to see if the user already has a Country claim before doing anything:

if (!principal.HasClaim(c => c.Type == ClaimTypes.Country))
{

}
return Task.FromResult(principal);

You can't actually add claims directly to the ClaimsPrincipal's Claims collection. Instead, you create a new ClaimsIdentity object, add claims to it, and then add that ClaimsIdentity object to the ClaimsPrincipal object (claims added to any ClaimsIdentity automatically appear in the ClaimsPrincipal's Claims collection). There are a variety of ways to add Claim objects to a ClaimsIdentity object (for example, you can pass a collection of Claim objects to the ClaimsIdentity object's constructor). However, in this example, I'm only going to add a single Claim so I'll do it with the ClaimsIdentity object's AddClaim method:

if (!principal.HasClaim(c => c.Type == ClaimTypes.Country))
{
   ClaimsIdentity id = new ClaimsIdentity();
   id.AddClaim(new Claim(ClaimTypes.Country, "Canada"));
   principal.AddIdentity(id);
}

With your IClaimsTransformation object built, the last step is to add it to your application's services collection. That means adding code like this to the ConfigureServices method of your application's Startup class:

services.AddScoped<IClaimsTransformation, UserInfoClaims>();

Now that you've retrieved the ClaimsPrincipal object and added whatever claims to it you need, you can start using it. I'll cover that in my next post.

About the Author

Peter Vogel is a system architect and principal in PH&V Information Services. PH&V provides full-stack consulting from UX design through object modeling to database design. Peter tweets about his VSM columns with the hashtag #vogelarticles. His blog posts on user experience design can be found at http://blog.learningtree.com/tag/ui/.

comments powered by Disqus

Featured

  • Full Stack Hands-On Development with .NET

    In the fast-paced realm of modern software development, proficiency across a full stack of technologies is not just beneficial, it's essential. Microsoft has an entire stack of open source development components in its .NET platform (formerly known as .NET Core) that can be used to build an end-to-end set of applications.

  • .NET-Centric Uno Platform Debuts 'Single Project' for 9 Targets

    "We've reduced the complexity of project files and eliminated the need for explicit NuGet package references, separate project libraries, or 'shared' projects."

  • Creating Reactive Applications in .NET

    In modern applications, data is being retrieved in asynchronous, real-time streams, as traditional pull requests where the clients asks for data from the server are becoming a thing of the past.

  • AI for GitHub Collaboration? Maybe Not So Much

    No doubt GitHub Copilot has been a boon for developers, but AI might not be the best tool for collaboration, according to developers weighing in on a recent social media post from the GitHub team.

  • Visual Studio 2022 Getting VS Code 'Command Palette' Equivalent

    As any Visual Studio Code user knows, the editor's command palette is a powerful tool for getting things done quickly, without having to navigate through menus and dialogs. Now, we learn how an equivalent is coming for Microsoft's flagship Visual Studio IDE, invoked by the same familiar Ctrl+Shift+P keyboard shortcut.

Subscribe on YouTube