Add GET /api/logs (thin wrapper over GetRecentLogEntries; paged, filtered,
clamped pageSize like LibraryBrowseController) and GET /api/troubleshoot/info
(wraps GetTroubleshootingInfo; General section serialized to the same JSON
shape the legacy Blazor Troubleshooting page renders, plus per-platform
capability dumps). Also adds [EndpointGroupName("general")] to the existing
troubleshoot playback endpoints so they surface in the OpenAPI spec (#158
item 3).
40 lines
1.4 KiB
C#
40 lines
1.4 KiB
C#
using ErsatzTV.Application.Logs;
|
|
using ErsatzTV.Core.Api.Logs;
|
|
using MediatR;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ErsatzTV.Controllers.Api;
|
|
|
|
[ApiController]
|
|
public class LogsController(IMediator mediator) : ControllerBase
|
|
{
|
|
private const int MaxPageSize = 100;
|
|
|
|
[HttpGet("/api/logs", Name = "GetLogs")]
|
|
[Tags("Logs")]
|
|
[EndpointSummary("Get recent log entries")]
|
|
[EndpointGroupName("general")]
|
|
[ProducesResponseType(typeof(PagedLogEntriesResponseModel), StatusCodes.Status200OK)]
|
|
public async Task<PagedLogEntriesResponseModel> GetLogs(
|
|
[FromQuery] int pageNum = 0,
|
|
[FromQuery] int pageSize = 100,
|
|
[FromQuery] string filter = "",
|
|
CancellationToken cancellationToken = default)
|
|
{
|
|
int clampedPageNum = Math.Max(0, pageNum);
|
|
int clampedPageSize = Math.Clamp(pageSize, 1, MaxPageSize);
|
|
|
|
PagedLogEntriesViewModel result = await mediator.Send(
|
|
new GetRecentLogEntries(clampedPageNum, clampedPageSize, filter ?? string.Empty),
|
|
cancellationToken);
|
|
|
|
return new PagedLogEntriesResponseModel(
|
|
result.TotalCount,
|
|
result.Page.Map(ProjectToResponseModel).ToList());
|
|
}
|
|
|
|
private static LogEntryResponseModel ProjectToResponseModel(LogEntryViewModel viewModel) =>
|
|
new(viewModel.Timestamp, viewModel.Level.ToString(), viewModel.Message);
|
|
}
|