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.
44 lines
1.2 KiB
44 lines
1.2 KiB
using MediaBrowser.Controller.Entities.Movies;
|
|
using MediaBrowser.Controller.Library;
|
|
using System;
|
|
using System.ComponentModel.Composition;
|
|
using System.IO;
|
|
|
|
namespace MediaBrowser.Controller.Resolvers.Movies
|
|
{
|
|
/// <summary>
|
|
/// Class BoxSetResolver
|
|
/// </summary>
|
|
[Export(typeof(IBaseItemResolver))]
|
|
public class BoxSetResolver : BaseFolderResolver<BoxSet>
|
|
{
|
|
/// <summary>
|
|
/// Resolves the specified args.
|
|
/// </summary>
|
|
/// <param name="args">The args.</param>
|
|
/// <returns>BoxSet.</returns>
|
|
protected override BoxSet Resolve(ItemResolveArgs args)
|
|
{
|
|
// It's a boxset if all of the following conditions are met:
|
|
// Is a Directory
|
|
// Contains [boxset] in the path
|
|
if (args.IsDirectory)
|
|
{
|
|
var filename = Path.GetFileName(args.Path);
|
|
|
|
if (string.IsNullOrEmpty(filename))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
if (filename.IndexOf("[boxset]", StringComparison.OrdinalIgnoreCase) != -1)
|
|
{
|
|
return new BoxSet();
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|