2015-02-14 22:36:07 -05:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-12-26 11:53:23 -05:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-12-10 15:42:42 -05:00
|
|
|
|
using MediaBrowser.Model.Querying;
|
2014-12-27 00:08:39 -05:00
|
|
|
|
using MediaBrowser.Model.Users;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2013-12-03 16:12:20 -05:00
|
|
|
|
using System.Linq;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
using System.Runtime.Serialization;
|
2015-02-14 22:36:07 -05:00
|
|
|
|
using System.Threading;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2016-05-31 11:38:47 -04:00
|
|
|
|
using MediaBrowser.Model.Providers;
|
2016-05-07 13:47:41 -04:00
|
|
|
|
using MoreLinq;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities.TV
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Class Series
|
|
|
|
|
|
/// </summary>
|
2015-04-25 23:25:07 -04:00
|
|
|
|
public class Series : Folder, IHasTrailers, IHasDisplayOrder, IHasLookupInfo<SeriesInfo>, IHasSpecialFeatures, IMetadataContainer, IHasOriginalTitle
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
2013-08-30 21:08:32 -04:00
|
|
|
|
public List<Guid> SpecialFeatureIds { get; set; }
|
|
|
|
|
|
|
2014-02-27 23:49:02 -05:00
|
|
|
|
public int? AnimeSeriesIndex { get; set; }
|
|
|
|
|
|
|
2013-05-15 09:57:13 -04:00
|
|
|
|
public Series()
|
|
|
|
|
|
{
|
|
|
|
|
|
AirDays = new List<DayOfWeek>();
|
2013-08-30 21:08:32 -04:00
|
|
|
|
|
|
|
|
|
|
SpecialFeatureIds = new List<Guid>();
|
2013-12-02 11:46:25 -05:00
|
|
|
|
RemoteTrailers = new List<MediaUrl>();
|
|
|
|
|
|
LocalTrailerIds = new List<Guid>();
|
2014-12-11 01:20:28 -05:00
|
|
|
|
RemoteTrailerIds = new List<Guid>();
|
2013-05-15 09:57:13 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2014-08-30 10:26:29 -04:00
|
|
|
|
[IgnoreDataMember]
|
2014-08-05 19:59:24 -04:00
|
|
|
|
public override bool SupportsAddingToPlaylist
|
|
|
|
|
|
{
|
|
|
|
|
|
get { return true; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-08-02 22:16:37 -04:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public override bool IsPreSorted
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
2016-05-08 23:13:38 -04:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public override bool SupportsDateLastMediaAdded
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
2014-08-02 22:16:37 -04:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2013-12-02 11:46:25 -05:00
|
|
|
|
public List<Guid> LocalTrailerIds { get; set; }
|
2014-12-11 01:20:28 -05:00
|
|
|
|
public List<Guid> RemoteTrailerIds { get; set; }
|
|
|
|
|
|
|
2013-12-02 11:46:25 -05:00
|
|
|
|
public List<MediaUrl> RemoteTrailers { get; set; }
|
2013-12-05 11:50:21 -05:00
|
|
|
|
|
2014-01-03 21:35:41 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// airdate, dvd or absolute
|
|
|
|
|
|
/// </summary>
|
2014-01-03 15:32:27 -05:00
|
|
|
|
public string DisplayOrder { get; set; }
|
2015-04-29 13:39:23 -04:00
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the status.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The status.</value>
|
|
|
|
|
|
public SeriesStatus? Status { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the air days.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The air days.</value>
|
|
|
|
|
|
public List<DayOfWeek> AirDays { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the air time.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The air time.</value>
|
|
|
|
|
|
public string AirTime { get; set; }
|
|
|
|
|
|
|
2013-09-29 20:51:21 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the date last episode added.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The date last episode added.</value>
|
2014-12-27 00:08:39 -05:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public DateTime DateLastEpisodeAdded
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
2016-06-12 01:03:52 -04:00
|
|
|
|
return DateLastMediaAdded ?? DateTime.MinValue;
|
2014-12-27 00:08:39 -05:00
|
|
|
|
}
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-08-12 15:11:45 -04:00
|
|
|
|
public override string CreatePresentationUniqueKey()
|
2016-05-01 18:11:24 -04:00
|
|
|
|
{
|
2016-08-12 15:11:45 -04:00
|
|
|
|
var userdatakeys = GetUserDataKeys();
|
2016-06-04 00:57:46 -04:00
|
|
|
|
|
2016-08-12 15:11:45 -04:00
|
|
|
|
if (userdatakeys.Count > 1)
|
|
|
|
|
|
{
|
|
|
|
|
|
return AddLibrariesToPresentationUniqueKey(userdatakeys[0]);
|
2016-05-12 15:21:43 -04:00
|
|
|
|
}
|
2016-08-12 15:11:45 -04:00
|
|
|
|
return base.CreatePresentationUniqueKey();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private string AddLibrariesToPresentationUniqueKey(string key)
|
|
|
|
|
|
{
|
|
|
|
|
|
return key;
|
|
|
|
|
|
//var folders = LibraryManager.GetCollectionFolders(this)
|
|
|
|
|
|
// .Select(i => i.Id.ToString("N"))
|
|
|
|
|
|
// .ToArray();
|
|
|
|
|
|
|
|
|
|
|
|
//if (folders.Length == 0)
|
|
|
|
|
|
//{
|
|
|
|
|
|
// return key;
|
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
|
|
//return key + "-" + string.Join("-", folders);
|
2016-05-01 18:11:24 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-07-01 11:51:35 -04:00
|
|
|
|
private static string GetUniqueSeriesKey(BaseItem series)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (ConfigurationManager.Configuration.SchemaVersion < 97)
|
|
|
|
|
|
{
|
|
|
|
|
|
return series.Id.ToString("N");
|
|
|
|
|
|
}
|
2016-08-12 15:11:45 -04:00
|
|
|
|
return series.GetPresentationUniqueKey();
|
2016-07-01 11:51:35 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-06-16 09:24:12 -04:00
|
|
|
|
public override int GetChildCount(User user)
|
|
|
|
|
|
{
|
|
|
|
|
|
var result = LibraryManager.GetItemsResult(new InternalItemsQuery(user)
|
|
|
|
|
|
{
|
2016-07-01 11:51:35 -04:00
|
|
|
|
AncestorWithPresentationUniqueKey = GetUniqueSeriesKey(this),
|
2016-06-16 09:24:12 -04:00
|
|
|
|
IncludeItemTypes = new[] { typeof(Season).Name },
|
|
|
|
|
|
SortBy = new[] { ItemSortBy.SortName },
|
|
|
|
|
|
IsVirtualItem = false,
|
|
|
|
|
|
Limit = 0
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
return result.TotalRecordCount;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
2013-04-13 14:02:30 -04:00
|
|
|
|
/// Gets the user data key.
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// </summary>
|
2013-04-13 14:02:30 -04:00
|
|
|
|
/// <returns>System.String.</returns>
|
2016-04-30 19:05:21 -04:00
|
|
|
|
public override List<string> GetUserDataKeys()
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
2016-04-30 19:05:21 -04:00
|
|
|
|
var list = base.GetUserDataKeys();
|
2015-04-29 13:39:23 -04:00
|
|
|
|
|
2016-04-30 19:05:21 -04:00
|
|
|
|
var key = this.GetProviderId(MetadataProviders.Imdb);
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(key))
|
2015-04-29 13:39:23 -04:00
|
|
|
|
{
|
2016-04-30 19:05:21 -04:00
|
|
|
|
list.Insert(0, key);
|
2015-04-29 13:39:23 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-04-30 19:05:21 -04:00
|
|
|
|
key = this.GetProviderId(MetadataProviders.Tvdb);
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(key))
|
2015-04-29 13:39:23 -04:00
|
|
|
|
{
|
2016-04-30 19:05:21 -04:00
|
|
|
|
list.Insert(0, key);
|
2015-04-29 13:39:23 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-04-30 19:05:21 -04:00
|
|
|
|
return list;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
2014-12-11 01:20:28 -05: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 20:33:05 -05:00
|
|
|
|
// Studio, Genre and Rating will all be the same so makes no sense to index by these
|
2013-12-10 21:51:26 -05:00
|
|
|
|
protected override IEnumerable<string> GetIndexByOptions()
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
2016-04-30 19:05:21 -04:00
|
|
|
|
return new List<string> {
|
|
|
|
|
|
{"None"},
|
2015-02-05 00:29:37 -05:00
|
|
|
|
{"Performer"},
|
|
|
|
|
|
{"Director"},
|
|
|
|
|
|
{"Year"},
|
2013-02-20 20:33:05 -05:00
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2013-12-03 16:12:20 -05:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public bool ContainsEpisodesWithoutSeasonFolders
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return Children.OfType<Video>().Any();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2013-12-10 15:42:42 -05:00
|
|
|
|
|
2013-12-10 21:51:26 -05:00
|
|
|
|
public override IEnumerable<BaseItem> GetChildren(User user, bool includeLinkedChildren)
|
2013-12-10 15:42:42 -05:00
|
|
|
|
{
|
|
|
|
|
|
return GetSeasons(user);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public IEnumerable<Season> GetSeasons(User user)
|
2013-12-11 14:54:20 -05:00
|
|
|
|
{
|
|
|
|
|
|
var config = user.Configuration;
|
|
|
|
|
|
|
|
|
|
|
|
return GetSeasons(user, config.DisplayMissingEpisodes, config.DisplayUnairedEpisodes);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-04-02 17:08:35 -04:00
|
|
|
|
protected override Task<QueryResult<BaseItem>> GetItemsInternal(InternalItemsQuery query)
|
2016-02-26 01:38:29 -05:00
|
|
|
|
{
|
2016-06-03 20:15:14 -04:00
|
|
|
|
if (query.User == null)
|
|
|
|
|
|
{
|
|
|
|
|
|
return base.GetItemsInternal(query);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-02-26 01:38:29 -05:00
|
|
|
|
var user = query.User;
|
|
|
|
|
|
|
2016-06-15 14:56:37 -04:00
|
|
|
|
if (query.Recursive)
|
|
|
|
|
|
{
|
2016-07-01 11:51:35 -04:00
|
|
|
|
query.AncestorWithPresentationUniqueKey = GetUniqueSeriesKey(this);
|
2016-06-15 14:56:37 -04:00
|
|
|
|
if (query.SortBy.Length == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
query.SortBy = new[] { ItemSortBy.SortName };
|
|
|
|
|
|
}
|
|
|
|
|
|
if (query.IncludeItemTypes.Length == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
query.IncludeItemTypes = new[] { typeof(Episode).Name, typeof(Season).Name };
|
|
|
|
|
|
}
|
|
|
|
|
|
query.IsVirtualItem = false;
|
|
|
|
|
|
return Task.FromResult(LibraryManager.GetItemsResult(query));
|
|
|
|
|
|
}
|
2016-02-26 01:38:29 -05:00
|
|
|
|
|
2016-06-15 14:56:37 -04:00
|
|
|
|
Func<BaseItem, bool> filter = i => UserViewBuilder.Filter(i, user, query, UserDataManager, LibraryManager);
|
2016-02-26 01:38:29 -05:00
|
|
|
|
|
2016-06-15 14:56:37 -04:00
|
|
|
|
var items = GetSeasons(user).Where(filter);
|
2016-02-26 01:38:29 -05:00
|
|
|
|
var result = PostFilterAndSort(items, query);
|
|
|
|
|
|
return Task.FromResult(result);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2013-12-11 14:54:20 -05:00
|
|
|
|
public IEnumerable<Season> GetSeasons(User user, bool includeMissingSeasons, bool includeVirtualUnaired)
|
2013-12-10 15:42:42 -05:00
|
|
|
|
{
|
2016-05-02 01:32:04 -04:00
|
|
|
|
IEnumerable<Season> seasons;
|
|
|
|
|
|
|
2016-06-04 00:57:46 -04:00
|
|
|
|
seasons = LibraryManager.GetItemList(new InternalItemsQuery(user)
|
2016-05-02 01:32:04 -04:00
|
|
|
|
{
|
2016-07-01 11:51:35 -04:00
|
|
|
|
AncestorWithPresentationUniqueKey = GetUniqueSeriesKey(this),
|
2016-06-04 00:57:46 -04:00
|
|
|
|
IncludeItemTypes = new[] { typeof(Season).Name },
|
|
|
|
|
|
SortBy = new[] { ItemSortBy.SortName }
|
2016-05-02 01:32:04 -04:00
|
|
|
|
|
2016-06-04 00:57:46 -04:00
|
|
|
|
}).Cast<Season>();
|
2013-12-10 15:42:42 -05:00
|
|
|
|
|
2016-05-20 17:18:48 -04:00
|
|
|
|
if (!includeMissingSeasons)
|
2013-12-10 15:42:42 -05:00
|
|
|
|
{
|
2016-05-20 17:32:43 -04:00
|
|
|
|
seasons = seasons.Where(i => !(i.IsMissingSeason));
|
2013-12-10 15:42:42 -05:00
|
|
|
|
}
|
2016-05-20 17:18:48 -04:00
|
|
|
|
if (!includeVirtualUnaired)
|
2013-12-10 15:42:42 -05:00
|
|
|
|
{
|
2016-05-20 17:18:48 -04:00
|
|
|
|
seasons = seasons.Where(i => !i.IsVirtualUnaired);
|
2013-12-10 15:42:42 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-05-02 01:32:04 -04:00
|
|
|
|
return seasons;
|
2013-12-10 15:42:42 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
2015-01-27 23:30:44 -05:00
|
|
|
|
public IEnumerable<Episode> GetEpisodes(User user)
|
|
|
|
|
|
{
|
|
|
|
|
|
var config = user.Configuration;
|
2015-04-29 13:39:23 -04:00
|
|
|
|
|
2015-02-07 00:28:38 -05:00
|
|
|
|
return GetEpisodes(user, config.DisplayMissingEpisodes, config.DisplayUnairedEpisodes);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public IEnumerable<Episode> GetEpisodes(User user, bool includeMissing, bool includeVirtualUnaired)
|
|
|
|
|
|
{
|
2016-06-04 12:10:10 -04:00
|
|
|
|
var allItems = LibraryManager.GetItemList(new InternalItemsQuery(user)
|
|
|
|
|
|
{
|
2016-07-01 11:51:35 -04:00
|
|
|
|
AncestorWithPresentationUniqueKey = GetUniqueSeriesKey(this),
|
2016-06-04 12:10:10 -04:00
|
|
|
|
IncludeItemTypes = new[] { typeof(Episode).Name, typeof(Season).Name },
|
|
|
|
|
|
SortBy = new[] { ItemSortBy.SortName }
|
2016-06-12 01:03:52 -04:00
|
|
|
|
|
2016-06-04 12:10:10 -04:00
|
|
|
|
}).ToList();
|
|
|
|
|
|
|
|
|
|
|
|
var allSeriesEpisodes = allItems.OfType<Episode>().ToList();
|
2016-06-03 20:15:14 -04:00
|
|
|
|
|
2016-06-04 12:10:10 -04:00
|
|
|
|
var allEpisodes = allItems.OfType<Season>()
|
2016-06-03 20:15:14 -04:00
|
|
|
|
.SelectMany(i => i.GetEpisodes(this, user, includeMissing, includeVirtualUnaired, allSeriesEpisodes))
|
2015-01-27 23:30:44 -05:00
|
|
|
|
.Reverse()
|
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
|
|
// Specials could appear twice based on above - once in season 0, once in the aired season
|
|
|
|
|
|
// This depends on settings for that series
|
|
|
|
|
|
// When this happens, remove the duplicate from season 0
|
|
|
|
|
|
|
2016-05-07 13:47:41 -04:00
|
|
|
|
return allEpisodes.DistinctBy(i => i.Id).Reverse();
|
2015-01-27 23:30:44 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
2015-01-28 16:29:02 -05:00
|
|
|
|
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 = GetRecursiveChildren().ToList();
|
|
|
|
|
|
|
|
|
|
|
|
var seasons = items.OfType<Season>().ToList();
|
|
|
|
|
|
var otherItems = items.Except(seasons).ToList();
|
|
|
|
|
|
|
|
|
|
|
|
var totalItems = seasons.Count + otherItems.Count;
|
|
|
|
|
|
var numComplete = 0;
|
|
|
|
|
|
|
2015-03-23 21:37:21 -04:00
|
|
|
|
// Refresh current item
|
|
|
|
|
|
await RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
2016-04-23 06:30:05 +02:00
|
|
|
|
// Refresh seasons
|
2015-01-28 16:29:02 -05:00
|
|
|
|
foreach (var item in seasons)
|
|
|
|
|
|
{
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
|
|
|
|
await item.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
|
|
numComplete++;
|
|
|
|
|
|
double percent = numComplete;
|
|
|
|
|
|
percent /= totalItems;
|
|
|
|
|
|
progress.Report(percent * 100);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-04-23 06:30:05 +02:00
|
|
|
|
// Refresh episodes and other children
|
2015-01-28 16:29:02 -05:00
|
|
|
|
foreach (var item in otherItems)
|
|
|
|
|
|
{
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
2016-04-23 06:30:05 +02:00
|
|
|
|
var skipItem = false;
|
|
|
|
|
|
|
|
|
|
|
|
var episode = item as Episode;
|
|
|
|
|
|
|
|
|
|
|
|
if (episode != null
|
|
|
|
|
|
&& refreshOptions.MetadataRefreshMode != MetadataRefreshMode.FullRefresh
|
|
|
|
|
|
&& !refreshOptions.ReplaceAllMetadata
|
2016-04-30 19:05:21 -04:00
|
|
|
|
&& episode.IsMissingEpisode
|
2016-05-29 16:20:32 -04:00
|
|
|
|
&& episode.LocationType == LocationType.Virtual
|
2016-04-30 19:05:21 -04:00
|
|
|
|
&& episode.PremiereDate.HasValue
|
2016-04-23 06:30:05 +02:00
|
|
|
|
&& (DateTime.UtcNow - episode.PremiereDate.Value).TotalDays > 30)
|
|
|
|
|
|
{
|
|
|
|
|
|
skipItem = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!skipItem)
|
|
|
|
|
|
{
|
|
|
|
|
|
await item.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
}
|
2015-01-28 16:29:02 -05:00
|
|
|
|
|
|
|
|
|
|
numComplete++;
|
|
|
|
|
|
double percent = numComplete;
|
|
|
|
|
|
percent /= totalItems;
|
|
|
|
|
|
progress.Report(percent * 100);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-05-29 16:20:32 -04:00
|
|
|
|
refreshOptions = new MetadataRefreshOptions(refreshOptions);
|
|
|
|
|
|
refreshOptions.IsPostRecursiveRefresh = true;
|
2015-03-14 11:38:16 -04:00
|
|
|
|
await ProviderManager.RefreshSingleItem(this, refreshOptions, cancellationToken).ConfigureAwait(false);
|
2015-01-28 16:29:02 -05:00
|
|
|
|
|
|
|
|
|
|
progress.Report(100);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-05-24 15:48:53 -04:00
|
|
|
|
public IEnumerable<Episode> GetEpisodes(User user, Season season)
|
2013-12-11 14:54:20 -05:00
|
|
|
|
{
|
|
|
|
|
|
var config = user.Configuration;
|
|
|
|
|
|
|
2016-05-24 15:48:53 -04:00
|
|
|
|
return GetEpisodes(user, season, config.DisplayMissingEpisodes, config.DisplayUnairedEpisodes);
|
2013-12-11 14:54:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-06-03 20:15:14 -04:00
|
|
|
|
private IEnumerable<Episode> GetAllEpisodes(User user)
|
2016-05-11 10:36:28 -04:00
|
|
|
|
{
|
2016-06-04 00:57:46 -04:00
|
|
|
|
return LibraryManager.GetItemList(new InternalItemsQuery(user)
|
2016-05-02 01:32:04 -04:00
|
|
|
|
{
|
2016-07-01 11:51:35 -04:00
|
|
|
|
AncestorWithPresentationUniqueKey = GetUniqueSeriesKey(this),
|
2016-06-04 00:57:46 -04:00
|
|
|
|
IncludeItemTypes = new[] { typeof(Episode).Name },
|
|
|
|
|
|
SortBy = new[] { ItemSortBy.SortName }
|
2016-05-02 01:32:04 -04:00
|
|
|
|
|
2016-06-04 00:57:46 -04:00
|
|
|
|
}).Cast<Episode>();
|
2016-06-03 20:15:14 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public IEnumerable<Episode> GetEpisodes(User user, Season parentSeason, bool includeMissingEpisodes, bool includeVirtualUnairedEpisodes)
|
|
|
|
|
|
{
|
|
|
|
|
|
IEnumerable<Episode> episodes = GetAllEpisodes(user);
|
|
|
|
|
|
|
|
|
|
|
|
return GetEpisodes(user, parentSeason, includeMissingEpisodes, includeVirtualUnairedEpisodes, episodes);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public IEnumerable<Episode> GetEpisodes(User user, Season parentSeason, bool includeMissingEpisodes, bool includeVirtualUnairedEpisodes, IEnumerable<Episode> allSeriesEpisodes)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (allSeriesEpisodes == null)
|
|
|
|
|
|
{
|
|
|
|
|
|
return GetEpisodes(user, parentSeason, includeMissingEpisodes, includeVirtualUnairedEpisodes);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-06-06 17:13:00 -04:00
|
|
|
|
var episodes = FilterEpisodesBySeason(allSeriesEpisodes, parentSeason, ConfigurationManager.Configuration.DisplaySpecialsWithinSeasons);
|
2014-04-19 13:43:12 -04:00
|
|
|
|
|
2013-12-11 14:54:20 -05:00
|
|
|
|
if (!includeMissingEpisodes)
|
2013-12-10 15:42:42 -05:00
|
|
|
|
{
|
|
|
|
|
|
episodes = episodes.Where(i => !i.IsMissingEpisode);
|
|
|
|
|
|
}
|
2013-12-11 14:54:20 -05:00
|
|
|
|
if (!includeVirtualUnairedEpisodes)
|
2013-12-10 15:42:42 -05:00
|
|
|
|
{
|
|
|
|
|
|
episodes = episodes.Where(i => !i.IsVirtualUnaired);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-05-24 15:48:53 -04:00
|
|
|
|
var sortBy = (parentSeason.IndexNumber ?? -1) == 0 ? ItemSortBy.SortName : ItemSortBy.AiredEpisodeOrder;
|
2013-12-19 16:51:32 -05:00
|
|
|
|
|
|
|
|
|
|
return LibraryManager.Sort(episodes, user, new[] { sortBy }, SortOrder.Ascending)
|
2013-12-10 15:42:42 -05:00
|
|
|
|
.Cast<Episode>();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Filters the episodes by season.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static IEnumerable<Episode> FilterEpisodesBySeason(IEnumerable<Episode> episodes, int seasonNumber, bool includeSpecials)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!includeSpecials || seasonNumber < 1)
|
|
|
|
|
|
{
|
2016-05-02 01:32:04 -04:00
|
|
|
|
return episodes.Where(i => (i.ParentIndexNumber ?? -1) == seasonNumber);
|
2013-12-10 15:42:42 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return episodes.Where(i =>
|
|
|
|
|
|
{
|
|
|
|
|
|
var episode = i;
|
|
|
|
|
|
|
|
|
|
|
|
if (episode != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
var currentSeasonNumber = episode.AiredSeasonNumber;
|
|
|
|
|
|
|
|
|
|
|
|
return currentSeasonNumber.HasValue && currentSeasonNumber.Value == seasonNumber;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
2013-12-26 11:53:23 -05:00
|
|
|
|
|
2016-05-24 15:48:53 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Filters the episodes by season.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static IEnumerable<Episode> FilterEpisodesBySeason(IEnumerable<Episode> episodes, Season parentSeason, bool includeSpecials)
|
|
|
|
|
|
{
|
|
|
|
|
|
var seasonNumber = parentSeason.IndexNumber;
|
2016-07-01 11:51:35 -04:00
|
|
|
|
var seasonPresentationKey = GetUniqueSeriesKey(parentSeason);
|
2016-05-24 15:48:53 -04:00
|
|
|
|
|
2016-06-08 01:24:25 -04:00
|
|
|
|
var supportSpecialsInSeason = includeSpecials && seasonNumber.HasValue && seasonNumber.Value != 0;
|
2016-05-24 15:48:53 -04:00
|
|
|
|
|
2016-06-08 01:24:25 -04:00
|
|
|
|
return episodes.Where(episode =>
|
|
|
|
|
|
{
|
|
|
|
|
|
var currentSeasonNumber = supportSpecialsInSeason ? episode.AiredSeasonNumber : episode.ParentIndexNumber;
|
|
|
|
|
|
if (currentSeasonNumber.HasValue && seasonNumber.HasValue && currentSeasonNumber.Value == seasonNumber.Value)
|
2016-05-24 15:48:53 -04:00
|
|
|
|
{
|
2016-06-08 01:24:25 -04:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
2016-05-24 15:48:53 -04:00
|
|
|
|
|
2016-06-08 01:24:25 -04:00
|
|
|
|
if (!currentSeasonNumber.HasValue && !seasonNumber.HasValue && parentSeason.LocationType == LocationType.Virtual)
|
|
|
|
|
|
{
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
2016-05-24 15:48:53 -04:00
|
|
|
|
|
2016-07-10 11:44:53 -04:00
|
|
|
|
var season = episode.Season;
|
|
|
|
|
|
return season != null && string.Equals(GetUniqueSeriesKey(season), seasonPresentationKey, StringComparison.OrdinalIgnoreCase);
|
2016-06-08 01:24:25 -04:00
|
|
|
|
});
|
2016-05-24 15:48:53 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2014-12-20 01:06:27 -05:00
|
|
|
|
protected override bool GetBlockUnratedValue(UserPolicy config)
|
2013-12-26 11:53:23 -05:00
|
|
|
|
{
|
2014-02-21 10:24:29 -05:00
|
|
|
|
return config.BlockUnratedItems.Contains(UnratedItem.Series);
|
2013-12-26 11:53:23 -05:00
|
|
|
|
}
|
2013-12-26 19:23:58 -05:00
|
|
|
|
|
2015-11-06 10:02:22 -05:00
|
|
|
|
public override UnratedItem GetBlockUnratedType()
|
|
|
|
|
|
{
|
|
|
|
|
|
return UnratedItem.Series;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-02-06 22:10:13 -05:00
|
|
|
|
public SeriesInfo GetLookupInfo()
|
|
|
|
|
|
{
|
2014-02-27 23:49:02 -05:00
|
|
|
|
var info = GetItemLookupInfo<SeriesInfo>();
|
|
|
|
|
|
|
|
|
|
|
|
info.AnimeSeriesIndex = AnimeSeriesIndex;
|
|
|
|
|
|
|
|
|
|
|
|
return info;
|
2014-02-06 22:10:13 -05:00
|
|
|
|
}
|
2014-02-13 00:11:54 -05:00
|
|
|
|
|
|
|
|
|
|
public override bool BeforeMetadataRefresh()
|
|
|
|
|
|
{
|
|
|
|
|
|
var hasChanges = base.BeforeMetadataRefresh();
|
|
|
|
|
|
|
|
|
|
|
|
if (!ProductionYear.HasValue)
|
|
|
|
|
|
{
|
2014-11-16 17:46:01 -05:00
|
|
|
|
var info = LibraryManager.ParseName(Name);
|
2014-02-13 00:11:54 -05:00
|
|
|
|
|
2014-11-16 17:46:01 -05:00
|
|
|
|
var yearInName = info.Year;
|
2014-02-13 00:11:54 -05:00
|
|
|
|
|
|
|
|
|
|
if (yearInName.HasValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
ProductionYear = yearInName;
|
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return hasChanges;
|
|
|
|
|
|
}
|
2016-05-31 11:38:47 -04: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/shows/{0}", imdbId)
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
|
}
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|