jellyfin/MediaBrowser.Controller/Entities/Trailer.cs

137 lines
4.3 KiB
C#
Raw Normal View History

2013-12-26 17:53:23 +01:00
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Entities;
2013-11-12 16:36:08 +01:00
using System;
2013-09-11 19:54:59 +02:00
using System.Collections.Generic;
using System.Runtime.Serialization;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class Trailer
/// </summary>
2014-01-15 06:01:58 +01:00
public class Trailer : Video, IHasCriticRating, IHasSoundtracks, IHasBudget, IHasTrailers, IHasKeywords, IHasTaglines, IHasTags, IHasPreferredMetadataLanguage, IHasMetascore
2013-02-21 02:33:05 +01:00
{
2013-11-12 16:36:08 +01:00
public List<Guid> SoundtrackIds { get; set; }
public string PreferredMetadataLanguage { get; set; }
2013-12-28 17:58:13 +01:00
/// <summary>
/// Gets or sets the preferred metadata country code.
/// </summary>
/// <value>The preferred metadata country code.</value>
public string PreferredMetadataCountryCode { get; set; }
2013-11-12 16:36:08 +01:00
2013-09-11 19:54:59 +02:00
public Trailer()
{
RemoteTrailers = new List<MediaUrl>();
Taglines = new List<string>();
2013-11-12 16:36:08 +01:00
SoundtrackIds = new List<Guid>();
2013-12-02 17:46:25 +01:00
LocalTrailerIds = new List<Guid>();
Tags = new List<string>();
2014-01-14 16:50:39 +01:00
Keywords = new List<string>();
2013-09-11 19:54:59 +02:00
}
2014-01-15 06:01:58 +01:00
public float? Metascore { get; set; }
2013-12-02 17:46:25 +01:00
public List<Guid> LocalTrailerIds { get; set; }
public List<MediaUrl> RemoteTrailers { get; set; }
2014-01-14 16:50:39 +01:00
public List<string> Keywords { get; set; }
/// <summary>
/// Gets or sets the tags.
/// </summary>
/// <value>The tags.</value>
public List<string> Tags { get; set; }
/// <summary>
/// Gets or sets the taglines.
/// </summary>
/// <value>The taglines.</value>
public List<string> Taglines { get; set; }
2013-12-02 17:16:03 +01: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 17:06:16 +01: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-21 02:33:05 +01: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;
}
}
/// <summary>
/// Should be overridden to return the proper folder where metadata lives
/// </summary>
/// <value>The meta location.</value>
[IgnoreDataMember]
public override string MetaLocation
{
get
{
if (!IsLocalTrailer)
{
return System.IO.Path.GetDirectoryName(Path);
}
return base.MetaLocation;
}
}
/// <summary>
/// Needed because the resolver stops at the trailer folder and we find the video inside.
/// </summary>
/// <value><c>true</c> if [use parent path to create resolve args]; otherwise, <c>false</c>.</value>
protected override bool UseParentPathToCreateResolveArgs
{
get { return !IsLocalTrailer; }
}
2013-08-29 23:00:27 +02:00
public override string GetUserDataKey()
{
var key = this.GetProviderId(MetadataProviders.Tmdb) ?? this.GetProviderId(MetadataProviders.Tvdb) ?? this.GetProviderId(MetadataProviders.Imdb) ?? this.GetProviderId(MetadataProviders.Tvcom);
if (!string.IsNullOrWhiteSpace(key))
{
return key + "-trailer";
}
return base.GetUserDataKey();
}
2013-12-26 17:53:23 +01:00
protected override bool GetBlockUnratedValue(UserConfiguration config)
{
return config.BlockUnratedTrailers;
}
2013-02-21 02:33:05 +01:00
}
}