2014-12-03 22:24:41 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-01-20 23:10:58 -07:00
|
|
|
|
using System.Linq;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2013-03-02 23:58:04 -07:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Resolvers.TV
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2013-02-23 00:57:11 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class EpisodeResolver
|
|
|
|
|
/// </summary>
|
2013-03-03 09:53:58 -07:00
|
|
|
|
public class EpisodeResolver : BaseVideoResolver<Episode>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2014-11-16 13:44:08 -07:00
|
|
|
|
public EpisodeResolver(ILibraryManager libraryManager) : base(libraryManager)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-23 00:57:11 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves the specified args.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="args">The args.</param>
|
|
|
|
|
/// <returns>Episode.</returns>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
protected override Episode Resolve(ItemResolveArgs args)
|
|
|
|
|
{
|
2014-01-20 23:10:58 -07:00
|
|
|
|
var parent = args.Parent;
|
2014-01-22 10:05:06 -07:00
|
|
|
|
|
|
|
|
|
if (parent == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-20 23:10:58 -07:00
|
|
|
|
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)
|
|
|
|
|
{
|
2014-01-22 10:05:06 -07:00
|
|
|
|
season = parent.Parents.OfType<Season>().FirstOrDefault();
|
2014-01-20 23:10:58 -07:00
|
|
|
|
}
|
2013-05-19 10:05:33 -07:00
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
// If the parent is a Season or Series, then this is an Episode if the VideoResolver returns something
|
2014-12-18 21:20:07 -07:00
|
|
|
|
if (season != null || args.HasParent<Series>())
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2014-12-02 20:13:03 -07:00
|
|
|
|
var episode = ResolveVideo<Episode>(args, false);
|
2013-05-19 10:05:33 -07:00
|
|
|
|
|
2013-05-20 20:16:43 -07:00
|
|
|
|
return episode;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|