114 lines
2.7 KiB
C#
114 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using Icarus.Controllers.Managers;
|
|
using Icarus.Controllers.Utilities;
|
|
using Icarus.Models;
|
|
using Icarus.Models.Context;
|
|
|
|
namespace Icarus.Controllers
|
|
{
|
|
[Route("api/song")]
|
|
[ApiController]
|
|
public class SongController : ControllerBase
|
|
{
|
|
#region Fields
|
|
private readonly ILogger<SongController> _logger;
|
|
private IConfiguration _config;
|
|
private MusicStoreContext _context;
|
|
private SongManager _songMgr;
|
|
#endregion
|
|
|
|
|
|
#region Properties
|
|
#endregion
|
|
|
|
|
|
#region Constructor
|
|
public SongController(IConfiguration config, ILogger<SongController> logger)
|
|
{
|
|
_config = config;
|
|
_logger = logger;
|
|
_songMgr = new SongManager(config);
|
|
_logger.LogInformation("Logging is working!");
|
|
}
|
|
#endregion
|
|
|
|
|
|
[HttpGet]
|
|
[Authorize("read:song_details")]
|
|
public ActionResult<IEnumerable<Song>> Get()
|
|
{
|
|
List<Song> songs = new List<Song>();
|
|
Console.WriteLine("Attemtping to retrieve songs");
|
|
|
|
MusicStoreContext context = HttpContext
|
|
.RequestServices
|
|
.GetService(typeof(MusicStoreContext))
|
|
as MusicStoreContext;
|
|
|
|
songs = context.GetAllSongs();
|
|
|
|
return songs;
|
|
}
|
|
|
|
[HttpGet("{id}")]
|
|
public ActionResult<Song> Get(int id)
|
|
{
|
|
MusicStoreContext context = HttpContext
|
|
.RequestServices
|
|
.GetService(typeof(MusicStoreContext))
|
|
as MusicStoreContext;
|
|
|
|
Song song = context.GetSong(id);
|
|
|
|
return song;
|
|
}
|
|
|
|
|
|
[HttpPut("{id}")]
|
|
public IActionResult Put(int id, [FromBody] Song song)
|
|
{
|
|
MusicStoreContext context = HttpContext.RequestServices
|
|
.GetService(typeof(MusicStoreContext)) as MusicStoreContext;
|
|
song.Id = id;
|
|
Console.WriteLine("Retrieving filepath of song");
|
|
var oldSongRecord = context.GetSong(id);
|
|
song.SongPath = oldSongRecord.SongPath;
|
|
|
|
MetadataRetriever updateMetadata = new MetadataRetriever();
|
|
updateMetadata.UpdateMetadata(song, oldSongRecord);
|
|
|
|
var updatedSong = updateMetadata.UpdatedSongRecord;
|
|
context.UpdateSong(updatedSong);
|
|
|
|
SongResult songResult = new SongResult
|
|
{
|
|
Message = updateMetadata.Message,
|
|
SongTitle = updatedSong.Title
|
|
};
|
|
|
|
return Ok(songResult);
|
|
}
|
|
|
|
[HttpDelete("{id}")]
|
|
public void Delete(int id)
|
|
{
|
|
MusicStoreContext context = HttpContext
|
|
.RequestServices
|
|
.GetService(typeof(MusicStoreContext))
|
|
as MusicStoreContext;
|
|
|
|
context.DeleteSong(id);
|
|
}
|
|
}
|
|
}
|