mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
111 lines
No EOL
3.5 KiB
C#
111 lines
No EOL
3.5 KiB
C#
using Roadie.Library.Extensions;
|
|
using Roadie.Library.Utility;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Roadie.Library.Data
|
|
{
|
|
public partial class Release
|
|
{
|
|
public string CacheKey => Artist.CacheUrn(RoadieId);
|
|
|
|
public string CacheRegion => CacheRegionUrn(RoadieId);
|
|
|
|
public string Etag
|
|
{
|
|
get
|
|
{
|
|
return HashHelper.CreateMD5($"{ RoadieId }{ LastUpdated }");
|
|
}
|
|
}
|
|
|
|
public string GroupBy => Title.Substring(0, 1).ToUpper();
|
|
|
|
public bool IsCastRecording
|
|
{
|
|
get
|
|
{
|
|
if (string.IsNullOrEmpty(Title)) return false;
|
|
return IsReleaseTypeOf("Original Broadway Cast") || IsReleaseTypeOf("Original Cast");
|
|
}
|
|
}
|
|
|
|
public bool IsSoundTrack
|
|
{
|
|
get
|
|
{
|
|
if (string.IsNullOrEmpty(Title)) return false;
|
|
foreach (var soundTrackTrigger in new List<string> { "soundtrack", " ost", "(ost)" })
|
|
if (IsReleaseTypeOf(soundTrackTrigger))
|
|
return true;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public bool IsValid => !string.IsNullOrEmpty(Title) && ReleaseDate > DateTime.MinValue;
|
|
|
|
public int? ReleaseYear
|
|
{
|
|
get
|
|
{
|
|
if (ReleaseDate.HasValue) return ReleaseDate.Value.Year;
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public static string CacheRegionUrn(Guid Id)
|
|
{
|
|
return string.Format("urn:release:{0}", Id);
|
|
}
|
|
|
|
public static string CacheUrn(Guid Id)
|
|
{
|
|
return $"urn:release_by_id:{Id}";
|
|
}
|
|
|
|
public bool IsReleaseTypeOf(string type, bool doCheckTitles = false)
|
|
{
|
|
if (string.IsNullOrEmpty(type)) return false;
|
|
try
|
|
{
|
|
if (doCheckTitles)
|
|
{
|
|
if (Artist != null && !string.IsNullOrEmpty(Artist.Name))
|
|
if (Artist.Name.IndexOf(type, 0, StringComparison.OrdinalIgnoreCase) > -1)
|
|
return true;
|
|
if (!string.IsNullOrEmpty(Title))
|
|
if (Title.IndexOf(type, 0, StringComparison.OrdinalIgnoreCase) > -1)
|
|
return true;
|
|
if (AlternateNames != null)
|
|
if (AlternateNames.IsValueInDelimitedList(type))
|
|
return true;
|
|
}
|
|
|
|
if (Tags != null)
|
|
if (Tags.IsValueInDelimitedList(type))
|
|
return true;
|
|
if (Genres != null)
|
|
if (Genres.Any(x => x.Genre.Name.ToLower().Equals(type)))
|
|
return true;
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return this releases file folder for the given artist folder
|
|
/// </summary>
|
|
/// <param name="artistFolder"></param>
|
|
/// <returns></returns>
|
|
public string ReleaseFileFolder(string artistFolder, bool createIfNotFound = false) => FolderPathHelper.ReleasePath(artistFolder, SortTitleValue, ReleaseDate.Value, createIfNotFound);
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"Id [{Id}], Status [{ Status }], LibraryStatus [{ LibraryStatus }], Title [{Title}], SortTitle [{ SortTitle }], Release Date [{ReleaseYear}]";
|
|
}
|
|
}
|
|
} |