|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Resolvers.TV
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class EpisodeResolver
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class EpisodeResolver : BaseVideoResolver<Episode>
|
|
|
|
|
{
|
|
|
|
|
public EpisodeResolver(ILibraryManager libraryManager) : base(libraryManager)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves the specified args.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="args">The args.</param>
|
|
|
|
|
/// <returns>Episode.</returns>
|
|
|
|
|
protected override Episode Resolve(ItemResolveArgs args)
|
|
|
|
|
{
|
|
|
|
|
var parent = args.Parent;
|
|
|
|
|
|
|
|
|
|
if (parent == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var season = parent as Season;
|
|
|
|
|
|
|
|
|
|
// Just in case the user decided to nest episodes.
|
|
|
|
|
// Not officially supported but in some cases we can handle it.
|
|
|
|
|
if (season == null)
|
|
|
|
|
{
|
|
|
|
|
season = parent.GetParents().OfType<Season>().FirstOrDefault();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If the parent is a Season or Series, then this is an Episode if the VideoResolver returns something
|
|
|
|
|
if (season != null || args.HasParent<Series>())
|
|
|
|
|
{
|
|
|
|
|
var episode = ResolveVideo<Episode>(args, false);
|
|
|
|
|
|
|
|
|
|
return episode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|