8900afdfd2
* Added script shell to convert wav files to flac * #93: Minor change to script to convert wav files to flac * #93: Added more code to for the music file conversion * #93: Script to convert wav files to flac files is done * #93: Clean up * #93: Starting work to implement flac support * #93: Minor update to conversion script * #93: Added dotnet manifest file Includes the dotnet-ef tool * #93: Updated README and migration script * #93: Created skeleton for saving flac files * #93: Making some changes to how the file extension is determined * #93: Updated gitignore * #93: Another gitignore update * #93: Making some changes to the process of saving a song to the filesystem * #93: Adding SQL script to drop and create database * #93: Saving uploaded song to a temporary location for processing * #93: Initializing some properties in the song model earlier * #93: Uploading wav songs works. Moving on to flac support * #93: Added more code to save flac files * #93: Updated some code that affects filename generation for audio files * #93: Song Model changes and support for different file types * #93: Working on build errors, removed DotnetZip dependency, and added new Ionic.Zlip.Netstandard dependency * #93: Reduce build errors * #93: Removed ID3 dependency * #93: Cleanup
129 lines
3.6 KiB
C#
129 lines
3.6 KiB
C#
using Icarus.Models;
|
|
using Icarus.Database.Contexts;
|
|
|
|
namespace Icarus.Controllers.Managers;
|
|
|
|
public class ArtistManager : BaseManager
|
|
{
|
|
#region Fields
|
|
private ArtistContext? _artistContext;
|
|
#endregion
|
|
|
|
|
|
#region Properties
|
|
#endregion
|
|
|
|
|
|
#region Constructors
|
|
public ArtistManager(IConfiguration config)
|
|
{
|
|
_config = config;
|
|
_connectionString = _config.GetConnectionString("DefaultConnection");
|
|
_artistContext = new ArtistContext(_connectionString!);
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region Methods
|
|
public void SaveArtistToDatabase(ref Song song)
|
|
{
|
|
_logger.Info("Starting process to save the artist record of the song to the database");
|
|
|
|
var artist = new Artist
|
|
{
|
|
Name = song.Artist,
|
|
SongCount = 1
|
|
};
|
|
|
|
var artistRetrieved = _artistContext!.Artists.FirstOrDefault(art => art.Name!.Equals(artist.Name));
|
|
|
|
if (artistRetrieved == null)
|
|
{
|
|
artist.SongCount = 1;
|
|
_artistContext.Add(artist);
|
|
_artistContext.SaveChanges();
|
|
}
|
|
else
|
|
{
|
|
artist.Id = artistRetrieved.Id;
|
|
}
|
|
|
|
song.ArtistId = artist.Id;
|
|
}
|
|
|
|
public Artist UpdateArtistInDatabase(Song oldSongRecord, Song newSongRecord)
|
|
{
|
|
var oldArtistRecord = _artistContext!.Artists.FirstOrDefault(art => art.Name!.Equals(oldSongRecord.AlbumTitle));
|
|
var oldArtistName = oldArtistRecord!.Name;
|
|
var newArtistName = newSongRecord.Artist;
|
|
|
|
if (string.IsNullOrEmpty(newArtistName) || oldArtistName!.Equals(newArtistName))
|
|
{
|
|
_logger.Info("No change to the song's Artist");
|
|
return oldArtistRecord;
|
|
}
|
|
|
|
_logger.Info("Change to the song's record found");
|
|
|
|
if (oldArtistRecord.SongCount <= 1)
|
|
{
|
|
_logger.Info("Deleting artist record that no longer has any songs");
|
|
|
|
_artistContext.Remove(oldArtistRecord);
|
|
_artistContext.SaveChanges();
|
|
}
|
|
|
|
if (!(_artistContext.Artists.FirstOrDefault(art => art.Name!.Equals(oldSongRecord.AlbumTitle)) != null))
|
|
{
|
|
_logger.Info("Creating new artist record");
|
|
|
|
var newArtistRecord = new Artist
|
|
{
|
|
Name = newArtistName
|
|
};
|
|
|
|
_artistContext.Add(newArtistRecord);
|
|
_artistContext.SaveChanges();
|
|
|
|
return newArtistRecord;
|
|
}
|
|
else
|
|
{
|
|
_logger.Info("Updating existing artist record");
|
|
|
|
var existingArtistRecord = _artistContext.Artists.FirstOrDefault(art => art.Name!.Equals(newSongRecord.AlbumTitle));
|
|
|
|
_artistContext.Update(existingArtistRecord!);
|
|
_artistContext.SaveChanges();
|
|
|
|
return existingArtistRecord!;
|
|
}
|
|
}
|
|
|
|
public void DeleteArtistFromDatabase(Song song)
|
|
{
|
|
if (!(_artistContext!.Artists.FirstOrDefault(art => art.Name!.Equals(song.Artist)) != null))
|
|
{
|
|
_logger.Info("Cannot delete the artist record because it does not exist");
|
|
return;
|
|
}
|
|
|
|
var artist = _artistContext.Artists.FirstOrDefault(art => art.Name!.Equals(song.Artist));
|
|
|
|
if (SongsOfArtist(artist!) <= 1)
|
|
{
|
|
_artistContext!.Remove(artist!);
|
|
_artistContext.SaveChanges();
|
|
}
|
|
}
|
|
|
|
private int SongsOfArtist(Artist artist)
|
|
{
|
|
var sngContext = new SongContext(_connectionString!);
|
|
var songs = sngContext.Songs!.Where(sng => sng.ArtistId == artist.Id).ToList();
|
|
|
|
return songs.Count;
|
|
}
|
|
#endregion
|
|
}
|