Add Serilog with SQLite
parent
778ff47236
commit
2377370aab
|
@ -5,6 +5,8 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Serilog.AspNetCore" Version="6.1.0" />
|
||||||
|
<PackageReference Include="Serilog.Sinks.SQLite" Version="5.5.0" />
|
||||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
|
using System.IO;
|
||||||
|
using System;
|
||||||
|
using System.Data.Common;
|
||||||
|
|
||||||
|
namespace Correo.Extensions
|
||||||
|
{
|
||||||
|
public static class SqliteExtensions
|
||||||
|
{
|
||||||
|
internal static string GetDatabasePath(this IConfiguration configuration)
|
||||||
|
{
|
||||||
|
var workspace = configuration.GetValue<string>("Workspace");
|
||||||
|
var connectionString = configuration.GetConnectionString("DatabaseConnection");
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(workspace))
|
||||||
|
throw new Exception($"Workspace path is empty! Check 'Workspace' parameter.");
|
||||||
|
|
||||||
|
var builder = new DbConnectionStringBuilder
|
||||||
|
{
|
||||||
|
ConnectionString = connectionString
|
||||||
|
};
|
||||||
|
|
||||||
|
var dataSource = builder["Data Source"].ToString();
|
||||||
|
var databasePath = dataSource.Replace("{Workspace}", workspace);
|
||||||
|
return databasePath;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
using Microsoft.AspNetCore.Builder;
|
||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Microsoft.Extensions.Hosting;
|
||||||
|
|
||||||
|
namespace Correo.Extensions
|
||||||
|
{
|
||||||
|
public static class StartupExtensions
|
||||||
|
{
|
||||||
|
public static void ConfigureServices(this IServiceCollection services, IConfiguration configuration)
|
||||||
|
{
|
||||||
|
// Add services to the container.
|
||||||
|
|
||||||
|
services.AddControllers();
|
||||||
|
|
||||||
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
||||||
|
services.AddEndpointsApiExplorer();
|
||||||
|
services.AddSwaggerGen();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Configure(this WebApplication app)
|
||||||
|
{
|
||||||
|
// Configure the HTTP request pipeline.
|
||||||
|
if (app.Environment.IsDevelopment())
|
||||||
|
{
|
||||||
|
app.UseSwagger();
|
||||||
|
app.UseSwaggerUI();
|
||||||
|
}
|
||||||
|
|
||||||
|
app.UseAuthorization();
|
||||||
|
|
||||||
|
|
||||||
|
app.MapControllers();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,6 +1,11 @@
|
||||||
|
using Correo.Extensions;
|
||||||
using Microsoft.AspNetCore.Builder;
|
using Microsoft.AspNetCore.Builder;
|
||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Hosting;
|
using Microsoft.Extensions.Hosting;
|
||||||
|
using Serilog;
|
||||||
|
using Serilog.Core;
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace Correo
|
namespace Correo
|
||||||
{
|
{
|
||||||
|
@ -9,30 +14,38 @@ namespace Correo
|
||||||
public static void Main(string[] args)
|
public static void Main(string[] args)
|
||||||
{
|
{
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
builder.Services.ConfigureServices(builder.Configuration);
|
||||||
|
|
||||||
// Add services to the container.
|
builder.Host.UseSerilog((_, loggerConfiguration) =>
|
||||||
|
{
|
||||||
builder.Services.AddControllers();
|
var databasePath = builder.Configuration.GetDatabasePath();
|
||||||
|
loggerConfiguration
|
||||||
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
.ReadFrom.Configuration(builder.Configuration)
|
||||||
builder.Services.AddEndpointsApiExplorer();
|
.Enrich.FromLogContext()
|
||||||
builder.Services.AddSwaggerGen();
|
.WriteTo.Console()
|
||||||
|
.WriteTo.SQLite(databasePath, "__Logs");
|
||||||
|
});
|
||||||
|
|
||||||
var app = builder.Build();
|
var app = builder.Build();
|
||||||
|
app.Configure();
|
||||||
|
|
||||||
// Configure the HTTP request pipeline.
|
try
|
||||||
if (app.Environment.IsDevelopment())
|
|
||||||
{
|
{
|
||||||
app.UseSwagger();
|
var urls = builder.Configuration.GetValue<string>("urls");
|
||||||
app.UseSwaggerUI();
|
Log.Information("Starting Correo...");
|
||||||
}
|
Log.Information($"Correo listening on {urls}");
|
||||||
|
Console.WriteLine("Application started. Press Ctrl+C to shut down.");
|
||||||
app.UseAuthorization();
|
|
||||||
|
|
||||||
|
|
||||||
app.MapControllers();
|
|
||||||
|
|
||||||
app.Run();
|
app.Run();
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Log.Fatal(ex, "Correo host terminated unexpectedly");
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
Log.CloseAndFlush();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.AspNetCore": "Warning"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,8 +1,15 @@
|
||||||
{
|
{
|
||||||
"Logging": {
|
"Urls": "http://*:5005",
|
||||||
"LogLevel": {
|
"Workspace": "workspace",
|
||||||
"Default": "Information",
|
"ConnectionStrings": {
|
||||||
"Microsoft.AspNetCore": "Warning"
|
"DatabaseConnection": "Data Source={Workspace}\\correo.db"
|
||||||
|
},
|
||||||
|
"Serilog": {
|
||||||
|
"MinimumLevel": {
|
||||||
|
"Default": "Debug",
|
||||||
|
"Override": {
|
||||||
|
"Microsoft": "Information"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"AllowedHosts": "*"
|
"AllowedHosts": "*"
|
||||||
|
|
Loading…
Reference in New Issue