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;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-07-10 20:06:11 +00:00
|
|
|
|
using System;
|
2014-04-07 02:10:38 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-02-21 15:24:29 +00:00
|
|
|
|
using System.Linq;
|
2014-04-07 02:10:38 +00:00
|
|
|
|
using System.Runtime.Serialization;
|
2014-12-20 06:06:27 +00:00
|
|
|
|
using MediaBrowser.Model.Users;
|
2013-05-28 01:59:26 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
2014-05-16 19:16:29 +00:00
|
|
|
|
public class MusicVideo : Video, IHasArtist, IHasMusicGenres, IHasProductionLocations, IHasBudget, IHasLookupInfo<MusicVideoInfo>
|
2013-05-28 01:59:26 +00:00
|
|
|
|
{
|
2013-07-10 20:06:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the album.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The album.</value>
|
|
|
|
|
public string Album { get; set; }
|
2013-05-28 01:59:26 +00:00
|
|
|
|
|
2013-12-02 16:16:03 +00: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 19:16:29 +00:00
|
|
|
|
public List<string> ProductionLocations { get; set; }
|
2014-10-20 20:23:40 +00:00
|
|
|
|
public List<string> Artists { get; set; }
|
2014-05-16 19:16:29 +00:00
|
|
|
|
|
|
|
|
|
public MusicVideo()
|
|
|
|
|
{
|
|
|
|
|
ProductionLocations = new List<string>();
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-28 01:59:26 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2015-01-24 22:33:26 +00:00
|
|
|
|
protected override string CreateUserDataKey()
|
2013-05-28 01:59:26 +00:00
|
|
|
|
{
|
2015-01-24 22:33:26 +00:00
|
|
|
|
return this.GetProviderId(MetadataProviders.Tmdb) ?? this.GetProviderId(MetadataProviders.Imdb) ?? base.CreateUserDataKey();
|
2013-05-28 01:59:26 +00:00
|
|
|
|
}
|
2013-12-26 16:53:23 +00:00
|
|
|
|
|
2014-12-20 06:06:27 +00:00
|
|
|
|
protected override bool GetBlockUnratedValue(UserPolicy config)
|
2013-12-26 16:53:23 +00:00
|
|
|
|
{
|
2014-02-21 15:24:29 +00:00
|
|
|
|
return config.BlockUnratedItems.Contains(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
|
|
|
|
|
if (!IsInMixedFolder)
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|