using System; using System.Collections.Generic; using System.Configuration; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; using Icarus.Models; using Icarus.Database.Repositories; namespace Icarus.Controllers.V1 { [Route("api/v1/album")] [ApiController] public class AlbumController : ControllerBase { #region Fields private readonly ILogger _logger; #endregion #region Properties #endregion #region Constructors public AlbumController(ILogger logger) { _logger = logger; } #endregion #region HTTP Routes [HttpGet] [Authorize("read:albums")] public IActionResult Get() { List albums = new List(); AlbumRepository albumStoreContext = HttpContext.RequestServices .GetService(typeof(AlbumRepository)) as AlbumRepository; albums = albumStoreContext.GetAlbums(); if (albums.Count > 0) return Ok(albums); else return NotFound(); } [HttpGet("{id}")] [Authorize("read:albums")] public IActionResult Get(int id) { Album album = new Album { AlbumId = id }; AlbumRepository albumStoreContext = HttpContext.RequestServices .GetService(typeof(AlbumRepository)) as AlbumRepository; if (albumStoreContext.DoesAlbumExist(album)) { album = albumStoreContext.GetAlbum(album); return Ok(album); } else return NotFound(); } #endregion } }