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;
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var season = args.Parent as Season;
|
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
|
2013-05-21 03:16:43 +00:00
|
|
|
|
if (season != null || args.Parent is Series)
|
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-05-21 03:16:43 +00:00
|
|
|
|
if (season != null)
|
|
|
|
|
{
|
|
|
|
|
episode.ParentIndexNumber = season.IndexNumber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|