2013-02-23 07:57:11 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-03-03 16:53:58 +00:00
|
|
|
|
using MediaBrowser.Controller.Resolvers;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-01-21 06:10:58 +00:00
|
|
|
|
using System.Linq;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-03-03 06:58:04 +00:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Resolvers.TV
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-23 07:57:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class EpisodeResolver
|
|
|
|
|
/// </summary>
|
2013-03-03 16:53:58 +00:00
|
|
|
|
public class EpisodeResolver : BaseVideoResolver<Episode>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-23 07:57:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves the specified args.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="args">The args.</param>
|
|
|
|
|
/// <returns>Episode.</returns>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
protected override Episode Resolve(ItemResolveArgs args)
|
|
|
|
|
{
|
2014-01-21 06:10:58 +00:00
|
|
|
|
var parent = args.Parent;
|
2014-01-22 17:05:06 +00:00
|
|
|
|
|
|
|
|
|
if (parent == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-21 06:10:58 +00: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 17:05:06 +00:00
|
|
|
|
season = parent.Parents.OfType<Season>().FirstOrDefault();
|
2014-01-21 06:10:58 +00:00
|
|
|
|
}
|
2013-05-19 17:05:33 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
// If the parent is a Season or Series, then this is an Episode if the VideoResolver returns something
|
2014-01-25 02:28:35 +00:00
|
|
|
|
if (season != null || parent is Series || parent.Parents.OfType<Series>().Any())
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
Episode episode = null;
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
if (args.IsDirectory)
|
|
|
|
|
{
|
|
|
|
|
if (args.ContainsFileSystemEntryByName("video_ts"))
|
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
episode = new Episode
|
2013-05-19 17:05:33 +00:00
|
|
|
|
{
|
|
|
|
|
Path = args.Path,
|
|
|
|
|
VideoType = VideoType.Dvd
|
|
|
|
|
};
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
if (args.ContainsFileSystemEntryByName("bdmv"))
|
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
episode = new Episode
|
2013-05-19 17:05:33 +00:00
|
|
|
|
{
|
|
|
|
|
Path = args.Path,
|
|
|
|
|
VideoType = VideoType.BluRay
|
|
|
|
|
};
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
if (episode == null)
|
|
|
|
|
{
|
|
|
|
|
episode = base.Resolve(args);
|
|
|
|
|
}
|
2013-05-19 17:05:33 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
if (episode != null)
|
2013-05-19 17:05:33 +00:00
|
|
|
|
{
|
2013-12-03 21:12:20 +00:00
|
|
|
|
if (season != null)
|
|
|
|
|
{
|
|
|
|
|
episode.ParentIndexNumber = season.IndexNumber;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
if (episode.ParentIndexNumber == null)
|
|
|
|
|
{
|
|
|
|
|
episode.ParentIndexNumber = TVUtils.GetSeasonNumberFromEpisodeFile(args.Path);
|
|
|
|
|
}
|
2013-05-19 17:05:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
return episode;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|