jellyfin/MediaBrowser.Controller/Resolvers/VideoResolver.cs

101 lines
3 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
2012-07-12 08:55:27 +02:00
using MediaBrowser.Model.Entities;
using MediaBrowser.Controller.IO;
2012-09-09 20:32:51 +02:00
using System.ComponentModel.Composition;
using System.IO;
2012-07-12 08:55:27 +02:00
namespace MediaBrowser.Controller.Resolvers
{
/// <summary>
/// Resolves a Path into a Video
/// </summary>
[Export(typeof(IBaseItemResolver))]
2012-07-12 08:55:27 +02:00
public class VideoResolver : BaseVideoResolver<Video>
{
public override ResolverPriority Priority
{
get { return ResolverPriority.Last; }
}
2012-07-12 08:55:27 +02:00
}
/// <summary>
/// Resolves a Path into a Video or Video subclass
/// </summary>
2012-07-12 08:55:27 +02:00
public abstract class BaseVideoResolver<T> : BaseItemResolver<T>
where T : Video, new()
{
protected override T Resolve(ItemResolveEventArgs args)
{
// If the path is a file check for a matching extensions
2012-08-21 16:42:40 +02:00
if (!args.IsDirectory)
2012-07-12 08:55:27 +02:00
{
if (FileSystemHelper.IsVideoFile(args.Path))
2012-07-12 08:55:27 +02:00
{
2012-08-23 21:15:36 +02:00
VideoType type = Path.GetExtension(args.Path).EndsWith("iso", System.StringComparison.OrdinalIgnoreCase) ? VideoType.Iso : VideoType.VideoFile;
2012-09-11 20:20:12 +02:00
return new T
2012-07-12 08:55:27 +02:00
{
VideoType = type,
2012-07-12 08:55:27 +02:00
Path = args.Path
};
}
}
else
{
// If the path is a folder, check if it's bluray or dvd
2012-07-12 08:55:27 +02:00
T item = ResolveFromFolderName(args.Path);
if (item != null)
{
return item;
}
// Also check the subfolders for bluray or dvd
for (int i = 0; i < args.FileSystemChildren.Length; i++)
2012-07-12 08:55:27 +02:00
{
var folder = args.FileSystemChildren[i];
if (!folder.IsDirectory)
2012-07-12 08:55:27 +02:00
{
continue;
}
item = ResolveFromFolderName(folder.Path);
2012-07-12 08:55:27 +02:00
if (item != null)
{
return item;
}
}
}
return null;
}
private T ResolveFromFolderName(string folder)
{
if (folder.IndexOf("video_ts", System.StringComparison.OrdinalIgnoreCase) != -1)
{
2012-09-11 20:20:12 +02:00
return new T
2012-07-12 08:55:27 +02:00
{
2012-09-11 20:20:12 +02:00
VideoType = VideoType.Dvd,
2012-07-12 08:55:27 +02:00
Path = Path.GetDirectoryName(folder)
};
}
if (folder.IndexOf("bdmv", System.StringComparison.OrdinalIgnoreCase) != -1)
{
2012-09-11 20:20:12 +02:00
return new T
2012-07-12 08:55:27 +02:00
{
VideoType = VideoType.BluRay,
Path = Path.GetDirectoryName(folder)
};
}
return null;
}
}
}