2014-03-14 21:14:07 -07:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-01-28 11:37:01 -07:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-12-26 09:53:23 -07:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2015-01-03 22:55:34 -07:00
|
|
|
|
using MediaBrowser.Model.Users;
|
2013-05-27 18:59:26 -07:00
|
|
|
|
using System;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using System.Collections.Generic;
|
2013-02-21 10:51:17 -07:00
|
|
|
|
using System.IO;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2015-10-03 21:23:11 -07:00
|
|
|
|
using CommonIO;
|
2015-10-03 20:38:46 -07:00
|
|
|
|
using MediaBrowser.Common.IO;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities.Movies
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class Movie
|
|
|
|
|
/// </summary>
|
2015-04-25 20:25:07 -07:00
|
|
|
|
public class Movie : Video, IHasCriticRating, IHasSpecialFeatures, IHasProductionLocations, IHasBudget, IHasKeywords, IHasTrailers, IHasThemeMedia, IHasTaglines, IHasAwards, IHasMetascore, IHasLookupInfo<MovieInfo>, ISupportsBoxSetGrouping, IHasOriginalTitle
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2013-05-08 13:58:52 -07:00
|
|
|
|
public List<Guid> SpecialFeatureIds { get; set; }
|
|
|
|
|
|
2015-03-09 18:30:20 -07:00
|
|
|
|
public string OriginalTitle { get; set; }
|
2013-11-12 08:36:08 -07:00
|
|
|
|
|
2013-12-05 09:50:21 -07:00
|
|
|
|
public List<Guid> ThemeSongIds { get; set; }
|
|
|
|
|
public List<Guid> ThemeVideoIds { get; set; }
|
2014-05-16 12:16:29 -07:00
|
|
|
|
public List<string> ProductionLocations { get; set; }
|
2014-02-05 21:39:16 -07:00
|
|
|
|
|
2013-05-08 13:58:52 -07:00
|
|
|
|
public Movie()
|
|
|
|
|
{
|
|
|
|
|
SpecialFeatureIds = new List<Guid>();
|
2013-12-02 09:46:25 -07:00
|
|
|
|
RemoteTrailers = new List<MediaUrl>();
|
|
|
|
|
LocalTrailerIds = new List<Guid>();
|
2014-12-10 23:20:28 -07:00
|
|
|
|
RemoteTrailerIds = new List<Guid>();
|
2013-12-05 09:50:21 -07:00
|
|
|
|
ThemeSongIds = new List<Guid>();
|
|
|
|
|
ThemeVideoIds = new List<Guid>();
|
|
|
|
|
Taglines = new List<string>();
|
2014-01-14 08:50:39 -07:00
|
|
|
|
Keywords = new List<string>();
|
2014-05-16 12:16:29 -07:00
|
|
|
|
ProductionLocations = new List<string>();
|
2013-05-08 13:58:52 -07:00
|
|
|
|
}
|
2013-06-16 12:02:57 -07:00
|
|
|
|
|
2014-01-14 22:01:58 -07:00
|
|
|
|
public string AwardSummary { get; set; }
|
|
|
|
|
|
|
|
|
|
public float? Metascore { get; set; }
|
|
|
|
|
|
2013-12-02 09:46:25 -07:00
|
|
|
|
public List<Guid> LocalTrailerIds { get; set; }
|
2014-12-10 23:20:28 -07:00
|
|
|
|
public List<Guid> RemoteTrailerIds { get; set; }
|
2014-01-14 08:50:39 -07:00
|
|
|
|
public List<string> Keywords { get; set; }
|
2014-02-05 21:39:16 -07:00
|
|
|
|
|
2013-12-02 09:46:25 -07:00
|
|
|
|
public List<MediaUrl> RemoteTrailers { get; set; }
|
|
|
|
|
|
2013-12-05 09:50:21 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the taglines.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The taglines.</value>
|
|
|
|
|
public List<string> Taglines { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-12-02 09:16:03 -07:00
|
|
|
|
/// 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 09:06:16 -07: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-10-17 08:34:47 -07: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; }
|
|
|
|
|
|
2014-12-10 23:20:28 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the trailer ids.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>List<Guid>.</returns>
|
|
|
|
|
public List<Guid> GetTrailerIds()
|
|
|
|
|
{
|
|
|
|
|
var list = LocalTrailerIds.ToList();
|
|
|
|
|
list.AddRange(RemoteTrailerIds);
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// <summary>
|
2013-04-13 11:02:30 -07:00
|
|
|
|
/// Gets the user data key.
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// </summary>
|
2013-04-13 11:02:30 -07:00
|
|
|
|
/// <returns>System.String.</returns>
|
2015-01-24 15:33:26 -07:00
|
|
|
|
protected override string CreateUserDataKey()
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2015-08-20 16:55:23 -07:00
|
|
|
|
var key = GetMovieUserDataKey(this);
|
2015-04-29 10:39:23 -07:00
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(key))
|
|
|
|
|
{
|
2015-08-20 16:55:23 -07:00
|
|
|
|
key = base.CreateUserDataKey();
|
2015-04-29 10:39:23 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-20 16:55:23 -07:00
|
|
|
|
return key;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetMovieUserDataKey(BaseItem movie)
|
|
|
|
|
{
|
|
|
|
|
var key = movie.GetProviderId(MetadataProviders.Tmdb);
|
|
|
|
|
|
2015-04-29 10:39:23 -07:00
|
|
|
|
if (string.IsNullOrWhiteSpace(key))
|
|
|
|
|
{
|
2015-08-20 16:55:23 -07:00
|
|
|
|
key = movie.GetProviderId(MetadataProviders.Imdb);
|
2015-04-29 10:39:23 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return key;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-03 20:38:46 -07:00
|
|
|
|
protected override async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2014-02-10 11:39:41 -07:00
|
|
|
|
var hasChanges = await base.RefreshedOwnedItems(options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
|
2013-06-17 13:35:43 -07:00
|
|
|
|
|
|
|
|
|
// Must have a parent to have special features
|
|
|
|
|
// In other words, it must be part of the Parent/Child tree
|
2013-08-15 09:00:39 -07:00
|
|
|
|
if (LocationType == LocationType.FileSystem && Parent != null && !IsInMixedFolder)
|
2013-06-17 13:35:43 -07:00
|
|
|
|
{
|
2014-02-05 21:39:16 -07:00
|
|
|
|
var specialFeaturesChanged = await RefreshSpecialFeatures(options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-02-05 21:39:16 -07:00
|
|
|
|
if (specialFeaturesChanged)
|
|
|
|
|
{
|
2014-02-10 11:39:41 -07:00
|
|
|
|
hasChanges = true;
|
2014-02-05 21:39:16 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-10 11:39:41 -07:00
|
|
|
|
|
|
|
|
|
return hasChanges;
|
2013-05-08 13:58:52 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-03 20:38:46 -07:00
|
|
|
|
private async Task<bool> RefreshSpecialFeatures(MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
|
2013-05-08 13:58:52 -07:00
|
|
|
|
{
|
2014-12-01 11:42:07 -07:00
|
|
|
|
var newItems = LibraryManager.FindExtras(this, fileSystemChildren, options.DirectoryService).ToList();
|
2013-05-08 13:58:52 -07:00
|
|
|
|
var newItemIds = newItems.Select(i => i.Id).ToList();
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2013-05-08 13:58:52 -07:00
|
|
|
|
var itemsChanged = !SpecialFeatureIds.SequenceEqual(newItemIds);
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-02-05 21:39:16 -07:00
|
|
|
|
var tasks = newItems.Select(i => i.RefreshMetadata(options, cancellationToken));
|
2013-04-10 08:56:36 -07:00
|
|
|
|
|
2014-02-05 21:39:16 -07:00
|
|
|
|
await Task.WhenAll(tasks).ConfigureAwait(false);
|
2013-05-08 13:58:52 -07:00
|
|
|
|
|
|
|
|
|
SpecialFeatureIds = newItemIds;
|
|
|
|
|
|
2014-02-05 21:39:16 -07:00
|
|
|
|
return itemsChanged;
|
2013-05-08 13:58:52 -07:00
|
|
|
|
}
|
2013-06-16 12:02:57 -07:00
|
|
|
|
|
2014-12-19 23:06:27 -07:00
|
|
|
|
protected override bool GetBlockUnratedValue(UserPolicy config)
|
2013-12-26 09:53:23 -07:00
|
|
|
|
{
|
2014-02-21 08:24:29 -07:00
|
|
|
|
return config.BlockUnratedItems.Contains(UnratedItem.Movie);
|
2013-12-26 09:53:23 -07:00
|
|
|
|
}
|
2014-02-06 20:10:13 -07:00
|
|
|
|
|
|
|
|
|
public MovieInfo GetLookupInfo()
|
|
|
|
|
{
|
2014-12-18 21:20:07 -07:00
|
|
|
|
var info = GetItemLookupInfo<MovieInfo>();
|
|
|
|
|
|
|
|
|
|
if (!IsInMixedFolder)
|
|
|
|
|
{
|
|
|
|
|
info.Name = System.IO.Path.GetFileName(ContainingFolderPath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return info;
|
2014-02-06 20:10:13 -07:00
|
|
|
|
}
|
2014-02-12 22:11:54 -07:00
|
|
|
|
|
|
|
|
|
public override bool BeforeMetadataRefresh()
|
|
|
|
|
{
|
|
|
|
|
var hasChanges = base.BeforeMetadataRefresh();
|
|
|
|
|
|
|
|
|
|
if (!ProductionYear.HasValue)
|
|
|
|
|
{
|
2014-11-16 15:46:01 -07:00
|
|
|
|
var info = LibraryManager.ParseName(Name);
|
2014-02-12 22:11:54 -07:00
|
|
|
|
|
2014-11-16 15:46:01 -07:00
|
|
|
|
var yearInName = info.Year;
|
2014-02-12 22:11:54 -07:00
|
|
|
|
|
|
|
|
|
if (yearInName.HasValue)
|
|
|
|
|
{
|
|
|
|
|
ProductionYear = yearInName;
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
}
|
2014-12-08 21:57:18 -07:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-12 22:11:54 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return hasChanges;
|
|
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|