Voyager.Enricher.Identity 1.0.1

dotnet add package Voyager.Enricher.Identity --version 1.0.1
                    
NuGet\Install-Package Voyager.Enricher.Identity -Version 1.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="Voyager.Enricher.Identity" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Voyager.Enricher.Identity" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Voyager.Enricher.Identity" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Voyager.Enricher.Identity --version 1.0.1
                    
#r "nuget: Voyager.Enricher.Identity, 1.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.
#addin nuget:?package=Voyager.Enricher.Identity&version=1.0.1
                    
Install Voyager.Enricher.Identity as a Cake Addin
#tool nuget:?package=Voyager.Enricher.Identity&version=1.0.1
                    
Install Voyager.Enricher.Identity as a Cake Tool

Voyager.Enricher.Identity

Voyager.Enricher.Identity is a library that provides an enricher for Identity data. The credentials are passed by a function, allowing them to be supplied by Dependency Injection (DI).

Features

  • Enriches Serilog logs with Identity data.
  • Credentials are supplied via a function, enabling DI.

Installation

To install Voyager.Enricher.Identity, run the following command:

dotnet add package Voyager.Enricher.Identity 

Usage

To use the Identity enricher in your Serilog configuration, call the WithIdentityEnricher extension method:

using Serilog;
using Serilog.Configuration;
using Voyager.Enricher.Identity;

var logger = new LoggerConfiguration()
    .Enrich.WithIdentityEnricher(() => new MyIdentityProvider())
    .CreateLogger();

Implementing IdentityProvider

Here is an example of how to implement the IdentityProvider:

using Microsoft.AspNetCore.Http;
using Voyager.Enricher.Identity;

public class PilotRozIdentityProvider : IdentityProvider
{
    private readonly IHttpContextAccessor httpContextAccessor;
    private readonly IIdentityProvider identityProvider;

    public PilotRozIdentityProvider(IHttpContextAccessor httpContextAccessor, IIdentityProvider identityProvider)
    {
        this.httpContextAccessor = httpContextAccessor;
        this.identityProvider = identityProvider;
    }

    public Identity GetIdentity()
    {
        var identityS3 = identityProvider!.Build(httpContextAccessor!.HttpContext!.User);
        return new Identity(identityS3.BusId, identityS3.Login, identityS3.IdAkwizytor);
    }
}

Registering Serilog with the Enricher

Here is an example of how to register Serilog with the Identity enricher in your application:

.ConfigureLogging((hostingContext, loggingBuilder) =>
{
    loggingBuilder.ClearProviders();
    loggingBuilder.Services.AddTransient<Voyager.Enricher.Identity.IdentityProvider, PilotRozIdentityProvider>();
    loggingBuilder.Services.AddSerilog((sp, lg) =>
    {
        lg.ReadFrom.Configuration(hostingContext.Configuration);
        lg.Enrich.WithIdentityEnricher(() =>
        {
            return sp.GetService<Voyager.Enricher.Identity.IdentityProvider>()!;
        });
    });

#if DEBUG
    var file = File.CreateText("Self.log");
    SelfLog.Enable(TextWriter.Synchronized(file));
#endif
})

Building the Project

To build the project, run the following command:

dotnet build

Running Tests

To run the tests, use the following command:

dotnet test

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Authors

  • Andrzej Świstowski

Project URL

For more information, visit the project page.

Repository URL

The repository is hosted on GitHub at Voyager.Enricher.Identity.

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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
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
1.0.1 106 3/21/2025
0.0.6 251 3/10/2025
0.0.5 143 3/10/2025