You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
370 lines
12 KiB
370 lines
12 KiB
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Configuration;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Querying;
|
|
using MediaBrowser.Model.Users;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.Entities.TV
|
|
{
|
|
/// <summary>
|
|
/// Class Series
|
|
/// </summary>
|
|
public class Series : Folder, IHasSoundtracks, IHasTrailers, IHasDisplayOrder, IHasLookupInfo<SeriesInfo>, IHasSpecialFeatures, IMetadataContainer, IHasOriginalTitle
|
|
{
|
|
public List<Guid> SpecialFeatureIds { get; set; }
|
|
public List<Guid> SoundtrackIds { get; set; }
|
|
|
|
public string OriginalTitle { get; set; }
|
|
public int SeasonCount { get; set; }
|
|
|
|
public int? AnimeSeriesIndex { get; set; }
|
|
|
|
public Series()
|
|
{
|
|
AirDays = new List<DayOfWeek>();
|
|
|
|
SpecialFeatureIds = new List<Guid>();
|
|
SoundtrackIds = new List<Guid>();
|
|
RemoteTrailers = new List<MediaUrl>();
|
|
LocalTrailerIds = new List<Guid>();
|
|
RemoteTrailerIds = new List<Guid>();
|
|
DisplaySpecialsWithSeasons = true;
|
|
}
|
|
|
|
[IgnoreDataMember]
|
|
public override bool SupportsAddingToPlaylist
|
|
{
|
|
get { return true; }
|
|
}
|
|
|
|
[IgnoreDataMember]
|
|
public override bool IsPreSorted
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public bool DisplaySpecialsWithSeasons { get; set; }
|
|
|
|
public List<Guid> LocalTrailerIds { get; set; }
|
|
public List<Guid> RemoteTrailerIds { get; set; }
|
|
|
|
public List<MediaUrl> RemoteTrailers { get; set; }
|
|
|
|
/// <summary>
|
|
/// airdate, dvd or absolute
|
|
/// </summary>
|
|
public string DisplayOrder { get; set; }
|
|
|
|
/// <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; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the date last episode added.
|
|
/// </summary>
|
|
/// <value>The date last episode added.</value>
|
|
[IgnoreDataMember]
|
|
public DateTime DateLastEpisodeAdded
|
|
{
|
|
get
|
|
{
|
|
return GetRecursiveChildren(i => i is Episode)
|
|
.Select(i => i.DateCreated)
|
|
.OrderByDescending(i => i)
|
|
.FirstOrDefault();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Series aren't included directly in indices - Their Episodes will roll up to them
|
|
/// </summary>
|
|
/// <value><c>true</c> if [include in index]; otherwise, <c>false</c>.</value>
|
|
[IgnoreDataMember]
|
|
public override bool IncludeInIndex
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the user data key.
|
|
/// </summary>
|
|
/// <returns>System.String.</returns>
|
|
protected override string CreateUserDataKey()
|
|
{
|
|
return this.GetProviderId(MetadataProviders.Tvdb) ?? this.GetProviderId(MetadataProviders.Tvcom) ?? base.CreateUserDataKey();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the trailer ids.
|
|
/// </summary>
|
|
/// <returns>List<Guid>.</returns>
|
|
public List<Guid> GetTrailerIds()
|
|
{
|
|
var list = LocalTrailerIds.ToList();
|
|
list.AddRange(RemoteTrailerIds);
|
|
return list;
|
|
}
|
|
|
|
// Studio, Genre and Rating will all be the same so makes no sense to index by these
|
|
protected override IEnumerable<string> GetIndexByOptions()
|
|
{
|
|
return new List<string> {
|
|
{"None"},
|
|
{"Performer"},
|
|
{"Director"},
|
|
{"Year"},
|
|
};
|
|
}
|
|
|
|
[IgnoreDataMember]
|
|
public bool ContainsEpisodesWithoutSeasonFolders
|
|
{
|
|
get
|
|
{
|
|
return Children.OfType<Video>().Any();
|
|
}
|
|
}
|
|
|
|
public override IEnumerable<BaseItem> GetChildren(User user, bool includeLinkedChildren)
|
|
{
|
|
return GetSeasons(user);
|
|
}
|
|
|
|
public IEnumerable<Season> GetSeasons(User user)
|
|
{
|
|
var config = user.Configuration;
|
|
|
|
return GetSeasons(user, config.DisplayMissingEpisodes, config.DisplayUnairedEpisodes);
|
|
}
|
|
|
|
public IEnumerable<Season> GetSeasons(User user, bool includeMissingSeasons, bool includeVirtualUnaired)
|
|
{
|
|
var seasons = base.GetChildren(user, true)
|
|
.OfType<Season>();
|
|
|
|
if (!includeMissingSeasons && !includeVirtualUnaired)
|
|
{
|
|
seasons = seasons.Where(i => !i.IsMissingOrVirtualUnaired);
|
|
}
|
|
else
|
|
{
|
|
if (!includeMissingSeasons)
|
|
{
|
|
seasons = seasons.Where(i => !i.IsMissingSeason);
|
|
}
|
|
if (!includeVirtualUnaired)
|
|
{
|
|
seasons = seasons.Where(i => !i.IsVirtualUnaired);
|
|
}
|
|
}
|
|
|
|
return LibraryManager
|
|
.Sort(seasons, user, new[] { ItemSortBy.SortName }, SortOrder.Ascending)
|
|
.Cast<Season>();
|
|
}
|
|
|
|
public IEnumerable<Episode> GetEpisodes(User user)
|
|
{
|
|
var config = user.Configuration;
|
|
|
|
return GetEpisodes(user, config.DisplayMissingEpisodes, config.DisplayUnairedEpisodes);
|
|
}
|
|
|
|
public IEnumerable<Episode> GetEpisodes(User user, bool includeMissing, bool includeVirtualUnaired)
|
|
{
|
|
var allEpisodes = GetSeasons(user, true, true)
|
|
.SelectMany(i => i.GetEpisodes(user, includeMissing, includeVirtualUnaired))
|
|
.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
|
|
var returnList = new List<Episode>();
|
|
|
|
foreach (var episode in allEpisodes)
|
|
{
|
|
if (!returnList.Contains(episode))
|
|
{
|
|
returnList.Insert(0, episode);
|
|
}
|
|
}
|
|
|
|
return returnList;
|
|
}
|
|
|
|
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;
|
|
|
|
refreshOptions = new MetadataRefreshOptions(refreshOptions);
|
|
refreshOptions.IsPostRecursiveRefresh = true;
|
|
|
|
// Refresh current item
|
|
await RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
|
|
|
|
// Refresh TV
|
|
foreach (var item in seasons)
|
|
{
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
await item.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
|
|
|
|
numComplete++;
|
|
double percent = numComplete;
|
|
percent /= totalItems;
|
|
progress.Report(percent * 100);
|
|
}
|
|
|
|
// Refresh all non-songs
|
|
foreach (var item in otherItems)
|
|
{
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
await item.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
|
|
|
|
numComplete++;
|
|
double percent = numComplete;
|
|
percent /= totalItems;
|
|
progress.Report(percent * 100);
|
|
}
|
|
|
|
await ProviderManager.RefreshSingleItem(this, refreshOptions, cancellationToken).ConfigureAwait(false);
|
|
|
|
progress.Report(100);
|
|
}
|
|
|
|
public IEnumerable<Episode> GetEpisodes(User user, int seasonNumber)
|
|
{
|
|
var config = user.Configuration;
|
|
|
|
return GetEpisodes(user, seasonNumber, config.DisplayMissingEpisodes, config.DisplayUnairedEpisodes);
|
|
}
|
|
|
|
public IEnumerable<Episode> GetEpisodes(User user, int seasonNumber, bool includeMissingEpisodes, bool includeVirtualUnairedEpisodes)
|
|
{
|
|
return GetEpisodes(user, seasonNumber, includeMissingEpisodes, includeVirtualUnairedEpisodes,
|
|
new List<Episode>());
|
|
}
|
|
|
|
internal IEnumerable<Episode> GetEpisodes(User user, int seasonNumber, bool includeMissingEpisodes, bool includeVirtualUnairedEpisodes, IEnumerable<Episode> additionalEpisodes)
|
|
{
|
|
var episodes = GetRecursiveChildren(user, i => i is Episode)
|
|
.Cast<Episode>();
|
|
|
|
episodes = FilterEpisodesBySeason(episodes, seasonNumber, DisplaySpecialsWithSeasons);
|
|
|
|
episodes = episodes.Concat(additionalEpisodes).Distinct();
|
|
|
|
if (!includeMissingEpisodes)
|
|
{
|
|
episodes = episodes.Where(i => !i.IsMissingEpisode);
|
|
}
|
|
if (!includeVirtualUnairedEpisodes)
|
|
{
|
|
episodes = episodes.Where(i => !i.IsVirtualUnaired);
|
|
}
|
|
|
|
var sortBy = seasonNumber == 0 ? ItemSortBy.SortName : ItemSortBy.AiredEpisodeOrder;
|
|
|
|
return LibraryManager.Sort(episodes, user, new[] { sortBy }, SortOrder.Ascending)
|
|
.Cast<Episode>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Filters the episodes by season.
|
|
/// </summary>
|
|
/// <param name="episodes">The episodes.</param>
|
|
/// <param name="seasonNumber">The season number.</param>
|
|
/// <param name="includeSpecials">if set to <c>true</c> [include specials].</param>
|
|
/// <returns>IEnumerable{Episode}.</returns>
|
|
public static IEnumerable<Episode> FilterEpisodesBySeason(IEnumerable<Episode> episodes, int seasonNumber, bool includeSpecials)
|
|
{
|
|
if (!includeSpecials || seasonNumber < 1)
|
|
{
|
|
return episodes.Where(i => (i.PhysicalSeasonNumber ?? -1) == seasonNumber);
|
|
}
|
|
|
|
return episodes.Where(i =>
|
|
{
|
|
var episode = i;
|
|
|
|
if (episode != null)
|
|
{
|
|
var currentSeasonNumber = episode.AiredSeasonNumber;
|
|
|
|
return currentSeasonNumber.HasValue && currentSeasonNumber.Value == seasonNumber;
|
|
}
|
|
|
|
return false;
|
|
});
|
|
}
|
|
|
|
protected override bool GetBlockUnratedValue(UserPolicy config)
|
|
{
|
|
return config.BlockUnratedItems.Contains(UnratedItem.Series);
|
|
}
|
|
|
|
public SeriesInfo GetLookupInfo()
|
|
{
|
|
var info = GetItemLookupInfo<SeriesInfo>();
|
|
|
|
info.AnimeSeriesIndex = AnimeSeriesIndex;
|
|
|
|
return info;
|
|
}
|
|
|
|
public override bool BeforeMetadataRefresh()
|
|
{
|
|
var hasChanges = base.BeforeMetadataRefresh();
|
|
|
|
if (!ProductionYear.HasValue)
|
|
{
|
|
var info = LibraryManager.ParseName(Name);
|
|
|
|
var yearInName = info.Year;
|
|
|
|
if (yearInName.HasValue)
|
|
{
|
|
ProductionYear = yearInName;
|
|
hasChanges = true;
|
|
}
|
|
}
|
|
|
|
return hasChanges;
|
|
}
|
|
}
|
|
}
|