jellyfin/MediaBrowser.Controller/Entities/MusicVideo.cs

75 lines
2 KiB
C#
Raw Normal View History

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