2013-09-10 11:56:00 -07:00
|
|
|
|
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;
|
2014-04-06 19:10:38 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Runtime.Serialization;
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
2014-05-16 12:16:29 -07:00
|
|
|
|
public class MusicVideo : Video, IHasArtist, IHasMusicGenres, IHasProductionLocations, IHasBudget, IHasLookupInfo<MusicVideoInfo>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
{
|
2013-12-02 09:16:03 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the budget.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The budget.</value>
|
|
|
|
|
public double? Budget { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the revenue.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The revenue.</value>
|
|
|
|
|
public double? Revenue { get; set; }
|
2014-05-16 12:16:29 -07:00
|
|
|
|
public List<string> ProductionLocations { get; set; }
|
2014-10-20 13:23:40 -07:00
|
|
|
|
public List<string> Artists { get; set; }
|
2014-05-16 12:16:29 -07:00
|
|
|
|
|
|
|
|
|
public MusicVideo()
|
|
|
|
|
{
|
|
|
|
|
ProductionLocations = new List<string>();
|
2014-10-20 13:23:40 -07:00
|
|
|
|
Artists = new List<string>();
|
2014-09-04 20:48:53 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-06 19:10:38 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public List<string> AllArtists
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-10-20 13:23:40 -07:00
|
|
|
|
return Artists;
|
2014-04-06 19:10:38 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 08:08:13 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
protected override bool SupportsIsInMixedFolderDetection
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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
|
2016-10-07 08:08:13 -07:00
|
|
|
|
if (!DetectIsInMixedFolder())
|
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;
|
|
|
|
|
}
|
2013-05-27 18:59:26 -07:00
|
|
|
|
}
|
|
|
|
|
}
|