mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 18:47:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Controller.Entities;
 | |
| using MediaBrowser.Controller.Library;
 | |
| using MediaBrowser.Controller.Resolvers;
 | |
| using MediaBrowser.Model.IO;
 | |
| 
 | |
| namespace Emby.Server.Implementations.Library.Resolvers
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Resolves a Path into a Video
 | |
|     /// </summary>
 | |
|     public class VideoResolver : BaseVideoResolver<Video>
 | |
|     {
 | |
|         protected override Video Resolve(ItemResolveArgs args)
 | |
|         {
 | |
|             if (args.Parent != null)
 | |
|             {
 | |
|                 // The movie resolver will handle this
 | |
|                 return null;
 | |
|             }
 | |
| 
 | |
|             return base.Resolve(args);
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the priority.
 | |
|         /// </summary>
 | |
|         /// <value>The priority.</value>
 | |
|         public override ResolverPriority Priority
 | |
|         {
 | |
|             get { return ResolverPriority.Last; }
 | |
|         }
 | |
| 
 | |
|         public VideoResolver(ILibraryManager libraryManager, IFileSystem fileSystem) : base(libraryManager, fileSystem)
 | |
|         {
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public class GenericVideoResolver<T> : BaseVideoResolver<T>
 | |
|         where T : Video, new ()
 | |
|     {
 | |
|         public GenericVideoResolver(ILibraryManager libraryManager, IFileSystem fileSystem) : base(libraryManager, fileSystem)
 | |
|         {
 | |
|         }
 | |
|     }
 | |
| }
 |