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
<PackageReference Include="Voyager.Enricher.Identity" Version="1.0.1" />
<PackageVersion Include="Voyager.Enricher.Identity" Version="1.0.1" />
<PackageReference Include="Voyager.Enricher.Identity" />
paket add Voyager.Enricher.Identity --version 1.0.1
#r "nuget: Voyager.Enricher.Identity, 1.0.1"
#addin nuget:?package=Voyager.Enricher.Identity&version=1.0.1
#tool nuget:?package=Voyager.Enricher.Identity&version=1.0.1
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 | Versions 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. |
-
net8.0
- Microsoft.Extensions.Logging.Configuration (>= 9.0.2)
- Serilog (>= 4.2.0)
-
net9.0
- Microsoft.Extensions.Logging.Configuration (>= 9.0.2)
- Serilog (>= 4.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.