2024-05-28 15:29:18 +02:00
|
|
|
using Foxnouns.Backend;
|
2024-05-27 15:53:54 +02:00
|
|
|
using Foxnouns.Backend.Extensions;
|
2024-06-12 03:47:20 +02:00
|
|
|
using Foxnouns.Backend.Services;
|
2024-07-12 17:12:24 +02:00
|
|
|
using Foxnouns.Backend.Utils;
|
2024-05-28 15:29:18 +02:00
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2024-05-28 17:09:50 +02:00
|
|
|
using Newtonsoft.Json;
|
2024-05-27 15:53:54 +02:00
|
|
|
using Newtonsoft.Json.Serialization;
|
2024-09-03 17:00:14 +02:00
|
|
|
using Prometheus;
|
2024-07-08 19:03:04 +02:00
|
|
|
using Sentry.Extensibility;
|
2024-10-02 00:28:07 +02:00
|
|
|
using Serilog;
|
2024-05-27 15:53:54 +02:00
|
|
|
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
|
|
|
|
var config = builder.AddConfiguration();
|
|
|
|
|
2024-09-04 01:46:39 +02:00
|
|
|
builder.AddSerilog();
|
2024-05-27 15:53:54 +02:00
|
|
|
|
2024-10-02 00:28:07 +02:00
|
|
|
builder
|
|
|
|
.WebHost.UseSentry(opts =>
|
2024-07-12 17:12:24 +02:00
|
|
|
{
|
|
|
|
opts.Dsn = config.Logging.SentryUrl;
|
|
|
|
opts.TracesSampleRate = config.Logging.SentryTracesSampleRate;
|
|
|
|
opts.MaxRequestBodySize = RequestSize.Small;
|
|
|
|
})
|
|
|
|
.ConfigureKestrel(opts =>
|
|
|
|
{
|
|
|
|
// Requests are limited to a maximum of 2 MB.
|
|
|
|
// No valid request body will ever come close to this limit,
|
|
|
|
// but the limit is slightly higher to prevent valid requests from being rejected.
|
|
|
|
opts.Limits.MaxRequestBodySize = 2 * 1024 * 1024;
|
|
|
|
});
|
2024-07-08 19:03:04 +02:00
|
|
|
|
2024-10-02 00:28:07 +02:00
|
|
|
builder
|
|
|
|
.Services.AddControllers()
|
2024-05-27 15:53:54 +02:00
|
|
|
.AddNewtonsoftJson(options =>
|
2024-07-12 17:12:24 +02:00
|
|
|
{
|
|
|
|
options.SerializerSettings.ContractResolver = new PatchRequestContractResolver
|
2024-05-27 15:53:54 +02:00
|
|
|
{
|
2024-10-02 00:28:07 +02:00
|
|
|
NamingStrategy = new SnakeCaseNamingStrategy(),
|
2024-07-12 17:12:24 +02:00
|
|
|
};
|
|
|
|
})
|
2024-05-28 15:29:18 +02:00
|
|
|
.ConfigureApiBehaviorOptions(options =>
|
|
|
|
{
|
|
|
|
options.InvalidModelStateResponseFactory = actionContext => new BadRequestObjectResult(
|
2024-07-12 17:12:24 +02:00
|
|
|
new ApiError.AspBadRequest("Bad request", actionContext.ModelState).ToJson()
|
2024-05-28 15:29:18 +02:00
|
|
|
);
|
|
|
|
});
|
2024-05-27 15:53:54 +02:00
|
|
|
|
2024-05-28 17:09:50 +02:00
|
|
|
// Set the default converter to snake case as we use it in a couple places.
|
2024-10-02 00:28:07 +02:00
|
|
|
JsonConvert.DefaultSettings = () =>
|
|
|
|
new JsonSerializerSettings
|
2024-05-28 17:09:50 +02:00
|
|
|
{
|
2024-10-02 00:28:07 +02:00
|
|
|
ContractResolver = new DefaultContractResolver
|
|
|
|
{
|
|
|
|
NamingStrategy = new SnakeCaseNamingStrategy(),
|
|
|
|
},
|
|
|
|
};
|
2024-05-28 17:09:50 +02:00
|
|
|
|
2024-10-02 00:28:07 +02:00
|
|
|
builder.AddServices(config).AddCustomMiddleware().AddEndpointsApiExplorer().AddSwaggerGen();
|
2024-07-08 19:03:04 +02:00
|
|
|
|
2024-05-27 15:53:54 +02:00
|
|
|
var app = builder.Build();
|
|
|
|
|
2024-05-28 15:29:18 +02:00
|
|
|
await app.Initialize(args);
|
|
|
|
|
2024-05-27 15:53:54 +02:00
|
|
|
app.UseSerilogRequestLogging();
|
|
|
|
app.UseRouting();
|
2024-10-02 00:28:07 +02:00
|
|
|
|
2024-07-08 19:03:04 +02:00
|
|
|
// Not all environments will want tracing (from experience, it's expensive to use in production, even with a low sample rate),
|
|
|
|
// so it's locked behind a config option.
|
2024-10-02 00:28:07 +02:00
|
|
|
if (config.Logging.SentryTracing)
|
|
|
|
app.UseSentryTracing();
|
2024-05-27 15:53:54 +02:00
|
|
|
app.UseSwagger();
|
|
|
|
app.UseSwaggerUI();
|
|
|
|
app.UseCors();
|
2024-05-28 15:29:18 +02:00
|
|
|
app.UseCustomMiddleware();
|
2024-05-27 15:53:54 +02:00
|
|
|
app.MapControllers();
|
|
|
|
|
|
|
|
app.Urls.Clear();
|
|
|
|
app.Urls.Add(config.Address);
|
2024-09-03 17:00:14 +02:00
|
|
|
|
|
|
|
// Make sure metrics are updated whenever Prometheus scrapes them
|
|
|
|
Metrics.DefaultRegistry.AddBeforeCollectCallback(async ct =>
|
2024-10-02 00:28:07 +02:00
|
|
|
await app.Services.GetRequiredService<MetricsCollectionService>().CollectMetricsAsync(ct)
|
|
|
|
);
|
2024-05-27 15:53:54 +02:00
|
|
|
|
|
|
|
app.Run();
|
2024-10-02 00:28:07 +02:00
|
|
|
Log.CloseAndFlush();
|