jellyfin-server/MediaBrowser.Controller/Entities/Trailer.cs

155 lines
4.4 KiB
C#
Raw Normal View History

2014-02-07 03:10:13 +00:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Configuration;
2013-12-26 16:53:23 +00:00
using MediaBrowser.Model.Entities;
2015-01-27 06:50:40 +00:00
using MediaBrowser.Model.Users;
2013-11-12 15:36:08 +00:00
using System;
2013-09-11 17:54:59 +00:00
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Runtime.Serialization;
2015-10-04 19:09:13 +00:00
using MediaBrowser.Controller.Entities.Movies;
2013-02-21 01:33:05 +00:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class Trailer
/// </summary>
2015-04-26 03:25:07 +00:00
public class Trailer : Video, IHasCriticRating, IHasProductionLocations, IHasBudget, IHasKeywords, IHasTaglines, IHasMetascore, IHasLookupInfo<TrailerInfo>
2013-02-21 01:33:05 +00:00
{
2014-05-16 19:16:29 +00:00
public List<string> ProductionLocations { get; set; }
2013-12-28 16:58:13 +00:00
2013-09-11 17:54:59 +00:00
public Trailer()
{
RemoteTrailers = new List<MediaUrl>();
Taglines = new List<string>();
2014-01-14 15:50:39 +00:00
Keywords = new List<string>();
2014-05-16 19:16:29 +00:00
ProductionLocations = new List<string>();
2013-09-11 17:54:59 +00:00
}
2014-01-15 05:01:58 +00:00
public float? Metascore { get; set; }
2013-12-02 16:46:25 +00:00
public List<MediaUrl> RemoteTrailers { get; set; }
2014-01-14 15:50:39 +00:00
public List<string> Keywords { get; set; }
/// <summary>
/// Gets or sets the taglines.
/// </summary>
/// <value>The taglines.</value>
public List<string> Taglines { get; set; }
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; }
2013-11-06 16:06:16 +00: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 01:33:05 +00: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
2015-11-11 14:56:31 +00:00
return GetParent() == null;
2013-02-21 01:33:05 +00:00
}
}
2015-01-24 22:33:26 +00:00
protected override string CreateUserDataKey()
2013-08-29 21:00:27 +00:00
{
2015-10-04 19:09:13 +00:00
var key = Movie.GetMovieUserDataKey(this);
2013-08-29 21:00:27 +00:00
if (!string.IsNullOrWhiteSpace(key))
{
2014-03-21 03:31:40 +00:00
key = key + "-trailer";
// Make sure different trailers have their own data.
if (RunTimeTicks.HasValue)
{
key += "-" + RunTimeTicks.Value.ToString(CultureInfo.InvariantCulture);
}
2014-03-21 03:31:40 +00:00
return key;
2013-08-29 21:00:27 +00:00
}
2015-01-24 22:33:26 +00:00
return base.CreateUserDataKey();
2013-08-29 21:00:27 +00:00
}
2013-12-26 16:53:23 +00:00
2015-11-06 15:02:22 +00:00
public override UnratedItem GetBlockUnratedType()
2013-12-26 16:53:23 +00:00
{
2015-11-06 15:02:22 +00:00
return UnratedItem.Trailer;
2013-12-26 16:53:23 +00:00
}
2014-02-07 03:10:13 +00:00
public TrailerInfo GetLookupInfo()
{
2014-02-15 16:36:09 +00:00
var info = GetItemLookupInfo<TrailerInfo>();
info.IsLocalTrailer = IsLocalTrailer;
2016-03-19 15:38:05 +00:00
if (!IsInMixedFolder)
{
info.Name = System.IO.Path.GetFileName(ContainingFolderPath);
}
2014-02-15 16:36:09 +00:00
return info;
2014-02-07 03:10:13 +00:00
}
2016-03-19 15:38:05 +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-02-21 01:33:05 +00:00
}
}