jellyfin/MediaBrowser.Server.Implementations/Library/CoreResolutionIgnoreRule.cs

130 lines
4.5 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Entities;
2013-04-24 12:03:10 -04:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
2013-02-20 20:33:05 -05:00
using System;
using System.Collections.Generic;
using System.IO;
2013-02-20 20:33:05 -05:00
using System.Linq;
namespace MediaBrowser.Server.Implementations.Library
2013-02-20 20:33:05 -05:00
{
/// <summary>
/// Provides the core resolver ignore rules
/// </summary>
public class CoreResolutionIgnoreRule : IResolverIgnoreRule
2013-02-20 20:33:05 -05:00
{
/// <summary>
/// Any folder named in this list will be ignored - can be added to at runtime for extensibility
/// </summary>
2013-07-20 10:57:48 -04:00
private static readonly Dictionary<string,string> IgnoreFolders = new List<string>
2013-02-20 20:33:05 -05:00
{
"metadata",
"certificate",
"backup",
"ps3_update",
"ps3_vprm",
"adv_obj",
2013-10-15 18:16:50 -04:00
"extrafanart",
2013-11-09 13:43:53 -05:00
"extrathumbs",
".actors"
2013-02-20 20:33:05 -05:00
2013-07-20 10:57:48 -04:00
}.ToDictionary(i => i, StringComparer.OrdinalIgnoreCase);
2013-05-26 21:24:56 -04:00
2013-02-23 02:57:11 -05:00
/// <summary>
/// Shoulds the ignore.
/// </summary>
/// <param name="args">The args.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
public bool ShouldIgnore(ItemResolveArgs args)
2013-02-20 20:33:05 -05:00
{
2013-08-27 16:29:45 -04:00
var filename = args.FileInfo.Name;
2013-08-27 16:08:29 -04:00
// Handle mac .DS_Store
// https://github.com/MediaBrowser/MediaBrowser/issues/427
2013-08-27 16:29:45 -04:00
if (filename.IndexOf("._", StringComparison.OrdinalIgnoreCase) == 0)
2013-08-27 16:08:29 -04:00
{
return true;
}
2013-02-20 20:33:05 -05:00
// Ignore hidden files and folders
if (args.IsHidden)
{
2013-04-24 12:03:10 -04:00
var parentFolderName = Path.GetFileName(Path.GetDirectoryName(args.Path));
if (string.Equals(parentFolderName, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
{
return false;
}
if (string.Equals(parentFolderName, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
2013-04-24 12:03:10 -04:00
{
2013-04-28 12:25:14 -04:00
return false;
2013-04-24 12:03:10 -04:00
}
2013-04-28 12:25:14 -04:00
2013-05-04 11:43:10 -04:00
// Drives will sometimes be hidden
if (args.Path.EndsWith(Path.VolumeSeparatorChar + "\\", StringComparison.OrdinalIgnoreCase))
{
return false;
}
// Shares will sometimes be hidden
if (args.Path.StartsWith("\\", StringComparison.OrdinalIgnoreCase))
2013-05-04 11:43:10 -04:00
{
// Look for a share, e.g. \\server\movies
// Is there a better way to detect if a path is a share without using native code?
if (args.Path.Substring(2).Split(Path.DirectorySeparatorChar).Length == 2)
2013-05-04 11:43:10 -04:00
{
return false;
}
}
2013-04-28 12:25:14 -04:00
return true;
2013-02-20 20:33:05 -05:00
}
if (args.IsDirectory)
{
// Ignore any folders in our list
2013-07-20 10:57:48 -04:00
if (IgnoreFolders.ContainsKey(filename))
2013-02-20 20:33:05 -05:00
{
return true;
}
2013-04-24 12:37:12 -04:00
2013-05-16 23:42:04 -04:00
// Ignore trailer folders but allow it at the collection level
if (string.Equals(filename, BaseItem.TrailerFolderName, StringComparison.OrdinalIgnoreCase) &&
!(args.Parent is AggregateFolder) && !(args.Parent is UserRootFolder))
2013-04-24 12:37:12 -04:00
{
return true;
}
if (string.Equals(filename, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
2013-04-28 12:25:14 -04:00
{
return true;
}
2013-04-24 12:37:12 -04:00
if (string.Equals(filename, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
{
return true;
}
2013-02-20 20:33:05 -05:00
}
else
{
if (args.Parent != null)
{
2013-09-17 22:43:34 -04:00
// Don't resolve these into audio files
if (string.Equals(Path.GetFileNameWithoutExtension(filename), BaseItem.ThemeSongFilename) && EntityResolutionHelper.IsAudioFile(filename))
{
return true;
}
2013-12-29 21:41:22 -05:00
// Don't misidentify xbmc trailers as a movie
if (filename.IndexOf(BaseItem.XbmcTrailerFileSuffix, StringComparison.OrdinalIgnoreCase) != -1)
{
return true;
}
}
}
2013-02-20 20:33:05 -05:00
return false;
}
}
}