2016-03-27 21:11:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2015-01-14 04:20:30 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2015-01-17 18:15:09 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2015-01-14 04:20:30 +00:00
|
|
|
|
using MediaBrowser.Controller.Localization;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2015-01-17 18:15:09 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2015-01-14 04:20:30 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
using CommonIO;
|
2015-01-14 04:20:30 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.TV
|
|
|
|
|
{
|
|
|
|
|
public class DummySeasonProvider
|
|
|
|
|
{
|
|
|
|
|
private readonly IServerConfigurationManager _config;
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly ILocalizationManager _localization;
|
2015-01-17 18:15:09 +00:00
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2015-09-13 23:07:54 +00:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2015-01-14 04:20:30 +00:00
|
|
|
|
|
|
|
|
|
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
|
|
|
|
|
|
2015-09-13 23:07:54 +00:00
|
|
|
|
public DummySeasonProvider(IServerConfigurationManager config, ILogger logger, ILocalizationManager localization, ILibraryManager libraryManager, IFileSystem fileSystem)
|
2015-01-14 04:20:30 +00:00
|
|
|
|
{
|
|
|
|
|
_config = config;
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_localization = localization;
|
2015-01-17 18:15:09 +00:00
|
|
|
|
_libraryManager = libraryManager;
|
2015-09-13 23:07:54 +00:00
|
|
|
|
_fileSystem = fileSystem;
|
2015-01-14 04:20:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task Run(Series series, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2015-01-17 18:15:09 +00:00
|
|
|
|
await RemoveObsoleteSeasons(series).ConfigureAwait(false);
|
|
|
|
|
|
2015-01-14 04:20:30 +00:00
|
|
|
|
var hasNewSeasons = await AddDummySeasonFolders(series, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
if (hasNewSeasons)
|
|
|
|
|
{
|
2016-04-27 19:41:12 +00:00
|
|
|
|
//var directoryService = new DirectoryService(_fileSystem);
|
2015-01-14 04:20:30 +00:00
|
|
|
|
|
|
|
|
|
//await series.RefreshMetadata(new MetadataRefreshOptions(directoryService), cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
//await series.ValidateChildren(new Progress<double>(), cancellationToken, new MetadataRefreshOptions(directoryService))
|
|
|
|
|
// .ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task<bool> AddDummySeasonFolders(Series series, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2015-01-25 06:34:50 +00:00
|
|
|
|
var episodesInSeriesFolder = series.GetRecursiveChildren()
|
2015-01-14 04:20:30 +00:00
|
|
|
|
.OfType<Episode>()
|
|
|
|
|
.Where(i => !i.IsInSeasonFolder)
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var hasChanges = false;
|
|
|
|
|
|
|
|
|
|
// Loop through the unique season numbers
|
|
|
|
|
foreach (var seasonNumber in episodesInSeriesFolder.Select(i => i.ParentIndexNumber ?? -1)
|
|
|
|
|
.Where(i => i >= 0)
|
|
|
|
|
.Distinct()
|
|
|
|
|
.ToList())
|
|
|
|
|
{
|
|
|
|
|
var hasSeason = series.Children.OfType<Season>()
|
|
|
|
|
.Any(i => i.IndexNumber.HasValue && i.IndexNumber.Value == seasonNumber);
|
|
|
|
|
|
|
|
|
|
if (!hasSeason)
|
|
|
|
|
{
|
2016-05-20 19:45:04 +00:00
|
|
|
|
await AddSeason(series, seasonNumber, false, cancellationToken).ConfigureAwait(false);
|
2015-01-14 04:20:30 +00:00
|
|
|
|
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Unknown season - create a dummy season to put these under
|
|
|
|
|
if (episodesInSeriesFolder.Any(i => !i.ParentIndexNumber.HasValue))
|
|
|
|
|
{
|
|
|
|
|
var hasSeason = series.Children.OfType<Season>()
|
|
|
|
|
.Any(i => !i.IndexNumber.HasValue);
|
|
|
|
|
|
|
|
|
|
if (!hasSeason)
|
|
|
|
|
{
|
2016-05-20 19:45:04 +00:00
|
|
|
|
await AddSeason(series, null, false, cancellationToken).ConfigureAwait(false);
|
2015-01-14 04:20:30 +00:00
|
|
|
|
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return hasChanges;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Adds the season.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public async Task<Season> AddSeason(Series series,
|
|
|
|
|
int? seasonNumber,
|
2016-05-20 21:32:43 +00:00
|
|
|
|
bool isVirtualItem,
|
2015-01-14 04:20:30 +00:00
|
|
|
|
CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
var seasonName = seasonNumber == 0 ?
|
|
|
|
|
_config.Configuration.SeasonZeroDisplayName :
|
|
|
|
|
(seasonNumber.HasValue ? string.Format(_localization.GetLocalizedString("NameSeasonNumber"), seasonNumber.Value.ToString(_usCulture)) : _localization.GetLocalizedString("NameSeasonUnknown"));
|
|
|
|
|
|
|
|
|
|
_logger.Info("Creating Season {0} entry for {1}", seasonName, series.Name);
|
|
|
|
|
|
|
|
|
|
var season = new Season
|
|
|
|
|
{
|
|
|
|
|
Name = seasonName,
|
|
|
|
|
IndexNumber = seasonNumber,
|
2016-05-20 19:45:04 +00:00
|
|
|
|
Id = _libraryManager.GetNewItemId((series.Id + (seasonNumber ?? -1).ToString(_usCulture) + seasonName), typeof(Season)),
|
2016-07-09 17:39:04 +00:00
|
|
|
|
IsVirtualItem = isVirtualItem,
|
|
|
|
|
SeriesId = series.Id
|
2015-01-14 04:20:30 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-07-09 05:52:25 +00:00
|
|
|
|
season.SetParent(series);
|
|
|
|
|
|
2015-01-14 04:20:30 +00:00
|
|
|
|
await series.AddChild(season, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
2015-09-13 21:32:02 +00:00
|
|
|
|
await season.RefreshMetadata(new MetadataRefreshOptions(_fileSystem), cancellationToken).ConfigureAwait(false);
|
2015-01-14 04:20:30 +00:00
|
|
|
|
|
|
|
|
|
return season;
|
|
|
|
|
}
|
2015-01-17 18:15:09 +00:00
|
|
|
|
|
|
|
|
|
private async Task<bool> RemoveObsoleteSeasons(Series series)
|
|
|
|
|
{
|
|
|
|
|
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();
|
|
|
|
|
|
2015-01-25 06:34:50 +00:00
|
|
|
|
var episodes = series.GetRecursiveChildren().OfType<Episode>().ToList();
|
2015-01-17 18:15:09 +00:00
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If there are no episodes with this season number, delete it
|
|
|
|
|
if (episodes.All(e => !e.ParentIndexNumber.HasValue || e.ParentIndexNumber.Value != seasonNumber))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Season does not have a number
|
|
|
|
|
// Remove if there are no episodes directly in series without a season number
|
2016-04-27 19:41:12 +00:00
|
|
|
|
return episodes.All(s => s.ParentIndexNumber.HasValue || s.IsInSeasonFolder);
|
2015-01-17 18:15:09 +00:00
|
|
|
|
})
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var hasChanges = false;
|
|
|
|
|
|
|
|
|
|
foreach (var seasonToRemove in seasonsToRemove)
|
|
|
|
|
{
|
|
|
|
|
_logger.Info("Removing virtual season {0} {1}", seasonToRemove.Series.Name, seasonToRemove.IndexNumber);
|
|
|
|
|
|
2016-02-12 04:54:00 +00:00
|
|
|
|
await seasonToRemove.Delete(new DeleteOptions
|
|
|
|
|
{
|
|
|
|
|
DeleteFileLocation = true
|
|
|
|
|
|
|
|
|
|
}).ConfigureAwait(false);
|
2015-01-17 18:15:09 +00:00
|
|
|
|
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return hasChanges;
|
|
|
|
|
}
|
2015-01-14 04:20:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|