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.
168 lines
5.8 KiB
168 lines
5.8 KiB
#nullable disable
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Emby.Naming.Audio;
|
|
using Emby.Naming.Common;
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Controller.Resolvers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.IO;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Emby.Server.Implementations.Library.Resolvers.Audio
|
|
{
|
|
/// <summary>
|
|
/// Class MusicAlbumResolver.
|
|
/// </summary>
|
|
public class MusicAlbumResolver : ItemResolver<MusicAlbum>
|
|
{
|
|
private readonly ILogger<MusicAlbumResolver> _logger;
|
|
private readonly NamingOptions _namingOptions;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MusicAlbumResolver"/> class.
|
|
/// </summary>
|
|
/// <param name="logger">The logger.</param>
|
|
/// <param name="namingOptions">The naming options.</param>
|
|
public MusicAlbumResolver(ILogger<MusicAlbumResolver> logger, NamingOptions namingOptions)
|
|
{
|
|
_logger = logger;
|
|
_namingOptions = namingOptions;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the priority.
|
|
/// </summary>
|
|
/// <value>The priority.</value>
|
|
public override ResolverPriority Priority => ResolverPriority.Third;
|
|
|
|
/// <summary>
|
|
/// Resolves the specified args.
|
|
/// </summary>
|
|
/// <param name="args">The args.</param>
|
|
/// <returns>MusicAlbum.</returns>
|
|
protected override MusicAlbum Resolve(ItemResolveArgs args)
|
|
{
|
|
var collectionType = args.GetCollectionType();
|
|
var isMusicMediaFolder = string.Equals(collectionType, CollectionType.Music, StringComparison.OrdinalIgnoreCase);
|
|
|
|
// If there's a collection type and it's not music, don't allow it.
|
|
if (!isMusicMediaFolder)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
if (!args.IsDirectory)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Avoid mis-identifying top folders
|
|
if (args.HasParent<MusicAlbum>())
|
|
{
|
|
return null;
|
|
}
|
|
|
|
if (args.Parent.IsRoot)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return IsMusicAlbum(args) ? new MusicAlbum() : null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determine if the supplied file data points to a music album.
|
|
/// </summary>
|
|
/// <param name="path">The path to check.</param>
|
|
/// <param name="directoryService">The directory service.</param>
|
|
/// <returns><c>true</c> if the provided path points to a music album, <c>false</c> otherwise.</returns>
|
|
public bool IsMusicAlbum(string path, IDirectoryService directoryService)
|
|
{
|
|
return ContainsMusic(directoryService.GetFileSystemEntries(path), true, directoryService);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determine if the supplied resolve args should be considered a music album.
|
|
/// </summary>
|
|
/// <param name="args">The args.</param>
|
|
/// <returns><c>true</c> if [is music album] [the specified args]; otherwise, <c>false</c>.</returns>
|
|
private bool IsMusicAlbum(ItemResolveArgs args)
|
|
{
|
|
// Args points to an album if parent is an Artist folder or it directly contains music
|
|
if (args.IsDirectory)
|
|
{
|
|
// if (args.Parent is MusicArtist) return true; // saves us from testing children twice
|
|
if (ContainsMusic(args.FileSystemChildren, true, args.DirectoryService))
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determine if the supplied list contains what we should consider music.
|
|
/// </summary>
|
|
private bool ContainsMusic(
|
|
ICollection<FileSystemMetadata> list,
|
|
bool allowSubfolders,
|
|
IDirectoryService directoryService)
|
|
{
|
|
// check for audio files before digging down into directories
|
|
var foundAudioFile = list.Any(fileSystemInfo => !fileSystemInfo.IsDirectory && AudioFileParser.IsAudioFile(fileSystemInfo.FullName, _namingOptions));
|
|
if (foundAudioFile)
|
|
{
|
|
// at least one audio file exists
|
|
return true;
|
|
}
|
|
|
|
if (!allowSubfolders)
|
|
{
|
|
// not music since no audio file exists and we're not looking into subfolders
|
|
return false;
|
|
}
|
|
|
|
var discSubfolderCount = 0;
|
|
|
|
var parser = new AlbumParser(_namingOptions);
|
|
|
|
var directories = list.Where(fileSystemInfo => fileSystemInfo.IsDirectory);
|
|
|
|
var result = Parallel.ForEach(directories, (fileSystemInfo, state) =>
|
|
{
|
|
var path = fileSystemInfo.FullName;
|
|
var hasMusic = ContainsMusic(directoryService.GetFileSystemEntries(path), false, directoryService);
|
|
|
|
if (hasMusic)
|
|
{
|
|
if (parser.IsMultiPart(path))
|
|
{
|
|
_logger.LogDebug("Found multi-disc folder: {Path}", path);
|
|
Interlocked.Increment(ref discSubfolderCount);
|
|
}
|
|
else
|
|
{
|
|
// If there are folders underneath with music that are not multidisc, then this can't be a multi-disc album
|
|
state.Stop();
|
|
}
|
|
}
|
|
});
|
|
|
|
if (!result.IsCompleted)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return discSubfolderCount > 0;
|
|
}
|
|
}
|
|
}
|