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-11-12 10:36:08 -05:00
|
|
|
|
using System;
|
2013-09-11 13:54:59 -04:00
|
|
|
|
using System.Collections.Generic;
|
2014-03-26 13:14:20 -04:00
|
|
|
|
using System.Globalization;
|
2014-02-21 10:24:29 -05:00
|
|
|
|
using System.Linq;
|
2014-03-26 13:14:20 -04:00
|
|
|
|
using System.Runtime.Serialization;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Class Trailer
|
|
|
|
|
|
/// </summary>
|
2014-10-28 19:17:55 -04:00
|
|
|
|
public class Trailer : Video, IHasCriticRating, IHasSoundtracks, IHasProductionLocations, IHasBudget, IHasTrailers, IHasKeywords, IHasTaglines, IHasMetascore, IHasLookupInfo<TrailerInfo>
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
2013-11-12 10:36:08 -05:00
|
|
|
|
public List<Guid> SoundtrackIds { get; set; }
|
2013-12-26 19:23:58 -05:00
|
|
|
|
|
2014-05-16 15:16:29 -04:00
|
|
|
|
public List<string> ProductionLocations { get; set; }
|
2013-12-28 11:58:13 -05:00
|
|
|
|
|
2013-09-11 13:54:59 -04:00
|
|
|
|
public Trailer()
|
|
|
|
|
|
{
|
|
|
|
|
|
RemoteTrailers = new List<MediaUrl>();
|
|
|
|
|
|
Taglines = new List<string>();
|
2013-11-12 10:36:08 -05:00
|
|
|
|
SoundtrackIds = new List<Guid>();
|
2013-12-02 11:46:25 -05:00
|
|
|
|
LocalTrailerIds = new List<Guid>();
|
2014-01-14 10:50:39 -05:00
|
|
|
|
Keywords = new List<string>();
|
2014-05-16 15:16:29 -04:00
|
|
|
|
ProductionLocations = new List<string>();
|
2013-09-11 13:54:59 -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<Guid> LocalTrailerIds { 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
|
|
|
|
|
2014-01-14 10:50:39 -05:00
|
|
|
|
public List<string> Keywords { get; set; }
|
2014-03-26 13:14:20 -04:00
|
|
|
|
|
2013-12-05 11:50:21 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the taglines.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The taglines.</value>
|
|
|
|
|
|
public List<string> Taglines { get; set; }
|
2014-03-26 13:14:20 -04:00
|
|
|
|
|
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; }
|
|
|
|
|
|
|
2013-11-06 11:06:16 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the critic rating.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The critic rating.</value>
|
|
|
|
|
|
public float? CriticRating { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the critic rating summary.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The critic rating summary.</value>
|
|
|
|
|
|
public string CriticRatingSummary { get; set; }
|
|
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets a value indicating whether this instance is local trailer.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value><c>true</c> if this instance is local trailer; otherwise, <c>false</c>.</value>
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public bool IsLocalTrailer
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
// Local trailers are not part of children
|
|
|
|
|
|
return Parent == null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2013-08-29 17:00:27 -04:00
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
|
{
|
2014-09-28 16:49:43 -04:00
|
|
|
|
var key = this.GetProviderId(MetadataProviders.Imdb) ?? this.GetProviderId(MetadataProviders.Tmdb);
|
2013-08-29 17:00:27 -04:00
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(key))
|
|
|
|
|
|
{
|
2014-03-20 23:31:40 -04:00
|
|
|
|
key = key + "-trailer";
|
|
|
|
|
|
|
2014-03-26 13:14:20 -04:00
|
|
|
|
// Make sure different trailers have their own data.
|
|
|
|
|
|
if (RunTimeTicks.HasValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
key += "-" + RunTimeTicks.Value.ToString(CultureInfo.InvariantCulture);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-03-20 23:31:40 -04:00
|
|
|
|
return key;
|
2013-08-29 17:00:27 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return base.GetUserDataKey();
|
|
|
|
|
|
}
|
2013-12-26 11:53:23 -05:00
|
|
|
|
|
|
|
|
|
|
protected override bool GetBlockUnratedValue(UserConfiguration config)
|
|
|
|
|
|
{
|
2014-02-21 10:24:29 -05:00
|
|
|
|
return config.BlockUnratedItems.Contains(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>();
|
|
|
|
|
|
|
|
|
|
|
|
info.IsLocalTrailer = IsLocalTrailer;
|
|
|
|
|
|
|
|
|
|
|
|
return info;
|
2014-02-06 22:10:13 -05:00
|
|
|
|
}
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|