2014-02-06 22:10:13 -05:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-12-26 11:53:23 -05:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-09-11 13:54:59 -04:00
|
|
|
|
using System.Collections.Generic;
|
2014-03-26 13:14:20 -04:00
|
|
|
|
using System.Runtime.Serialization;
|
2016-05-29 02:03:09 -04:00
|
|
|
|
using MediaBrowser.Model.Providers;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Class Trailer
|
|
|
|
|
|
/// </summary>
|
2016-10-17 12:35:29 -04:00
|
|
|
|
public class Trailer : Video, IHasBudget, IHasMetascore, IHasOriginalTitle, IHasLookupInfo<TrailerInfo>
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
2013-09-11 13:54:59 -04:00
|
|
|
|
public Trailer()
|
|
|
|
|
|
{
|
|
|
|
|
|
RemoteTrailers = new List<MediaUrl>();
|
2014-01-14 10:50:39 -05:00
|
|
|
|
Keywords = new List<string>();
|
2016-03-30 12:37:29 -04:00
|
|
|
|
TrailerTypes = new List<TrailerType> { TrailerType.LocalTrailer };
|
2013-09-11 13:54:59 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-03-19 15:32:37 -04:00
|
|
|
|
public List<TrailerType> TrailerTypes { get; set; }
|
2016-03-30 12:37:29 -04:00
|
|
|
|
|
2014-01-15 00:01:58 -05:00
|
|
|
|
public float? Metascore { get; set; }
|
2014-03-26 13:14:20 -04:00
|
|
|
|
|
2013-12-02 11:46:25 -05:00
|
|
|
|
public List<MediaUrl> RemoteTrailers { get; set; }
|
2013-12-05 11:50:21 -05:00
|
|
|
|
|
2016-03-19 23:38:02 -04:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public bool IsLocalTrailer
|
|
|
|
|
|
{
|
|
|
|
|
|
get { return TrailerTypes.Contains(TrailerType.LocalTrailer); }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2013-12-02 11:16:03 -05: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; }
|
|
|
|
|
|
|
2015-11-06 10:02:22 -05:00
|
|
|
|
public override UnratedItem GetBlockUnratedType()
|
2013-12-26 11:53:23 -05:00
|
|
|
|
{
|
2015-11-06 10:02:22 -05:00
|
|
|
|
return UnratedItem.Trailer;
|
2013-12-26 11:53:23 -05:00
|
|
|
|
}
|
2014-02-06 22:10:13 -05:00
|
|
|
|
|
|
|
|
|
|
public TrailerInfo GetLookupInfo()
|
|
|
|
|
|
{
|
2014-02-15 11:36:09 -05:00
|
|
|
|
var info = GetItemLookupInfo<TrailerInfo>();
|
|
|
|
|
|
|
2016-03-19 15:32:37 -04:00
|
|
|
|
info.IsLocalTrailer = TrailerTypes.Contains(TrailerType.LocalTrailer);
|
2016-03-30 12:37:29 -04:00
|
|
|
|
|
2016-10-07 11:08:13 -04:00
|
|
|
|
if (!DetectIsInMixedFolder() && LocationType == LocationType.FileSystem)
|
2016-03-19 11:38:05 -04:00
|
|
|
|
{
|
|
|
|
|
|
info.Name = System.IO.Path.GetFileName(ContainingFolderPath);
|
|
|
|
|
|
}
|
2014-02-15 11:36:09 -05:00
|
|
|
|
|
|
|
|
|
|
return info;
|
2014-02-06 22:10:13 -05:00
|
|
|
|
}
|
2016-03-19 11:38:05 -04: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 11:08:13 -04:00
|
|
|
|
if (!DetectIsInMixedFolder())
|
2016-03-19 11:38:05 -04:00
|
|
|
|
{
|
|
|
|
|
|
info = LibraryManager.ParseName(System.IO.Path.GetFileName(ContainingFolderPath));
|
|
|
|
|
|
|
|
|
|
|
|
yearInName = info.Year;
|
|
|
|
|
|
|
|
|
|
|
|
if (yearInName.HasValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
ProductionYear = yearInName;
|
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return hasChanges;
|
|
|
|
|
|
}
|
2016-05-29 02:03:09 -04:00
|
|
|
|
|
|
|
|
|
|
public override List<ExternalUrl> GetRelatedUrls()
|
|
|
|
|
|
{
|
|
|
|
|
|
var list = base.GetRelatedUrls();
|
|
|
|
|
|
|
|
|
|
|
|
var imdbId = this.GetProviderId(MetadataProviders.Imdb);
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(imdbId))
|
|
|
|
|
|
{
|
|
|
|
|
|
list.Add(new ExternalUrl
|
|
|
|
|
|
{
|
|
|
|
|
|
Name = "Trakt",
|
|
|
|
|
|
Url = string.Format("https://trakt.tv/movies/{0}", imdbId)
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
|
}
|
2016-08-14 17:29:35 -04:00
|
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public override bool StopRefreshIfLocalMetadataFound
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
// Need people id's from internet metadata
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|