jellyfin/MediaBrowser.Providers/TV/DummySeasonProvider.cs

227 lines
7.7 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System.Collections.Generic;
2015-01-14 05:20:30 +01:00
using System.Globalization;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
2016-10-24 04:45:23 +02:00
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
2015-01-14 05:20:30 +01:00
namespace MediaBrowser.Providers.TV
{
public class DummySeasonProvider
{
private readonly ILogger _logger;
private readonly ILocalizationManager _localization;
2015-01-17 19:15:09 +01:00
private readonly ILibraryManager _libraryManager;
2015-09-14 01:07:54 +02:00
private readonly IFileSystem _fileSystem;
2015-01-14 05:20:30 +01:00
2019-09-10 22:37:53 +02:00
public DummySeasonProvider(
ILogger logger,
ILocalizationManager localization,
ILibraryManager libraryManager,
IFileSystem fileSystem)
2015-01-14 05:20:30 +01:00
{
_logger = logger;
_localization = localization;
2015-01-17 19:15:09 +01:00
_libraryManager = libraryManager;
2015-09-14 01:07:54 +02:00
_fileSystem = fileSystem;
2015-01-14 05:20:30 +01:00
}
2018-09-12 19:26:21 +02:00
public async Task<bool> Run(Series series, CancellationToken cancellationToken)
2015-01-14 05:20:30 +01:00
{
2018-09-12 19:26:21 +02:00
var seasonsRemoved = RemoveObsoleteSeasons(series);
2015-01-14 05:20:30 +01:00
var hasNewSeasons = await AddDummySeasonFolders(series, cancellationToken).ConfigureAwait(false);
if (hasNewSeasons)
{
2020-06-14 11:11:11 +02:00
// var directoryService = new DirectoryService(_fileSystem);
2015-01-14 05:20:30 +01:00
2020-06-14 11:11:11 +02:00
// await series.RefreshMetadata(new MetadataRefreshOptions(directoryService), cancellationToken).ConfigureAwait(false);
2015-01-14 05:20:30 +01:00
2020-06-14 11:11:11 +02:00
// await series.ValidateChildren(new SimpleProgress<double>(), cancellationToken, new MetadataRefreshOptions(directoryService))
2015-01-14 05:20:30 +01:00
// .ConfigureAwait(false);
}
2018-09-12 19:26:21 +02:00
return seasonsRemoved || hasNewSeasons;
2015-01-14 05:20:30 +01:00
}
private async Task<bool> AddDummySeasonFolders(Series series, CancellationToken cancellationToken)
{
2017-04-27 20:12:44 +02:00
var episodesInSeriesFolder = series.GetRecursiveChildren(i => i is Episode)
.Cast<Episode>()
2015-01-14 05:20:30 +01:00
.Where(i => !i.IsInSeasonFolder)
.ToList();
var hasChanges = false;
2018-09-12 19:26:21 +02:00
List<Season> seasons = null;
2015-01-14 05:20:30 +01:00
// Loop through the unique season numbers
foreach (var seasonNumber in episodesInSeriesFolder.Select(i => i.ParentIndexNumber ?? -1)
.Where(i => i >= 0)
.Distinct()
.ToList())
{
2018-09-12 19:26:21 +02:00
if (seasons == null)
{
seasons = series.Children.OfType<Season>().ToList();
}
2020-06-15 23:43:52 +02:00
2018-09-12 19:26:21 +02:00
var existingSeason = seasons
2017-01-14 04:48:25 +01:00
.FirstOrDefault(i => i.IndexNumber.HasValue && i.IndexNumber.Value == seasonNumber);
2015-01-14 05:20:30 +01:00
2017-01-14 04:48:25 +01:00
if (existingSeason == null)
2015-01-14 05:20:30 +01:00
{
2016-05-20 21:45:04 +02:00
await AddSeason(series, seasonNumber, false, cancellationToken).ConfigureAwait(false);
2015-01-14 05:20:30 +01:00
hasChanges = true;
2018-09-12 19:26:21 +02:00
seasons = null;
2015-01-14 05:20:30 +01:00
}
2017-01-14 04:48:25 +01:00
else if (existingSeason.IsVirtualItem)
{
existingSeason.IsVirtualItem = false;
2017-10-03 20:39:37 +02:00
existingSeason.UpdateToRepository(ItemUpdateType.MetadataEdit, cancellationToken);
2018-09-12 19:26:21 +02:00
seasons = null;
2017-01-14 04:48:25 +01:00
}
2015-01-14 05:20:30 +01:00
}
// Unknown season - create a dummy season to put these under
if (episodesInSeriesFolder.Any(i => !i.ParentIndexNumber.HasValue))
{
2018-09-12 19:26:21 +02:00
if (seasons == null)
{
seasons = series.Children.OfType<Season>().ToList();
}
var existingSeason = seasons
2017-01-14 04:48:25 +01:00
.FirstOrDefault(i => !i.IndexNumber.HasValue);
2015-01-14 05:20:30 +01:00
2017-01-14 04:48:25 +01:00
if (existingSeason == null)
2015-01-14 05:20:30 +01:00
{
2016-05-20 21:45:04 +02:00
await AddSeason(series, null, false, cancellationToken).ConfigureAwait(false);
2015-01-14 05:20:30 +01:00
hasChanges = true;
2018-09-12 19:26:21 +02:00
seasons = null;
2015-01-14 05:20:30 +01:00
}
2017-01-14 04:48:25 +01:00
else if (existingSeason.IsVirtualItem)
{
existingSeason.IsVirtualItem = false;
2017-10-03 20:39:37 +02:00
existingSeason.UpdateToRepository(ItemUpdateType.MetadataEdit, cancellationToken);
2018-09-12 19:26:21 +02:00
seasons = null;
2017-01-14 04:48:25 +01:00
}
2015-01-14 05:20:30 +01:00
}
return hasChanges;
}
/// <summary>
/// Adds the season.
/// </summary>
public async Task<Season> AddSeason(Series series,
int? seasonNumber,
2016-05-20 23:32:43 +02:00
bool isVirtualItem,
2015-01-14 05:20:30 +01:00
CancellationToken cancellationToken)
{
2019-10-11 18:16:42 +02:00
string seasonName;
if (seasonNumber == null)
{
2019-11-01 16:42:47 +01:00
seasonName = _localization.GetLocalizedString("NameSeasonUnknown");
2019-10-11 18:16:42 +02:00
}
else if (seasonNumber == 0)
{
seasonName = _libraryManager.GetLibraryOptions(series).SeasonZeroDisplayName;
}
else
{
seasonName = string.Format(
CultureInfo.InvariantCulture,
_localization.GetLocalizedString("NameSeasonNumber"),
seasonNumber.Value);
}
2015-01-14 05:20:30 +01:00
_logger.LogInformation("Creating Season {0} entry for {1}", seasonName, series.Name);
2015-01-14 05:20:30 +01:00
var season = new Season
{
Name = seasonName,
IndexNumber = seasonNumber,
2019-09-10 22:37:53 +02:00
Id = _libraryManager.GetNewItemId(
series.Id + (seasonNumber ?? -1).ToString(CultureInfo.InvariantCulture) + seasonName,
typeof(Season)),
2016-07-09 19:39:04 +02:00
IsVirtualItem = isVirtualItem,
2016-08-19 19:43:16 +02:00
SeriesId = series.Id,
2017-05-05 19:55:38 +02:00
SeriesName = series.Name
2015-01-14 05:20:30 +01:00
};
2015-07-09 07:52:25 +02:00
season.SetParent(series);
series.AddChild(season, cancellationToken);
2015-01-14 05:20:30 +01:00
2019-09-10 22:37:53 +02:00
await season.RefreshMetadata(new MetadataRefreshOptions(new DirectoryService(_fileSystem)), cancellationToken).ConfigureAwait(false);
2015-01-14 05:20:30 +01:00
return season;
}
2015-01-17 19:15:09 +01:00
2018-09-12 19:26:21 +02:00
private bool RemoveObsoleteSeasons(Series series)
2015-01-17 19:15:09 +01:00
{
var existingSeasons = series.Children.OfType<Season>().ToList();
var physicalSeasons = existingSeasons
.Where(i => i.LocationType != LocationType.Virtual)
.ToList();
var virtualSeasons = existingSeasons
.Where(i => i.LocationType == LocationType.Virtual)
.ToList();
var seasonsToRemove = virtualSeasons
.Where(i =>
{
if (i.IndexNumber.HasValue)
{
var seasonNumber = i.IndexNumber.Value;
// If there's a physical season with the same number, delete it
if (physicalSeasons.Any(p => p.IndexNumber.HasValue && (p.IndexNumber.Value == seasonNumber)))
{
return true;
}
2016-09-03 20:18:59 +02:00
}
2015-01-17 19:15:09 +01:00
2016-09-03 20:18:59 +02:00
// If there are no episodes with this season number, delete it
if (!i.GetEpisodes().Any())
{
return true;
2015-01-17 19:15:09 +01:00
}
2016-09-03 20:18:59 +02:00
return false;
2015-01-17 19:15:09 +01:00
})
.ToList();
var hasChanges = false;
foreach (var seasonToRemove in seasonsToRemove)
{
_logger.LogInformation("Removing virtual season {0} {1}", series.Name, seasonToRemove.IndexNumber);
2015-01-17 19:15:09 +01:00
2018-09-12 19:26:21 +02:00
_libraryManager.DeleteItem(seasonToRemove, new DeleteOptions
2016-02-12 05:54:00 +01:00
{
DeleteFileLocation = true
2018-09-12 19:26:21 +02:00
}, false);
2015-01-17 19:15:09 +01:00
hasChanges = true;
}
return hasChanges;
}
2015-01-14 05:20:30 +01:00
}
}