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.
67 lines
2.0 KiB
67 lines
2.0 KiB
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Resolvers;
|
|
using MediaBrowser.Model.Entities;
|
|
using System;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Resolvers.Audio
|
|
{
|
|
/// <summary>
|
|
/// Class AudioResolver
|
|
/// </summary>
|
|
public class AudioResolver : ItemResolver<Controller.Entities.Audio.Audio>
|
|
{
|
|
private readonly ILibraryManager _libraryManager;
|
|
|
|
public AudioResolver(ILibraryManager libraryManager)
|
|
{
|
|
_libraryManager = libraryManager;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the priority.
|
|
/// </summary>
|
|
/// <value>The priority.</value>
|
|
public override ResolverPriority Priority
|
|
{
|
|
get { return ResolverPriority.Last; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Resolves the specified args.
|
|
/// </summary>
|
|
/// <param name="args">The args.</param>
|
|
/// <returns>Entities.Audio.Audio.</returns>
|
|
protected override Controller.Entities.Audio.Audio Resolve(ItemResolveArgs args)
|
|
{
|
|
// Return audio if the path is a file and has a matching extension
|
|
|
|
if (!args.IsDirectory)
|
|
{
|
|
if (_libraryManager.IsAudioFile(args.Path))
|
|
{
|
|
var collectionType = args.GetCollectionType();
|
|
|
|
var isMixed = string.IsNullOrWhiteSpace(collectionType);
|
|
|
|
// For conflicting extensions, give priority to videos
|
|
if (isMixed && _libraryManager.IsVideoFile(args.Path))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
var isStandalone = args.Parent == null;
|
|
|
|
if (isStandalone ||
|
|
string.Equals(collectionType, CollectionType.Music, StringComparison.OrdinalIgnoreCase) ||
|
|
isMixed)
|
|
{
|
|
return new Controller.Entities.Audio.Audio();
|
|
}
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|