feat(auth): add IGroupRoleMapper<string> seam (Task 1.1)

This commit is contained in:
Joseph Doherty
2026-06-02 00:29:45 -04:00
parent d2d7730830
commit 6534875476
4 changed files with 160 additions and 0 deletions
@@ -0,0 +1,34 @@
using Microsoft.Extensions.Options;
using ZB.MOM.WW.Auth.Abstractions.Roles;
using ZB.MOM.WW.OtOpcUa.Configuration.Services;
namespace ZB.MOM.WW.OtOpcUa.Security.Ldap;
/// <summary>
/// OtOpcUa's <see cref="IGroupRoleMapper{TRole}"/> implementation (roles are plain strings,
/// so <c>TRole = string</c>). A thin, behaviour-preserving adapter over the existing
/// <see cref="RoleMapper"/>: it computes the appsettings baseline via
/// <see cref="RoleMapper.Map"/>, then unions in system-wide DB grants via
/// <see cref="RoleMapper.Merge"/>. The OtOpcUa authz model is global (no per-cluster scope at
/// login), so <see cref="GroupRoleMapping{TRole}.Scope"/> is always <c>null</c>.
/// </summary>
/// <remarks>
/// This is the shared-library seam introduced ahead of rewiring the login flow; it does not
/// duplicate mapping logic and does not change behaviour. See <c>scadaproj/components/auth</c>.
/// </remarks>
public sealed class OtOpcUaGroupRoleMapper(
IOptions<LdapOptions> ldapOptions,
ILdapGroupRoleMappingService dbMappings) : IGroupRoleMapper<string>
{
/// <inheritdoc />
public async Task<GroupRoleMapping<string>> MapAsync(IReadOnlyList<string> groups, CancellationToken ct)
{
ArgumentNullException.ThrowIfNull(groups);
var baseline = RoleMapper.Map(groups, ldapOptions.Value.GroupToRole);
var dbRows = await dbMappings.GetByGroupsAsync(groups, ct).ConfigureAwait(false);
var merged = RoleMapper.Merge(baseline, dbRows);
return new GroupRoleMapping<string>(merged, Scope: null);
}
}