87 lines
2.0 KiB
C#
87 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using Icarus.Models;
|
|
using Icarus.Database.Contexts;
|
|
|
|
namespace Icarus.Controllers.V1
|
|
{
|
|
[Route("api/v1/album")]
|
|
[ApiController]
|
|
public class AlbumController : BaseController
|
|
{
|
|
#region Fields
|
|
private readonly ILogger<AlbumController> _logger;
|
|
private string _connectionString;
|
|
#endregion
|
|
|
|
|
|
#region Properties
|
|
#endregion
|
|
|
|
|
|
#region Constructors
|
|
public AlbumController(ILogger<AlbumController> logger, IConfiguration config)
|
|
{
|
|
_logger = logger;
|
|
_config = config;
|
|
_connectionString = _config.GetConnectionString("DefaultConnection");
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region HTTP Routes
|
|
[HttpGet]
|
|
public IActionResult Get()
|
|
{
|
|
if (!IsTokenValid("read:albums"))
|
|
{
|
|
return StatusCode(401, "Not allowed");
|
|
}
|
|
|
|
List<Album> albums = new List<Album>();
|
|
|
|
var albumContext = new AlbumContext(_connectionString);
|
|
|
|
albums = albumContext.Albums.ToList();
|
|
|
|
if (albums.Count > 0)
|
|
return Ok(albums);
|
|
else
|
|
return NotFound();
|
|
}
|
|
|
|
[HttpGet("{id}")]
|
|
public IActionResult Get(int id)
|
|
{
|
|
if (!IsTokenValid("read:albums"))
|
|
{
|
|
return StatusCode(401, "Not allowed");
|
|
}
|
|
|
|
Album album = new Album
|
|
{
|
|
AlbumID = id
|
|
};
|
|
|
|
var albumContext = new AlbumContext(_connectionString);
|
|
|
|
if (albumContext.DoesRecordExist(album))
|
|
{
|
|
album = albumContext.RetrieveRecord(album);
|
|
|
|
return Ok(album);
|
|
}
|
|
else
|
|
return NotFound();
|
|
}
|
|
#endregion
|
|
}
|
|
}
|