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