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.
47 lines
1.5 KiB
47 lines
1.5 KiB
using System.ComponentModel.Composition;
|
|
using System.IO;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Resolvers
|
|
{
|
|
[Export(typeof(IBaseItemResolver))]
|
|
public class VirtualFolderResolver : BaseFolderResolver<VirtualFolder>
|
|
{
|
|
public override ResolverPriority Priority
|
|
{
|
|
get { return ResolverPriority.Third; }
|
|
}
|
|
|
|
protected override VirtualFolder Resolve(ItemResolveEventArgs args)
|
|
{
|
|
if (args.IsDirectory && args.Parent != null && args.Parent.IsRoot)
|
|
{
|
|
return new VirtualFolder();
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
protected override void SetInitialItemValues(VirtualFolder item, ItemResolveEventArgs args)
|
|
{
|
|
// Set the name initially by stripping off the [CollectionType=...]
|
|
// The name can always be overridden later by folder.xml
|
|
string pathName = Path.GetFileNameWithoutExtension(args.Path);
|
|
|
|
string srch = "[collectiontype=";
|
|
int index = pathName.IndexOf(srch, System.StringComparison.OrdinalIgnoreCase);
|
|
|
|
if (index != -1)
|
|
{
|
|
item.Name = pathName.Substring(0, index).Trim();
|
|
|
|
item.CollectionType = pathName.Substring(index + srch.Length).TrimEnd(']');
|
|
}
|
|
|
|
base.SetInitialItemValues(item, args);
|
|
}
|
|
|
|
}
|
|
}
|