jellyfin/MediaBrowser.Server.Implementations/Library/Resolvers/VideoResolver.cs

58 lines
1.5 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
2014-11-16 21:44:08 +01:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
2014-11-16 21:44:08 +01:00
using MediaBrowser.Model.Entities;
using System;
using System.Linq;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Server.Implementations.Library.Resolvers
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Resolves a Path into a Video
/// </summary>
public class VideoResolver : BaseVideoResolver<Video>
2013-02-21 02:33:05 +01:00
{
2014-11-16 21:44:08 +01:00
public VideoResolver(ILibraryManager libraryManager)
: base(libraryManager)
{
}
protected override Video Resolve(ItemResolveArgs args)
{
if (args.Parent != null)
{
2014-12-03 04:13:03 +01:00
// The movie resolver will handle this
if (args.IsDirectory)
{
return null;
}
2014-11-16 21:44:08 +01:00
var collectionType = args.GetCollectionType() ?? string.Empty;
var accepted = new[]
{
string.Empty,
CollectionType.HomeVideos
};
if (!accepted.Contains(collectionType, StringComparer.OrdinalIgnoreCase))
{
return null;
}
}
return base.Resolve(args);
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the priority.
/// </summary>
/// <value>The priority.</value>
public override ResolverPriority Priority
{
get { return ResolverPriority.Last; }
}
}
}