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.
37 lines
1.2 KiB
37 lines
1.2 KiB
using System.ComponentModel.Composition;
|
|
using System.IO;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Resolvers;
|
|
using MediaBrowser.TV.Entities;
|
|
|
|
namespace MediaBrowser.TV.Resolvers
|
|
{
|
|
[Export(typeof(IBaseItemResolver))]
|
|
public class SeasonResolver : BaseFolderResolver<Season>
|
|
{
|
|
protected override Season Resolve(ItemResolveEventArgs args)
|
|
{
|
|
if (args.Parent is Series && args.IsDirectory)
|
|
{
|
|
Season season = new Season();
|
|
|
|
season.IndexNumber = TVUtils.GetSeasonNumberFromPath(args.Path);
|
|
|
|
// Gather these now so that the episode provider classes can utilize them instead of having to make their own file system calls
|
|
if (args.ContainsFolder("metadata"))
|
|
{
|
|
season.MetadataFiles = Directory.GetFiles(Path.Combine(args.Path, "metadata"), "*", SearchOption.TopDirectoryOnly);
|
|
}
|
|
else
|
|
{
|
|
season.MetadataFiles = new string[] { };
|
|
}
|
|
|
|
return season;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|