jellyfin/MediaBrowser.Controller/Entities/Trailer.cs

105 lines
2.8 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CA1819, CS1591
using System;
using System.Collections.Generic;
2020-08-07 13:26:28 -04:00
using System.Globalization;
2019-10-15 11:49:49 -04:00
using System.Text.Json.Serialization;
2020-05-12 22:10:35 -04:00
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Providers;
2018-12-27 18:27:57 -05:00
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Providers;
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class Trailer.
2018-12-27 18:27:57 -05:00
/// </summary>
public class Trailer : Video, IHasLookupInfo<TrailerInfo>
{
public Trailer()
{
2018-12-27 16:43:48 -05:00
TrailerTypes = Array.Empty<TrailerType>();
2018-12-27 18:27:57 -05:00
}
[JsonIgnore]
public override bool StopRefreshIfLocalMetadataFound => false;
2018-12-27 18:27:57 -05:00
public TrailerType[] TrailerTypes { get; set; }
public override double GetDefaultPrimaryImageAspectRatio()
=> 2.0 / 3;
2018-12-27 18:27:57 -05:00
public override UnratedItem GetBlockUnratedType()
{
return UnratedItem.Trailer;
}
public TrailerInfo GetLookupInfo()
{
var info = GetItemLookupInfo<TrailerInfo>();
if (!IsInMixedFolder && IsFileProtocol)
{
info.Name = System.IO.Path.GetFileName(ContainingFolderPath);
}
return info;
}
public override bool BeforeMetadataRefresh(bool replaceAllMetadata)
2018-12-27 18:27:57 -05:00
{
var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata);
2018-12-27 18:27:57 -05:00
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;
}
public override List<ExternalUrl> GetRelatedUrls()
{
var list = base.GetRelatedUrls();
2020-06-06 15:17:49 -04:00
var imdbId = this.GetProviderId(MetadataProvider.Imdb);
2018-12-27 18:27:57 -05:00
if (!string.IsNullOrEmpty(imdbId))
{
list.Add(new ExternalUrl
{
Name = "Trakt",
2020-08-07 13:26:28 -04:00
Url = string.Format(CultureInfo.InvariantCulture, "https://trakt.tv/movies/{0}", imdbId)
2018-12-27 18:27:57 -05:00
});
}
return list;
}
}
}