using System.ComponentModel.DataAnnotations; using ErsatzTV.Application.MediaCollections; using ErsatzTV.Controllers.Api.Requests; using ErsatzTV.Core; using ErsatzTV.Core.Api.SmartCollections; using ErsatzTV.Extensions; using MediatR; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; namespace ErsatzTV.Controllers.Api; [ApiController] public class SmartCollectionController(IMediator mediator) : ControllerBase { [HttpGet("/api/smart-collections")] [Tags("Smart Collections")] [EndpointSummary("Get all smart collections")] [EndpointGroupName("general")] [ProducesResponseType(typeof(List), StatusCodes.Status200OK)] public async Task> GetAll(CancellationToken cancellationToken) => await mediator.Send(new GetAllSmartCollectionsForApi(), cancellationToken); [HttpGet("/api/smart-collections/{id:int}", Name = "GetSmartCollectionById")] [Tags("Smart Collections")] [EndpointSummary("Get a smart collection by id")] [EndpointGroupName("general")] [ProducesResponseType(typeof(SmartCollectionViewModel), StatusCodes.Status200OK)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status404NotFound)] public async Task GetById(int id, CancellationToken cancellationToken) { Option result = await mediator.Send(new GetSmartCollectionById(id), cancellationToken); return result.ToGetResult(); } [HttpPost("/api/smart-collections")] [Tags("Smart Collections")] [EndpointSummary("Create a smart collection")] [EndpointGroupName("general")] [ProducesResponseType(typeof(SmartCollectionViewModel), StatusCodes.Status201Created)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status404NotFound)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status422UnprocessableEntity)] public async Task Create( [Required] [FromBody] CreateSmartCollectionRequest request, CancellationToken cancellationToken) { Either result = await mediator.Send(request.ToCommand(), cancellationToken); return result.ToCreatedResult(vm => $"/api/smart-collections/{vm.Id}", vm => vm); } [HttpPut("/api/smart-collections/{id:int}")] [Tags("Smart Collections")] [EndpointSummary("Update a smart collection")] [EndpointGroupName("general")] [ProducesResponseType(typeof(SmartCollectionViewModel), StatusCodes.Status200OK)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status404NotFound)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status422UnprocessableEntity)] public async Task Update( int id, [Required] [FromBody] UpdateSmartCollectionRequest request, CancellationToken cancellationToken) { Either result = await mediator.Send(request.ToCommand(id), cancellationToken); return await result.Match( Left: error => Task.FromResult(error.ToErrorResult()), Right: async _ => { Option smartCollection = await mediator.Send(new GetSmartCollectionById(id), cancellationToken); return smartCollection.Match( Some: vm => (IActionResult)new OkObjectResult(vm), None: () => ApiResults.NotFoundProblem()); }); } [HttpDelete("/api/smart-collections/{id:int}")] [Tags("Smart Collections")] [EndpointSummary("Delete a smart collection")] [EndpointGroupName("general")] [ProducesResponseType(StatusCodes.Status204NoContent)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status404NotFound)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status422UnprocessableEntity)] public async Task Delete(int id, CancellationToken cancellationToken) { Either result = await mediator.Send(new DeleteSmartCollection(id), cancellationToken); return result.ToDeletedResult(); } }