jellyfin/Emby.Server.Implementations/Library/Resolvers/Audio/MusicAlbumResolver.cs

165 lines
5.8 KiB
C#
Raw Normal View History

2016-03-27 23:11:27 +02:00
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Library;
2014-02-13 06:11:54 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Resolvers;
using MediaBrowser.Model.Entities;
using Microsoft.Extensions.Logging;
using Emby.Naming.Audio;
using System;
using System.Collections.Generic;
using System.IO;
2017-05-26 08:48:54 +02:00
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
using MediaBrowser.Controller.Configuration;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Controller.IO;
2016-08-13 22:54:29 +02:00
using MediaBrowser.Model.Configuration;
namespace Emby.Server.Implementations.Library.Resolvers.Audio
{
/// <summary>
/// Class MusicAlbumResolver
/// </summary>
public class MusicAlbumResolver : ItemResolver<MusicAlbum>
{
2014-07-26 19:30:15 +02:00
private readonly ILogger _logger;
private readonly IFileSystem _fileSystem;
2014-11-16 21:44:08 +01:00
private readonly ILibraryManager _libraryManager;
2014-07-26 19:30:15 +02:00
2014-11-16 21:44:08 +01:00
public MusicAlbumResolver(ILogger logger, IFileSystem fileSystem, ILibraryManager libraryManager)
2014-07-26 19:30:15 +02:00
{
_logger = logger;
_fileSystem = fileSystem;
2014-11-16 21:44:08 +01:00
_libraryManager = libraryManager;
2014-07-26 19:30:15 +02:00
}
/// <summary>
/// Gets the priority.
/// </summary>
/// <value>The priority.</value>
public override ResolverPriority Priority => ResolverPriority.Second;
/// <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();
2014-12-20 07:06:27 +01:00
var isMusicMediaFolder = string.Equals(collectionType, CollectionType.Music, StringComparison.OrdinalIgnoreCase);
2014-07-30 05:31:35 +02:00
2014-03-06 06:17:13 +01:00
// If there's a collection type and it's not music, don't allow it.
2014-07-30 05:31:35 +02:00
if (!isMusicMediaFolder)
{
return null;
}
2014-06-29 19:58:04 +02:00
2018-09-12 19:26:21 +02:00
if (!args.IsDirectory) return null;
// Avoid mis-identifying top folders
if (args.HasParent<MusicAlbum>()) return null;
if (args.Parent.IsRoot) return null;
2014-11-16 21:44:08 +01:00
return IsMusicAlbum(args) ? new MusicAlbum() : null;
}
/// <summary>
/// Determine if the supplied file data points to a music album
/// </summary>
public bool IsMusicAlbum(string path, IDirectoryService directoryService, LibraryOptions libraryOptions)
{
return ContainsMusic(directoryService.GetFileSystemEntries(path), true, directoryService, _logger, _fileSystem, libraryOptions, _libraryManager);
}
/// <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>
2014-11-16 21:44:08 +01:00
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, _logger, _fileSystem, args.GetLibraryOptions(), _libraryManager)) return true;
}
return false;
}
/// <summary>
/// Determine if the supplied list contains what we should consider music
/// </summary>
2015-10-04 05:38:46 +02:00
private bool ContainsMusic(IEnumerable<FileSystemMetadata> list,
2014-08-27 05:25:39 +02:00
bool allowSubfolders,
IDirectoryService directoryService,
ILogger logger,
2014-11-16 21:44:08 +01:00
IFileSystem fileSystem,
LibraryOptions libraryOptions,
2014-11-16 21:44:08 +01:00
ILibraryManager libraryManager)
{
2014-07-26 19:30:15 +02:00
var discSubfolderCount = 0;
2014-12-28 07:21:39 +01:00
var notMultiDisc = false;
2014-07-26 19:30:15 +02:00
2014-06-25 17:12:39 +02:00
foreach (var fileSystemInfo in list)
{
2016-10-25 21:02:04 +02:00
if (fileSystemInfo.IsDirectory)
2014-06-25 17:12:39 +02:00
{
2014-12-28 07:21:39 +01:00
if (allowSubfolders)
2014-06-29 19:58:04 +02:00
{
2018-09-12 19:26:21 +02:00
if (notMultiDisc)
{
continue;
}
2014-12-28 07:21:39 +01:00
var path = fileSystemInfo.FullName;
2018-09-12 19:26:21 +02:00
var hasMusic = ContainsMusic(directoryService.GetFileSystemEntries(path), false, directoryService, logger, fileSystem, libraryOptions, libraryManager);
2014-12-28 07:21:39 +01:00
2018-09-12 19:26:21 +02:00
if (hasMusic)
2014-12-28 07:21:39 +01:00
{
2018-09-12 19:26:21 +02:00
if (IsMultiDiscFolder(path, libraryOptions))
2015-01-10 02:38:01 +01:00
{
logger.LogDebug("Found multi-disc folder: " + path);
2015-01-10 02:38:01 +01:00
discSubfolderCount++;
}
2018-09-12 19:26:21 +02:00
else
2015-01-10 02:38:01 +01:00
{
// If there are folders underneath with music that are not multidisc, then this can't be a multi-disc album
notMultiDisc = true;
}
2014-12-28 07:21:39 +01:00
}
2014-06-29 19:58:04 +02:00
}
2014-06-25 17:12:39 +02:00
}
2017-01-15 23:53:24 +01:00
else
2014-06-25 17:12:39 +02:00
{
2017-01-15 23:53:24 +01:00
var fullName = fileSystemInfo.FullName;
if (libraryManager.IsAudioFile(fullName, libraryOptions))
{
return true;
}
}
}
2014-12-28 07:21:39 +01:00
if (notMultiDisc)
2014-06-29 19:58:04 +02:00
{
2014-12-28 07:21:39 +01:00
return false;
2014-06-29 19:58:04 +02:00
}
2015-01-09 05:05:45 +01:00
return discSubfolderCount > 0;
2014-06-29 19:58:04 +02:00
}
private bool IsMultiDiscFolder(string path, LibraryOptions libraryOptions)
2014-06-29 19:58:04 +02:00
{
2017-06-27 22:55:22 +02:00
var namingOptions = ((LibraryManager)_libraryManager).GetNamingOptions();
2015-01-10 06:53:35 +01:00
var parser = new AlbumParser(namingOptions);
2014-11-16 21:44:08 +01:00
var result = parser.ParseMultiPart(path);
return result.IsMultiPart;
2014-06-29 19:58:04 +02:00
}
}
}