|
|
|
using Marr.Data;
|
|
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
using NzbDrone.Core.Profiles.Qualities;
|
|
|
|
using NzbDrone.Core.Profiles.Languages;
|
|
|
|
using NzbDrone.Core.Music;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Music
|
|
|
|
{
|
|
|
|
public class Artist : ModelBase
|
|
|
|
{
|
|
|
|
public Artist()
|
|
|
|
{
|
|
|
|
Images = new List<MediaCover.MediaCover>();
|
|
|
|
Genres = new List<string>();
|
|
|
|
Members = new List<Member>();
|
|
|
|
Albums = new List<Album>();
|
|
|
|
Tags = new HashSet<int>();
|
|
|
|
Links = new List<Links>();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public string ForeignArtistId { get; set; }
|
|
|
|
public string MBId { get; set; }
|
|
|
|
public int TADBId { get; set; }
|
|
|
|
public int DiscogsId { get; set; }
|
|
|
|
public string AMId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string NameSlug { get; set; }
|
|
|
|
public string CleanName { get; set; }
|
|
|
|
public string SortName { get; set; }
|
|
|
|
public string Overview { get; set; }
|
|
|
|
public string Disambiguation { get; set; }
|
|
|
|
public string ArtistType { get; set; }
|
|
|
|
public string PrimaryAlbumTypes { get; set; }
|
|
|
|
public string SecondaryAlbumTypes { get; set; }
|
|
|
|
public bool Monitored { get; set; }
|
|
|
|
public bool AlbumFolder { get; set; }
|
|
|
|
public DateTime? LastInfoSync { get; set; }
|
|
|
|
public DateTime? LastDiskSync { get; set; }
|
|
|
|
public ArtistStatusType Status { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
|
|
public List<MediaCover.MediaCover> Images { get; set; }
|
|
|
|
public List<Links> Links { get; set; }
|
|
|
|
public List<string> Genres { get; set; }
|
|
|
|
public string RootFolderPath { get; set; }
|
|
|
|
public DateTime Added { get; set; }
|
|
|
|
public LazyLoaded<Profile> Profile { get; set; }
|
|
|
|
public LazyLoaded<LanguageProfile> LanguageProfile { get; set; }
|
|
|
|
public int ProfileId { get; set; }
|
|
|
|
public int LanguageProfileId { get; set; }
|
|
|
|
public List<Album> Albums { get; set; }
|
|
|
|
public HashSet<int> Tags { get; set; }
|
|
|
|
public AddArtistOptions AddOptions { get; set; }
|
|
|
|
public Ratings Ratings { get; set; }
|
|
|
|
public List<Member> Members { get; set; }
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
{
|
|
|
|
return string.Format("[{0}][{1}]", ForeignArtistId, Name.NullSafe());
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ApplyChanges(Artist otherArtist)
|
|
|
|
{
|
|
|
|
|
|
|
|
ForeignArtistId = otherArtist.ForeignArtistId;
|
|
|
|
|
|
|
|
Path = otherArtist.Path;
|
|
|
|
|
|
|
|
Profile = otherArtist.Profile;
|
|
|
|
LanguageProfileId = otherArtist.LanguageProfileId;
|
|
|
|
|
|
|
|
Albums = otherArtist.Albums;
|
|
|
|
PrimaryAlbumTypes = otherArtist.PrimaryAlbumTypes;
|
|
|
|
SecondaryAlbumTypes = otherArtist.SecondaryAlbumTypes;
|
|
|
|
|
|
|
|
ProfileId = otherArtist.ProfileId;
|
|
|
|
Tags = otherArtist.Tags;
|
|
|
|
AddOptions = otherArtist.AddOptions;
|
|
|
|
RootFolderPath = otherArtist.RootFolderPath;
|
|
|
|
Monitored = otherArtist.Monitored;
|
|
|
|
AlbumFolder = otherArtist.AlbumFolder;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|