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.
46 lines
1.6 KiB
46 lines
1.6 KiB
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Resolvers;
|
|
using System;
|
|
using System.IO;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Resolvers
|
|
{
|
|
/// <summary>
|
|
/// Class LocalTrailerResolver
|
|
/// </summary>
|
|
public class LocalTrailerResolver : BaseVideoResolver<Trailer>
|
|
{
|
|
/// <summary>
|
|
/// Resolves the specified args.
|
|
/// </summary>
|
|
/// <param name="args">The args.</param>
|
|
/// <returns>Trailer.</returns>
|
|
protected override Trailer Resolve(ItemResolveArgs args)
|
|
{
|
|
// Trailers are not Children, therefore this can never happen
|
|
if (args.Parent != null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// If the file is within a trailers folder, see if the VideoResolver returns something
|
|
if (!args.IsDirectory)
|
|
{
|
|
if (string.Equals(Path.GetFileName(Path.GetDirectoryName(args.Path)), BaseItem.TrailerFolderName, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return base.Resolve(args);
|
|
}
|
|
|
|
// Support xbmc local trailer convention, but only when looking for local trailers (hence the parent == null check)
|
|
if (args.Parent == null && Path.GetFileNameWithoutExtension(args.Path).EndsWith(BaseItem.XbmcTrailerFileSuffix, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return base.Resolve(args);
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|