58 lines
1.8 KiB
C#
58 lines
1.8 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using server.Models;
|
|
using server.Persistence.Repositories;
|
|
|
|
namespace server.Controllers
|
|
{
|
|
[ApiController]
|
|
[Route("/api/seasons")]
|
|
[Produces("application/json")]
|
|
public class SeasonsController : ControllerBase
|
|
{
|
|
private readonly ISeasonRepository _seasonRepository;
|
|
|
|
public SeasonsController(ISeasonRepository seasonRepository)
|
|
{
|
|
_seasonRepository = seasonRepository;
|
|
}
|
|
|
|
[HttpGet]
|
|
[ProducesResponseType(typeof(List<Season>), 200)]
|
|
[ProducesResponseType(500)]
|
|
public async Task<ActionResult<List<Season>>> GetSeasonsAsync()
|
|
{
|
|
try
|
|
{
|
|
var seasons = await _seasonRepository.GetSeasonsAsync();
|
|
return Ok(seasons);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Console.WriteLine(e);
|
|
return StatusCode(StatusCodes.Status500InternalServerError, "Failed to get seasons");
|
|
}
|
|
}
|
|
|
|
[HttpGet("{number:int}")]
|
|
[ProducesResponseType(typeof(Season), 200)]
|
|
[ProducesResponseType(typeof(ErrorResponse), 404)]
|
|
[ProducesResponseType(500)]
|
|
public async Task<ActionResult<Season>> GetSeasonByNumberAsync(int number)
|
|
{
|
|
try
|
|
{
|
|
var season = await _seasonRepository.GetSeasonByNumberAsync(number);
|
|
|
|
if (season == null) return NotFound(new ErrorResponse($"Could not find season number {number}"));
|
|
|
|
return Ok(season);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Console.WriteLine(e);
|
|
return StatusCode(StatusCodes.Status500InternalServerError, "Failed to get season");
|
|
}
|
|
}
|
|
}
|
|
}
|