You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.Composition;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Resolvers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides the core resolver ignore rules
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Export(typeof(BaseResolutionIgnoreRule))]
|
|
|
|
|
public class CoreResolutionIgnoreRule : BaseResolutionIgnoreRule
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Any folder named in this list will be ignored - can be added to at runtime for extensibility
|
|
|
|
|
/// </summary>
|
|
|
|
|
private static readonly List<string> IgnoreFolders = new List<string>
|
|
|
|
|
{
|
|
|
|
|
"trailers",
|
|
|
|
|
"metadata",
|
|
|
|
|
"certificate",
|
|
|
|
|
"backup",
|
|
|
|
|
"ps3_update",
|
|
|
|
|
"ps3_vprm",
|
|
|
|
|
"adv_obj",
|
|
|
|
|
"extrafanart"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public override bool ShouldIgnore(ItemResolveArgs args)
|
|
|
|
|
{
|
|
|
|
|
// Ignore hidden files and folders
|
|
|
|
|
if (args.IsHidden)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (args.IsDirectory)
|
|
|
|
|
{
|
|
|
|
|
var filename = args.FileInfo.cFileName;
|
|
|
|
|
|
|
|
|
|
// Ignore any folders in our list
|
|
|
|
|
if (IgnoreFolders.Contains(filename, StringComparer.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|