|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Xml;
|
|
|
|
|
using MediaBrowser.Common.Progress;
|
|
|
|
|
using MediaBrowser.Controller.IO;
|
|
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
|
using MediaBrowser.Model.Globalization;
|
|
|
|
|
using MediaBrowser.Model.Xml;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.TV
|
|
|
|
|
{
|
|
|
|
|
public class MissingEpisodeProvider
|
|
|
|
|
{
|
|
|
|
|
private readonly IServerConfigurationManager _config;
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
|
|
|
|
private readonly ILocalizationManager _localization;
|
|
|
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
|
|
|
|
|
|
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
|
|
|
|
|
private static readonly SemaphoreSlim ResourceLock = new SemaphoreSlim(1, 1);
|
|
|
|
|
public static bool IsRunning = false;
|
|
|
|
|
private readonly IXmlReaderSettingsFactory _xmlSettings;
|
|
|
|
|
|
|
|
|
|
public MissingEpisodeProvider(ILogger logger, IServerConfigurationManager config, ILibraryManager libraryManager, ILocalizationManager localization, IFileSystem fileSystem, IXmlReaderSettingsFactory xmlSettings)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_config = config;
|
|
|
|
|
_libraryManager = libraryManager;
|
|
|
|
|
_localization = localization;
|
|
|
|
|
_fileSystem = fileSystem;
|
|
|
|
|
_xmlSettings = xmlSettings;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task Run(List<IGrouping<string, Series>> series, bool addNewItems, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
await ResourceLock.WaitAsync(cancellationToken).ConfigureAwait(false);
|
|
|
|
|
IsRunning = true;
|
|
|
|
|
|
|
|
|
|
foreach (var seriesGroup in series)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
await Run(seriesGroup, addNewItems, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
catch (OperationCanceledException)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
catch (IOException ex)
|
|
|
|
|
{
|
|
|
|
|
//_logger.Warn("Series files missing for series id {0}", seriesGroup.Key);
|
|
|
|
|
_logger.ErrorException("Error in missing episode provider for series id {0}", ex, seriesGroup.Key);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.ErrorException("Error in missing episode provider for series id {0}", ex, seriesGroup.Key);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IsRunning = false;
|
|
|
|
|
ResourceLock.Release();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task Run(IGrouping<string, Series> group, bool addNewItems, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
var seriesList = group.ToList();
|
|
|
|
|
var tvdbId = seriesList
|
|
|
|
|
.Select(i => i.GetProviderId(MetadataProviders.Tvdb))
|
|
|
|
|
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
|
|
|
|
|
|
|
|
|
|
// Todo: Support series by imdb id
|
|
|
|
|
var seriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
seriesProviderIds[MetadataProviders.Tvdb.ToString()] = tvdbId;
|
|
|
|
|
|
|
|
|
|
var seriesDataPath = TvdbSeriesProvider.GetSeriesDataPath(_config.ApplicationPaths, seriesProviderIds);
|
|
|
|
|
|
|
|
|
|
// Doesn't have required provider id's
|
|
|
|
|
if (string.IsNullOrWhiteSpace(seriesDataPath))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check this in order to avoid logging an exception due to directory not existing
|
|
|
|
|
if (!_fileSystem.DirectoryExists(seriesDataPath))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var episodeFiles = _fileSystem.GetFilePaths(seriesDataPath)
|
|
|
|
|
.Where(i => string.Equals(Path.GetExtension(i), ".xml", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
.Select(Path.GetFileNameWithoutExtension)
|
|
|
|
|
.Where(i => i.StartsWith("episode-", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var episodeLookup = episodeFiles
|
|
|
|
|
.Select(i =>
|
|
|
|
|
{
|
|
|
|
|
var parts = i.Split('-');
|
|
|
|
|
|
|
|
|
|
if (parts.Length == 3)
|
|
|
|
|
{
|
|
|
|
|
int seasonNumber;
|
|
|
|
|
|
|
|
|
|
if (int.TryParse(parts[1], NumberStyles.Integer, _usCulture, out seasonNumber))
|
|
|
|
|
{
|
|
|
|
|
int episodeNumber;
|
|
|
|
|
|
|
|
|
|
if (int.TryParse(parts[2], NumberStyles.Integer, _usCulture, out episodeNumber))
|
|
|
|
|
{
|
|
|
|
|
return new Tuple<int, int>(seasonNumber, episodeNumber);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new Tuple<int, int>(-1, -1);
|
|
|
|
|
})
|
|
|
|
|
.Where(i => i.Item1 != -1 && i.Item2 != -1)
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var hasBadData = HasInvalidContent(seriesList);
|
|
|
|
|
|
|
|
|
|
// Be conservative here to avoid creating missing episodes for ones they already have
|
|
|
|
|
var addMissingEpisodes = !hasBadData && seriesList.All(i => _libraryManager.GetLibraryOptions(i).ImportMissingEpisodes);
|
|
|
|
|
|
|
|
|
|
var anySeasonsRemoved = await RemoveObsoleteOrMissingSeasons(seriesList, episodeLookup)
|
|
|
|
|
.ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
var anyEpisodesRemoved = await RemoveObsoleteOrMissingEpisodes(seriesList, episodeLookup, addMissingEpisodes)
|
|
|
|
|
.ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
var hasNewEpisodes = false;
|
|
|
|
|
|
|
|
|
|
if (addNewItems && seriesList.All(i => i.IsInternetMetadataEnabled()))
|
|
|
|
|
{
|
|
|
|
|
var seriesConfig = _config.Configuration.MetadataOptions.FirstOrDefault(i => string.Equals(i.ItemType, typeof(Series).Name, StringComparison.OrdinalIgnoreCase));
|
|
|
|
|
|
|
|
|
|
if (seriesConfig == null || !seriesConfig.DisabledMetadataFetchers.Contains(TvdbSeriesProvider.Current.Name, StringComparer.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
hasNewEpisodes = await AddMissingEpisodes(seriesList, addMissingEpisodes, seriesDataPath, episodeLookup, cancellationToken)
|
|
|
|
|
.ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (hasNewEpisodes || anySeasonsRemoved || anyEpisodesRemoved)
|
|
|
|
|
{
|
|
|
|
|
foreach (var series in seriesList)
|
|
|
|
|
{
|
|
|
|
|
var directoryService = new DirectoryService(_logger, _fileSystem);
|
|
|
|
|
|
|
|
|
|
await series.RefreshMetadata(new MetadataRefreshOptions(directoryService), cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
await series.ValidateChildren(new SimpleProgress<double>(), cancellationToken, new MetadataRefreshOptions(directoryService), true)
|
|
|
|
|
.ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns true if a series has any seasons or episodes without season or episode numbers
|
|
|
|
|
/// If this data is missing no virtual items will be added in order to prevent possible duplicates
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="group"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
private bool HasInvalidContent(IEnumerable<Series> group)
|
|
|
|
|
{
|
|
|
|
|
var allItems = group.ToList().SelectMany(i => i.GetRecursiveChildren()).ToList();
|
|
|
|
|
|
|
|
|
|
return allItems.OfType<Season>().Any(i => !i.IndexNumber.HasValue) ||
|
|
|
|
|
allItems.OfType<Episode>().Any(i =>
|
|
|
|
|
{
|
|
|
|
|
if (!i.ParentIndexNumber.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// You could have episodes under season 0 with no number
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Adds the missing episodes.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="series">The series.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
private async Task<bool> AddMissingEpisodes(List<Series> series,
|
|
|
|
|
bool addMissingEpisodes,
|
|
|
|
|
string seriesDataPath,
|
|
|
|
|
IEnumerable<Tuple<int, int>> episodeLookup,
|
|
|
|
|
CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
var existingEpisodes = (from s in series
|
|
|
|
|
from c in s.GetRecursiveChildren(i => i is Episode).Cast<Episode>()
|
|
|
|
|
select new Tuple<int, Episode>((c.ParentIndexNumber ?? 0) , c))
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var lookup = episodeLookup as IList<Tuple<int, int>> ?? episodeLookup.ToList();
|
|
|
|
|
|
|
|
|
|
var seasonCounts = (from e in lookup
|
|
|
|
|
group e by e.Item1 into g
|
|
|
|
|
select g)
|
|
|
|
|
.ToDictionary(g => g.Key, g => g.Count());
|
|
|
|
|
|
|
|
|
|
var hasChanges = false;
|
|
|
|
|
|
|
|
|
|
foreach (var tuple in lookup)
|
|
|
|
|
{
|
|
|
|
|
if (tuple.Item1 <= 0)
|
|
|
|
|
{
|
|
|
|
|
// Ignore season zeros
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tuple.Item2 <= 0)
|
|
|
|
|
{
|
|
|
|
|
// Ignore episode zeros
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var existingEpisode = GetExistingEpisode(existingEpisodes, seasonCounts, tuple);
|
|
|
|
|
|
|
|
|
|
if (existingEpisode != null)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var airDate = GetAirDate(seriesDataPath, tuple.Item1, tuple.Item2);
|
|
|
|
|
|
|
|
|
|
if (!airDate.HasValue)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var now = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
var targetSeries = DetermineAppropriateSeries(series, tuple.Item1);
|
|
|
|
|
|
|
|
|
|
var unairedThresholdDays = 2;
|
|
|
|
|
now = now.AddDays(0 - unairedThresholdDays);
|
|
|
|
|
|
|
|
|
|
if (airDate.Value < now)
|
|
|
|
|
{
|
|
|
|
|
if (addMissingEpisodes)
|
|
|
|
|
{
|
|
|
|
|
// tvdb has a lot of nearly blank episodes
|
|
|
|
|
_logger.Info("Creating virtual missing episode {0} {1}x{2}", targetSeries.Name, tuple.Item1, tuple.Item2);
|
|
|
|
|
await AddEpisode(targetSeries, tuple.Item1, tuple.Item2, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (airDate.Value > now)
|
|
|
|
|
{
|
|
|
|
|
// tvdb has a lot of nearly blank episodes
|
|
|
|
|
_logger.Info("Creating virtual unaired episode {0} {1}x{2}", targetSeries.Name, tuple.Item1, tuple.Item2);
|
|
|
|
|
await AddEpisode(targetSeries, tuple.Item1, tuple.Item2, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return hasChanges;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Series DetermineAppropriateSeries(List<Series> series, int seasonNumber)
|
|
|
|
|
{
|
|
|
|
|
if (series.Count == 1)
|
|
|
|
|
{
|
|
|
|
|
return series[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return series.FirstOrDefault(s => s.GetRecursiveChildren(i => i is Season).Any(season => (season.IndexNumber) == seasonNumber)) ??
|
|
|
|
|
series.FirstOrDefault(s => s.GetRecursiveChildren(i => i is Season).Any(season => (season.IndexNumber) == 1)) ??
|
|
|
|
|
series.OrderBy(s => s.GetRecursiveChildren(i => i is Season).Select(season => season.IndexNumber).Min()).First();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Removes the virtual entry after a corresponding physical version has been added
|
|
|
|
|
/// </summary>
|
|
|
|
|
private async Task<bool> RemoveObsoleteOrMissingEpisodes(IEnumerable<Series> series,
|
|
|
|
|
IEnumerable<Tuple<int, int>> episodeLookup,
|
|
|
|
|
bool allowMissingEpisodes)
|
|
|
|
|
{
|
|
|
|
|
var existingEpisodes = (from s in series
|
|
|
|
|
from c in s.GetRecursiveChildren(i => i is Episode).Cast<Episode>()
|
|
|
|
|
select new { Episode = c })
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var physicalEpisodes = existingEpisodes
|
|
|
|
|
.Where(i => i.Episode.LocationType != LocationType.Virtual)
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var virtualEpisodes = existingEpisodes
|
|
|
|
|
.Where(i => i.Episode.LocationType == LocationType.Virtual)
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var episodesToRemove = virtualEpisodes
|
|
|
|
|
.Where(i =>
|
|
|
|
|
{
|
|
|
|
|
if (i.Episode.IndexNumber.HasValue && i.Episode.ParentIndexNumber.HasValue)
|
|
|
|
|
{
|
|
|
|
|
var seasonNumber = i.Episode.ParentIndexNumber.Value;
|
|
|
|
|
var episodeNumber = i.Episode.IndexNumber.Value;
|
|
|
|
|
|
|
|
|
|
// If there's a physical episode with the same season and episode number, delete it
|
|
|
|
|
if (physicalEpisodes.Any(p =>
|
|
|
|
|
p.Episode.ParentIndexNumber.HasValue && (p.Episode.ParentIndexNumber.Value) == seasonNumber &&
|
|
|
|
|
p.Episode.ContainsEpisodeNumber(episodeNumber)))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If the episode no longer exists in the remote lookup, delete it
|
|
|
|
|
if (!episodeLookup.Any(e => e.Item1 == seasonNumber && e.Item2 == episodeNumber))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!allowMissingEpisodes && i.Episode.IsMissingEpisode)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
})
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var hasChanges = false;
|
|
|
|
|
|
|
|
|
|
foreach (var episodeToRemove in episodesToRemove.Select(e => e.Episode))
|
|
|
|
|
{
|
|
|
|
|
_logger.Info("Removing missing/unaired episode {0} {1}x{2}", episodeToRemove.Series.Name, episodeToRemove.ParentIndexNumber, episodeToRemove.IndexNumber);
|
|
|
|
|
|
|
|
|
|
await episodeToRemove.Delete(new DeleteOptions
|
|
|
|
|
{
|
|
|
|
|
DeleteFileLocation = true
|
|
|
|
|
|
|
|
|
|
}).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return hasChanges;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Removes the obsolete or missing seasons.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="series">The series.</param>
|
|
|
|
|
/// <param name="episodeLookup">The episode lookup.</param>
|
|
|
|
|
/// <returns>Task{System.Boolean}.</returns>
|
|
|
|
|
private async Task<bool> RemoveObsoleteOrMissingSeasons(IEnumerable<Series> series,
|
|
|
|
|
IEnumerable<Tuple<int, int>> episodeLookup)
|
|
|
|
|
{
|
|
|
|
|
var existingSeasons = (from s in series
|
|
|
|
|
from c in s.Children.OfType<Season>()
|
|
|
|
|
select c)
|
|
|
|
|
.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 && string.Equals(p.Series.PresentationUniqueKey, i.Series.PresentationUniqueKey, StringComparison.Ordinal)))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If the season no longer exists in the remote lookup, delete it
|
|
|
|
|
if (episodeLookup.All(e => e.Item1 != seasonNumber))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Season does not have a number
|
|
|
|
|
// Remove if there are no episodes directly in series without a season number
|
|
|
|
|
return i.Series.GetRecursiveChildren(e => e is Episode).Cast<Episode>().All(s => s.ParentIndexNumber.HasValue || s.IsInSeasonFolder);
|
|
|
|
|
})
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var hasChanges = false;
|
|
|
|
|
|
|
|
|
|
foreach (var seasonToRemove in seasonsToRemove)
|
|
|
|
|
{
|
|
|
|
|
_logger.Info("Removing virtual season {0} {1}", seasonToRemove.Series.Name, seasonToRemove.IndexNumber);
|
|
|
|
|
|
|
|
|
|
await seasonToRemove.Delete(new DeleteOptions
|
|
|
|
|
{
|
|
|
|
|
DeleteFileLocation = true
|
|
|
|
|
|
|
|
|
|
}).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
hasChanges = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return hasChanges;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Adds the episode.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="series">The series.</param>
|
|
|
|
|
/// <param name="seasonNumber">The season number.</param>
|
|
|
|
|
/// <param name="episodeNumber">The episode number.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
private async Task AddEpisode(Series series, int seasonNumber, int episodeNumber, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
var season = series.Children.OfType<Season>()
|
|
|
|
|
.FirstOrDefault(i => i.IndexNumber.HasValue && i.IndexNumber.Value == seasonNumber);
|
|
|
|
|
|
|
|
|
|
if (season == null)
|
|
|
|
|
{
|
|
|
|
|
var provider = new DummySeasonProvider(_config, _logger, _localization, _libraryManager, _fileSystem);
|
|
|
|
|
season = await provider.AddSeason(series, seasonNumber, true, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var name = string.Format("Episode {0}", episodeNumber.ToString(_usCulture));
|
|
|
|
|
|
|
|
|
|
var episode = new Episode
|
|
|
|
|
{
|
|
|
|
|
Name = name,
|
|
|
|
|
IndexNumber = episodeNumber,
|
|
|
|
|
ParentIndexNumber = seasonNumber,
|
|
|
|
|
Id = _libraryManager.GetNewItemId((series.Id + seasonNumber.ToString(_usCulture) + name), typeof(Episode)),
|
|
|
|
|
IsVirtualItem = true,
|
|
|
|
|
SeasonId = season == null ? (Guid?)null : season.Id,
|
|
|
|
|
SeriesId = series.Id
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
episode.SetParent(season);
|
|
|
|
|
|
|
|
|
|
await season.AddChild(episode, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
await episode.RefreshMetadata(new MetadataRefreshOptions(_fileSystem), cancellationToken).ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the existing episode.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="existingEpisodes">The existing episodes.</param>
|
|
|
|
|
/// <param name="seasonCounts"></param>
|
|
|
|
|
/// <param name="tuple">The tuple.</param>
|
|
|
|
|
/// <returns>Episode.</returns>
|
|
|
|
|
private Episode GetExistingEpisode(IList<Tuple<int, Episode>> existingEpisodes, Dictionary<int, int> seasonCounts, Tuple<int, int> tuple)
|
|
|
|
|
{
|
|
|
|
|
var s = tuple.Item1;
|
|
|
|
|
var e = tuple.Item2;
|
|
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
var episode = GetExistingEpisode(existingEpisodes, s, e);
|
|
|
|
|
if (episode != null)
|
|
|
|
|
return episode;
|
|
|
|
|
|
|
|
|
|
s--;
|
|
|
|
|
|
|
|
|
|
if (seasonCounts.ContainsKey(s))
|
|
|
|
|
e += seasonCounts[s];
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static Episode GetExistingEpisode(IEnumerable<Tuple<int, Episode>> existingEpisodes, int season, int episode)
|
|
|
|
|
{
|
|
|
|
|
return existingEpisodes
|
|
|
|
|
.Where(i => i.Item1 == season && i.Item2.ContainsEpisodeNumber(episode))
|
|
|
|
|
.Select(i => i.Item2)
|
|
|
|
|
.FirstOrDefault();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the air date.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="seriesDataPath">The series data path.</param>
|
|
|
|
|
/// <param name="seasonNumber">The season number.</param>
|
|
|
|
|
/// <param name="episodeNumber">The episode number.</param>
|
|
|
|
|
/// <returns>System.Nullable{DateTime}.</returns>
|
|
|
|
|
private DateTime? GetAirDate(string seriesDataPath, int seasonNumber, int episodeNumber)
|
|
|
|
|
{
|
|
|
|
|
// First open up the tvdb xml file and make sure it has valid data
|
|
|
|
|
var filename = string.Format("episode-{0}-{1}.xml", seasonNumber.ToString(_usCulture), episodeNumber.ToString(_usCulture));
|
|
|
|
|
|
|
|
|
|
var xmlPath = Path.Combine(seriesDataPath, filename);
|
|
|
|
|
|
|
|
|
|
DateTime? airDate = null;
|
|
|
|
|
|
|
|
|
|
using (var fileStream = _fileSystem.GetFileStream(xmlPath, FileOpenMode.Open, FileAccessMode.Read, FileShareMode.Read))
|
|
|
|
|
{
|
|
|
|
|
// It appears the best way to filter out invalid entries is to only include those with valid air dates
|
|
|
|
|
using (var streamReader = new StreamReader(fileStream, Encoding.UTF8))
|
|
|
|
|
{
|
|
|
|
|
var settings = _xmlSettings.Create(false);
|
|
|
|
|
|
|
|
|
|
settings.CheckCharacters = false;
|
|
|
|
|
settings.IgnoreProcessingInstructions = true;
|
|
|
|
|
settings.IgnoreComments = true;
|
|
|
|
|
|
|
|
|
|
// Use XmlReader for best performance
|
|
|
|
|
using (var reader = XmlReader.Create(streamReader, settings))
|
|
|
|
|
{
|
|
|
|
|
reader.MoveToContent();
|
|
|
|
|
reader.Read();
|
|
|
|
|
|
|
|
|
|
// Loop through each element
|
|
|
|
|
while (!reader.EOF && reader.ReadState == ReadState.Interactive)
|
|
|
|
|
{
|
|
|
|
|
if (reader.NodeType == XmlNodeType.Element)
|
|
|
|
|
{
|
|
|
|
|
switch (reader.Name)
|
|
|
|
|
{
|
|
|
|
|
case "EpisodeName":
|
|
|
|
|
{
|
|
|
|
|
var val = reader.ReadElementContentAsString();
|
|
|
|
|
if (string.IsNullOrWhiteSpace(val))
|
|
|
|
|
{
|
|
|
|
|
// Not valid, ignore these
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case "FirstAired":
|
|
|
|
|
{
|
|
|
|
|
var val = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(val))
|
|
|
|
|
{
|
|
|
|
|
DateTime date;
|
|
|
|
|
if (DateTime.TryParse(val, out date))
|
|
|
|
|
{
|
|
|
|
|
airDate = date.ToUniversalTime();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
{
|
|
|
|
|
reader.Skip();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
reader.Read();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return airDate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|