jellyfin/MediaBrowser.Controller/Entities/MusicVideo.cs

79 lines
2.0 KiB
C#
Raw Normal View History

using System;
using MediaBrowser.Controller.Entities.Audio;
2018-12-27 18:27:57 -05:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Serialization;
namespace MediaBrowser.Controller.Entities
{
public class MusicVideo : Video, IHasArtist, IHasMusicGenres, IHasLookupInfo<MusicVideoInfo>
{
[IgnoreDataMember]
public string[] Artists { get; set; }
public MusicVideo()
{
2018-12-27 16:43:48 -05:00
Artists = Array.Empty<string>();
2018-12-27 18:27:57 -05:00
}
[IgnoreDataMember]
public string[] AllArtists
{
get
{
return Artists;
}
}
public override UnratedItem GetBlockUnratedType()
{
return UnratedItem.Music;
}
public MusicVideoInfo GetLookupInfo()
{
var info = GetItemLookupInfo<MusicVideoInfo>();
info.Artists = Artists;
return info;
}
public override bool BeforeMetadataRefresh(bool replaceAllMetdata)
{
var hasChanges = base.BeforeMetadataRefresh(replaceAllMetdata);
if (!ProductionYear.HasValue)
{
var info = LibraryManager.ParseName(Name);
var yearInName = info.Year;
if (yearInName.HasValue)
{
ProductionYear = yearInName;
hasChanges = true;
}
else
{
// Try to get the year from the folder name
if (!IsInMixedFolder)
{
info = LibraryManager.ParseName(System.IO.Path.GetFileName(ContainingFolderPath));
yearInName = info.Year;
if (yearInName.HasValue)
{
ProductionYear = yearInName;
hasChanges = true;
}
}
}
}
return hasChanges;
}
}
}