jellyfin/MediaBrowser.Server.Implementations/Library/Resolvers/TV/EpisodeResolver.cs

87 lines
2.6 KiB
C#
Raw Normal View History

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;
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
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>
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-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-22 17:05:06 +00:00
if (season != null || parent.Parents.OfType<Series>().Any())
2013-02-21 01:33:05 +00:00
{
Episode episode = null;
2013-02-21 01:33:05 +00:00
if (args.IsDirectory)
{
if (args.ContainsFileSystemEntryByName("video_ts"))
{
episode = new Episode
{
Path = args.Path,
VideoType = VideoType.Dvd
};
2013-02-21 01:33:05 +00:00
}
if (args.ContainsFileSystemEntryByName("bdmv"))
{
episode = new Episode
{
Path = args.Path,
VideoType = VideoType.BluRay
};
2013-02-21 01:33:05 +00:00
}
}
if (episode == null)
{
episode = base.Resolve(args);
}
if (episode != null)
{
if (season != null)
{
episode.ParentIndexNumber = season.IndexNumber;
}
if (episode.ParentIndexNumber == null)
{
episode.ParentIndexNumber = TVUtils.GetSeasonNumberFromEpisodeFile(args.Path);
}
}
return episode;
2013-02-21 01:33:05 +00:00
}
return null;
}
}
}