jellyfin/MediaBrowser.Controller/Entities/Movies/Movie.cs

147 lines
4.3 KiB
C#
Raw Normal View History

#nullable disable
2020-08-19 18:02:34 +02:00
#pragma warning disable CS1591
2020-08-07 19:26:28 +02:00
using System;
2018-12-28 00:27:57 +01:00
using System.Collections.Generic;
2020-08-07 19:26:28 +02:00
using System.Globalization;
2018-12-28 00:27:57 +01:00
using System.Linq;
2019-10-15 17:49:49 +02:00
using System.Text.Json.Serialization;
2020-05-13 04:10:35 +02:00
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Model.Providers;
namespace MediaBrowser.Controller.Entities.Movies
{
/// <summary>
/// Class Movie.
2018-12-28 00:27:57 +01:00
/// </summary>
public class Movie : Video, IHasSpecialFeatures, IHasTrailers, IHasLookupInfo<MovieInfo>, ISupportsBoxSetGrouping
{
2020-08-19 18:02:34 +02:00
/// <inheritdoc />
[JsonIgnore]
2021-12-21 00:10:58 +01:00
public IReadOnlyList<Guid> SpecialFeatureIds => GetExtras()
2022-12-05 15:01:13 +01:00
.Where(extra => extra.ExtraType is not null && extra is Video)
2021-12-21 00:10:58 +01:00
.Select(extra => extra.Id)
.ToArray();
/// <inheritdoc />
[JsonIgnore]
2021-12-07 15:18:17 +01:00
public IReadOnlyList<BaseItem> LocalTrailers => GetExtras()
.Where(extra => extra.ExtraType == Model.Entities.ExtraType.Trailer)
.ToArray();
2018-12-28 00:27:57 +01:00
/// <summary>
/// Gets or sets the name of the TMDb collection.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <value>The name of the TMDb collection.</value>
2018-12-28 00:27:57 +01:00
public string TmdbCollectionName { get; set; }
2019-10-15 17:49:49 +02:00
[JsonIgnore]
2018-12-28 00:27:57 +01:00
public string CollectionName
{
get => TmdbCollectionName;
set => TmdbCollectionName = value;
2018-12-28 00:27:57 +01:00
}
2020-08-19 18:02:34 +02:00
[JsonIgnore]
public override bool StopRefreshIfLocalMetadataFound => false;
2018-12-28 00:27:57 +01:00
public override double GetDefaultPrimaryImageAspectRatio()
{
// hack for tv plugins
if (SourceType == SourceType.Channel)
{
return 0;
}
return 2.0 / 3;
2018-12-28 00:27:57 +01:00
}
2020-08-19 18:02:34 +02:00
/// <inheritdoc />
2018-12-28 00:27:57 +01:00
public override UnratedItem GetBlockUnratedType()
{
return UnratedItem.Movie;
}
public MovieInfo GetLookupInfo()
{
var info = GetItemLookupInfo<MovieInfo>();
if (!IsInMixedFolder)
{
var name = System.IO.Path.GetFileName(ContainingFolderPath);
if (VideoType == VideoType.VideoFile || VideoType == VideoType.Iso)
{
if (string.Equals(name, System.IO.Path.GetFileName(Path), StringComparison.OrdinalIgnoreCase))
{
// if the folder has the file extension, strip it
name = System.IO.Path.GetFileNameWithoutExtension(name);
}
}
info.Name = name;
}
return info;
}
2020-08-19 18:02:34 +02:00
/// <inheritdoc />
public override bool BeforeMetadataRefresh(bool replaceAllMetadata)
2018-12-28 00:27:57 +01:00
{
var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata);
2018-12-28 00:27:57 +01: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;
}
2020-08-19 18:02:34 +02:00
/// <inheritdoc />
2018-12-28 00:27:57 +01:00
public override List<ExternalUrl> GetRelatedUrls()
{
var list = base.GetRelatedUrls();
2020-06-06 21:17:49 +02:00
var imdbId = this.GetProviderId(MetadataProvider.Imdb);
2018-12-28 00:27:57 +01:00
if (!string.IsNullOrEmpty(imdbId))
{
list.Add(new ExternalUrl
{
Name = "Trakt",
2020-08-07 19:26:28 +02:00
Url = string.Format(CultureInfo.InvariantCulture, "https://trakt.tv/movies/{0}", imdbId)
2018-12-28 00:27:57 +01:00
});
}
return list;
}
}
}