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

184 lines
6.1 KiB
C#
Raw Normal View History

2014-08-15 18:35:41 +02:00
using MediaBrowser.Common.Progress;
2014-02-07 04:10:13 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Configuration;
2013-12-02 17:46:25 +01:00
using MediaBrowser.Model.Entities;
2014-01-02 04:53:27 +01:00
using MediaBrowser.Model.Querying;
2013-12-26 17:53:23 +01:00
using System;
2013-12-02 17:46:25 +01:00
using System.Collections.Generic;
2014-02-07 04:10:13 +01:00
using System.Linq;
2014-08-15 18:35:41 +02:00
using System.Runtime.Serialization;
2014-02-07 04:10:13 +01:00
using System.Threading;
using System.Threading.Tasks;
2014-12-20 07:06:27 +01:00
using MediaBrowser.Model.Users;
2013-12-02 17:46:25 +01:00
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Controller.Entities.Movies
{
/// <summary>
/// Class BoxSet
/// </summary>
2014-12-13 04:56:30 +01:00
public class BoxSet : Folder, IHasTrailers, IHasKeywords, IHasPreferredMetadataLanguage, IHasDisplayOrder, IHasLookupInfo<BoxSetInfo>, IMetadataContainer, IHasShares
2013-02-21 02:33:05 +01:00
{
2014-12-13 04:56:30 +01:00
public List<Share> Shares { get; set; }
2013-12-02 17:46:25 +01:00
public BoxSet()
{
RemoteTrailers = new List<MediaUrl>();
LocalTrailerIds = new List<Guid>();
2014-12-11 07:20:28 +01:00
RemoteTrailerIds = new List<Guid>();
2014-01-03 21:43:44 +01:00
DisplayOrder = ItemSortBy.PremiereDate;
2014-01-14 16:50:39 +01:00
Keywords = new List<string>();
2014-12-13 04:56:30 +01:00
Shares = new List<Share>();
2013-12-02 17:46:25 +01:00
}
2014-08-14 15:24:30 +02:00
protected override bool FilterLinkedChildrenPerUser
{
get
{
return true;
}
}
2013-12-02 17:46:25 +01:00
public List<Guid> LocalTrailerIds { get; set; }
2014-12-11 07:20:28 +01:00
public List<Guid> RemoteTrailerIds { get; set; }
2014-01-02 04:53:27 +01:00
2013-12-02 17:46:25 +01:00
/// <summary>
/// Gets or sets the remote trailers.
/// </summary>
/// <value>The remote trailers.</value>
public List<MediaUrl> RemoteTrailers { get; set; }
/// <summary>
/// Gets or sets the tags.
/// </summary>
/// <value>The tags.</value>
2014-01-14 16:50:39 +01:00
public List<string> Keywords { get; set; }
2013-12-26 17:53:23 +01:00
public string PreferredMetadataLanguage { get; set; }
2013-12-28 17:58:13 +01:00
/// <summary>
/// Gets or sets the preferred metadata country code.
/// </summary>
/// <value>The preferred metadata country code.</value>
public string PreferredMetadataCountryCode { get; set; }
/// <summary>
/// Gets or sets the display order.
/// </summary>
/// <value>The display order.</value>
public string DisplayOrder { get; set; }
2014-12-20 07:06:27 +01:00
protected override bool GetBlockUnratedValue(UserPolicy config)
2013-12-26 17:53:23 +01:00
{
return config.BlockUnratedItems.Contains(UnratedItem.Movie);
2013-12-26 17:53:23 +01:00
}
2014-01-02 04:53:27 +01:00
[IgnoreDataMember]
public override bool IsPreSorted
{
get
{
return true;
}
}
2014-12-11 07:20:28 +01:00
/// <summary>
/// Gets the trailer ids.
/// </summary>
/// <returns>List&lt;Guid&gt;.</returns>
public List<Guid> GetTrailerIds()
{
var list = LocalTrailerIds.ToList();
list.AddRange(RemoteTrailerIds);
return list;
}
2014-01-02 04:53:27 +01:00
public override IEnumerable<BaseItem> GetChildren(User user, bool includeLinkedChildren)
{
var children = base.GetChildren(user, includeLinkedChildren);
2014-01-03 21:43:44 +01:00
if (string.Equals(DisplayOrder, ItemSortBy.SortName, StringComparison.OrdinalIgnoreCase))
{
// Sort by name
return LibraryManager.Sort(children, user, new[] { ItemSortBy.SortName }, SortOrder.Ascending);
}
2014-01-03 21:43:44 +01:00
if (string.Equals(DisplayOrder, ItemSortBy.PremiereDate, StringComparison.OrdinalIgnoreCase))
{
// Sort by release date
return LibraryManager.Sort(children, user, new[] { ItemSortBy.ProductionYear, ItemSortBy.PremiereDate, ItemSortBy.SortName }, SortOrder.Ascending);
}
2014-08-14 15:24:30 +02:00
// Default sorting
2014-01-02 04:53:27 +01:00
return LibraryManager.Sort(children, user, new[] { ItemSortBy.ProductionYear, ItemSortBy.PremiereDate, ItemSortBy.SortName }, SortOrder.Ascending);
}
2014-02-07 04:10:13 +01:00
public BoxSetInfo GetLookupInfo()
{
return GetItemLookupInfo<BoxSetInfo>();
}
public async Task RefreshAllMetadata(MetadataRefreshOptions refreshOptions, IProgress<double> progress, CancellationToken cancellationToken)
{
// Refresh bottom up, children first, then the boxset
// By then hopefully the movies within will have Tmdb collection values
var items = RecursiveChildren.ToList();
var totalItems = items.Count;
var percentages = new Dictionary<Guid, double>(totalItems);
// Refresh songs
foreach (var item in items)
{
cancellationToken.ThrowIfCancellationRequested();
var innerProgress = new ActionableProgress<double>();
// Avoid implicitly captured closure
var currentChild = item;
innerProgress.RegisterAction(p =>
{
lock (percentages)
{
percentages[currentChild.Id] = p / 100;
var percent = percentages.Values.Sum();
percent /= totalItems;
percent *= 100;
progress.Report(percent);
}
});
2014-02-15 17:36:09 +01:00
// Avoid implicitly captured closure
2014-08-11 00:13:17 +02:00
await RefreshItem(item, refreshOptions, innerProgress, cancellationToken).ConfigureAwait(false);
2014-02-07 04:10:13 +01:00
}
// Refresh current item
await RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
progress.Report(100);
}
private async Task RefreshItem(BaseItem item, MetadataRefreshOptions refreshOptions, IProgress<double> progress, CancellationToken cancellationToken)
{
await item.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
progress.Report(100);
}
2014-12-13 04:56:30 +01:00
public override bool IsVisible(User user)
{
if (base.IsVisible(user))
{
var userId = user.Id.ToString("N");
return Shares.Any(i => string.Equals(userId, i.UserId, StringComparison.OrdinalIgnoreCase)) ||
// Need to support this for boxsets created prior to the creation of Shares
Shares.Count == 0;
}
return false;
}
2013-02-21 02:33:05 +01:00
}
}