jellyfin/MediaBrowser.Controller/Entities/MusicVideo.cs

75 lines
2.0 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Entities.Audio;
2014-02-06 20:10:13 -07:00
using MediaBrowser.Controller.Providers;
2013-12-26 09:53:23 -07:00
using MediaBrowser.Model.Configuration;
using System.Collections.Generic;
2016-10-25 12:02:04 -07:00
using MediaBrowser.Model.Serialization;
namespace MediaBrowser.Controller.Entities
{
2017-02-26 14:47:52 -07:00
public class MusicVideo : Video, IHasArtist, IHasMusicGenres, IHasLookupInfo<MusicVideoInfo>
{
2017-08-06 16:01:00 -07:00
[IgnoreDataMember]
2014-10-20 13:23:40 -07:00
public List<string> Artists { get; set; }
2014-05-16 12:16:29 -07:00
public MusicVideo()
{
2014-10-20 13:23:40 -07:00
Artists = new List<string>();
2014-09-04 20:48:53 -07:00
}
[IgnoreDataMember]
public List<string> AllArtists
{
get
{
2014-10-20 13:23:40 -07:00
return Artists;
}
}
2015-11-06 08:02:22 -07:00
public override UnratedItem GetBlockUnratedType()
2013-12-26 09:53:23 -07:00
{
2015-11-06 08:02:22 -07:00
return UnratedItem.Music;
2013-12-26 09:53:23 -07:00
}
2014-02-06 20:10:13 -07:00
public MusicVideoInfo GetLookupInfo()
{
return GetItemLookupInfo<MusicVideoInfo>();
}
2014-12-08 21:57:18 -07:00
public override bool BeforeMetadataRefresh()
{
var hasChanges = base.BeforeMetadataRefresh();
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
2017-07-30 22:16:22 -07:00
if (!IsInMixedFolder)
2014-12-08 21:57:18 -07:00
{
info = LibraryManager.ParseName(System.IO.Path.GetFileName(ContainingFolderPath));
yearInName = info.Year;
if (yearInName.HasValue)
{
ProductionYear = yearInName;
hasChanges = true;
}
}
}
}
return hasChanges;
}
}
}