35 lines
965 B
C#
35 lines
965 B
C#
using ErsatzTV.Application.Maintenance;
|
|
using ErsatzTV.Core;
|
|
using MediatR;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ErsatzTV.Controllers.Api;
|
|
|
|
[ApiController]
|
|
public class MaintenanceController(IMediator mediator)
|
|
{
|
|
[HttpGet("/api/maintenance/gc")]
|
|
public async Task<IActionResult> GarbageCollection([FromQuery] bool force = false)
|
|
{
|
|
await mediator.Send(new ReleaseMemory(force));
|
|
return new OkResult();
|
|
}
|
|
|
|
[HttpPost("/api/maintenance/empty_trash")]
|
|
public async Task<IActionResult> EmptyTrash()
|
|
{
|
|
Either<BaseError, Unit> result = await mediator.Send(new EmptyTrash());
|
|
foreach (BaseError error in result.LeftToSeq())
|
|
{
|
|
return new ContentResult
|
|
{
|
|
StatusCode = StatusCodes.Status500InternalServerError,
|
|
Content = error.ToString(),
|
|
ContentType = "text/plain"
|
|
};
|
|
}
|
|
|
|
return new OkResult();
|
|
}
|
|
}
|