File: Services\AccountClaimsPrincipalFactory.cs
Web Access
Project: src\aspnetcore\src\Components\WebAssembly\WebAssembly.Authentication\src\Microsoft.AspNetCore.Components.WebAssembly.Authentication.csproj (Microsoft.AspNetCore.Components.WebAssembly.Authentication)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Security.Claims;
using System.Text.Json;
using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal;
 
namespace Microsoft.AspNetCore.Components.WebAssembly.Authentication;
 
/// <summary>
/// Converts <see cref="RemoteUserAccount" /> into a <see cref="ClaimsPrincipal"/>.
/// </summary>
/// <typeparam name="TAccount">The account type.</typeparam>
public class AccountClaimsPrincipalFactory<TAccount> where TAccount : RemoteUserAccount
{
    private readonly IAccessTokenProviderAccessor _accessor;
 
    /// <summary>
    /// Initialize a new instance of <see cref="AccountClaimsPrincipalFactory{TAccount}"/>.
    /// </summary>
    /// <param name="accessor"></param>
    public AccountClaimsPrincipalFactory(IAccessTokenProviderAccessor accessor) => _accessor = accessor;
 
    /// <summary>
    /// Gets or sets the <see cref="IAccessTokenProvider"/>.
    /// </summary>
    public IAccessTokenProvider TokenProvider => _accessor.TokenProvider;
 
    /// <summary>
    /// Converts the <paramref name="account"/> into the final <see cref="ClaimsPrincipal"/>.
    /// </summary>
    /// <param name="account">The account.</param>
    /// <param name="options">The <see cref="RemoteAuthenticationUserOptions"/> to configure the <see cref="ClaimsPrincipal"/> with.</param>
    /// <returns>A <see cref="ValueTask{TResult}"/>that will contain the <see cref="ClaimsPrincipal"/> user when completed.</returns>
    public virtual ValueTask<ClaimsPrincipal> CreateUserAsync(
        TAccount account,
        RemoteAuthenticationUserOptions options)
    {
        var identity = account != null ? new ClaimsIdentity(
        options.AuthenticationType,
        options.NameClaim,
        options.RoleClaim) : new ClaimsIdentity();
 
        if (account != null)
        {
            foreach (var kvp in account.AdditionalProperties)
            {
                var name = kvp.Key;
                var value = kvp.Value;
                if (value != null ||
                    (value is JsonElement element && element.ValueKind != JsonValueKind.Undefined && element.ValueKind != JsonValueKind.Null))
                {
                    identity.AddClaim(new Claim(name, value.ToString()!));
                }
            }
        }
 
        return new ValueTask<ClaimsPrincipal>(new ClaimsPrincipal(identity));
    }
}