Kavita/Kavita.Server/Middleware/ExceptionMiddleware.cs
Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

47 lines
1.5 KiB
C#

using System;
using System.Net;
using System.Text.Json;
using System.Threading.Tasks;
using Kavita.API.Errors;
using Kavita.Common;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
namespace Kavita.Server.Middleware;
public class ExceptionMiddleware(RequestDelegate next, ILogger<ExceptionMiddleware> logger)
{
private static readonly JsonSerializerOptions ExceptionJsonSerializeOptions = new()
{
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
};
public async Task InvokeAsync(HttpContext context)
{
try
{
await next(context); // downstream middlewares or http call
}
catch (Exception ex) when (ex is KavitaUnauthenticatedUserException or UnauthorizedAccessException)
{
context.Response.StatusCode = (int) HttpStatusCode.Unauthorized;
await context.Response.CompleteAsync();
}
catch (Exception ex)
{
logger.LogError(ex, "There was an exception");
context.Response.ContentType = "application/json";
context.Response.StatusCode = (int) HttpStatusCode.InternalServerError;
var errorMessage = string.IsNullOrEmpty(ex.Message) ? "Internal Server Error" : ex.Message;
var response = new ApiException(context.Response.StatusCode, errorMessage, ex.StackTrace);
var json = JsonSerializer.Serialize(response, ExceptionJsonSerializeOptions);
await context.Response.WriteAsync(json);
}
}
}