2014-03-15 04:14:07 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-12-26 16:53:23 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-05-28 01:59:26 +00:00
|
|
|
|
using System;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Controller.IO;
|
|
|
|
|
using MediaBrowser.Model.IO;
|
2016-05-29 06:03:09 +00:00
|
|
|
|
using MediaBrowser.Model.Providers;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities.Movies
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class Movie
|
|
|
|
|
/// </summary>
|
2017-04-01 19:49:36 +00:00
|
|
|
|
public class Movie : Video, IHasSpecialFeatures, IHasTrailers, IHasAwards, IHasLookupInfo<MovieInfo>, ISupportsBoxSetGrouping
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-08 20:58:52 +00:00
|
|
|
|
public List<Guid> SpecialFeatureIds { get; set; }
|
|
|
|
|
|
|
|
|
|
public Movie()
|
|
|
|
|
{
|
|
|
|
|
SpecialFeatureIds = new List<Guid>();
|
2013-12-02 16:46:25 +00:00
|
|
|
|
RemoteTrailers = new List<MediaUrl>();
|
|
|
|
|
LocalTrailerIds = new List<Guid>();
|
2014-12-11 06:20:28 +00:00
|
|
|
|
RemoteTrailerIds = new List<Guid>();
|
2013-05-08 20:58:52 +00:00
|
|
|
|
}
|
2013-06-16 19:02:57 +00:00
|
|
|
|
|
2014-01-15 05:01:58 +00:00
|
|
|
|
public string AwardSummary { get; set; }
|
|
|
|
|
|
2013-12-02 16:46:25 +00:00
|
|
|
|
public List<Guid> LocalTrailerIds { get; set; }
|
2014-12-11 06:20:28 +00:00
|
|
|
|
public List<Guid> RemoteTrailerIds { get; set; }
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
2013-12-02 16:46:25 +00:00
|
|
|
|
public List<MediaUrl> RemoteTrailers { get; set; }
|
|
|
|
|
|
2013-10-17 15:34:47 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name of the TMDB collection.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the TMDB collection.</value>
|
|
|
|
|
public string TmdbCollectionName { get; set; }
|
|
|
|
|
|
2016-03-14 01:34:24 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public string CollectionName
|
|
|
|
|
{
|
|
|
|
|
get { return TmdbCollectionName; }
|
|
|
|
|
set { TmdbCollectionName = value; }
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2017-02-10 20:06:52 +00:00
|
|
|
|
public override double? GetDefaultPrimaryImageAspectRatio()
|
|
|
|
|
{
|
|
|
|
|
double value = 2;
|
|
|
|
|
value /= 3;
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-11 21:33:38 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
protected override bool SupportsIsInMixedFolderDetection
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
protected override async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-02-10 18:39:41 +00:00
|
|
|
|
var hasChanges = await base.RefreshedOwnedItems(options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
|
2013-06-17 20:35:43 +00:00
|
|
|
|
|
|
|
|
|
// Must have a parent to have special features
|
|
|
|
|
// In other words, it must be part of the Parent/Child tree
|
2016-10-07 15:08:13 +00:00
|
|
|
|
if (LocationType == LocationType.FileSystem && GetParent() != null && !DetectIsInMixedFolder())
|
2013-06-17 20:35:43 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
var specialFeaturesChanged = await RefreshSpecialFeatures(options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
if (specialFeaturesChanged)
|
|
|
|
|
{
|
2014-02-10 18:39:41 +00:00
|
|
|
|
hasChanges = true;
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-10 18:39:41 +00:00
|
|
|
|
|
|
|
|
|
return hasChanges;
|
2013-05-08 20:58:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
private async Task<bool> RefreshSpecialFeatures(MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
|
2013-05-08 20:58:52 +00:00
|
|
|
|
{
|
2014-12-01 18:42:07 +00:00
|
|
|
|
var newItems = LibraryManager.FindExtras(this, fileSystemChildren, options.DirectoryService).ToList();
|
2013-05-08 20:58:52 +00:00
|
|
|
|
var newItemIds = newItems.Select(i => i.Id).ToList();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-08 20:58:52 +00:00
|
|
|
|
var itemsChanged = !SpecialFeatureIds.SequenceEqual(newItemIds);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2016-10-16 17:11:32 +00:00
|
|
|
|
var tasks = newItems.Select(i => RefreshMetadataForOwnedItem(i, false, options, cancellationToken));
|
2013-04-10 15:56:36 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
await Task.WhenAll(tasks).ConfigureAwait(false);
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
|
|
|
|
SpecialFeatureIds = newItemIds;
|
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
return itemsChanged;
|
2013-05-08 20:58:52 +00:00
|
|
|
|
}
|
2013-06-16 19:02:57 +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.Movie;
|
2013-12-26 16:53:23 +00:00
|
|
|
|
}
|
2014-02-07 03:10:13 +00:00
|
|
|
|
|
|
|
|
|
public MovieInfo GetLookupInfo()
|
|
|
|
|
{
|
2014-12-19 04:20:07 +00:00
|
|
|
|
var info = GetItemLookupInfo<MovieInfo>();
|
|
|
|
|
|
2016-10-07 15:08:13 +00:00
|
|
|
|
if (!DetectIsInMixedFolder())
|
2014-12-19 04:20:07 +00:00
|
|
|
|
{
|
2016-12-09 07:23:09 +00:00
|
|
|
|
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;
|
2014-12-19 04:20:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return info;
|
2014-02-07 03:10:13 +00:00
|
|
|
|
}
|
2014-02-13 05:11:54 +00:00
|
|
|
|
|
|
|
|
|
public override bool BeforeMetadataRefresh()
|
|
|
|
|
{
|
|
|
|
|
var hasChanges = base.BeforeMetadataRefresh();
|
|
|
|
|
|
|
|
|
|
if (!ProductionYear.HasValue)
|
|
|
|
|
{
|
2014-11-16 22:46:01 +00:00
|
|
|
|
var info = LibraryManager.ParseName(Name);
|
2014-02-13 05:11:54 +00:00
|
|
|
|
|
2014-11-16 22:46:01 +00:00
|
|
|
|
var yearInName = info.Year;
|
2014-02-13 05:11:54 +00:00
|
|
|
|
|
|
|
|
|
if (yearInName.HasValue)
|
|
|
|
|
{
|
|
|
|
|
ProductionYear = yearInName;
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
}
|
2014-12-09 04:57:18 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Try to get the year from the folder name
|
2016-10-07 15:08:13 +00:00
|
|
|
|
if (!DetectIsInMixedFolder())
|
2014-12-09 04:57:18 +00:00
|
|
|
|
{
|
|
|
|
|
info = LibraryManager.ParseName(System.IO.Path.GetFileName(ContainingFolderPath));
|
|
|
|
|
|
|
|
|
|
yearInName = info.Year;
|
|
|
|
|
|
|
|
|
|
if (yearInName.HasValue)
|
|
|
|
|
{
|
|
|
|
|
ProductionYear = yearInName;
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-13 05:11:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return hasChanges;
|
|
|
|
|
}
|
2016-05-29 06:03:09 +00:00
|
|
|
|
|
|
|
|
|
public override List<ExternalUrl> GetRelatedUrls()
|
|
|
|
|
{
|
|
|
|
|
var list = base.GetRelatedUrls();
|
|
|
|
|
|
|
|
|
|
var imdbId = this.GetProviderId(MetadataProviders.Imdb);
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(imdbId))
|
|
|
|
|
{
|
|
|
|
|
list.Add(new ExternalUrl
|
|
|
|
|
{
|
|
|
|
|
Name = "Trakt",
|
|
|
|
|
Url = string.Format("https://trakt.tv/movies/{0}", imdbId)
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
}
|
2016-08-14 21:29:35 +00:00
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool StopRefreshIfLocalMetadataFound
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// Need people id's from internet metadata
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|