2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2019-01-13 19:21:32 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using Emby.Naming.Audio;
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2013-03-03 06:58:04 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
2014-02-13 05:11:54 +00:00
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-03-03 16:53:58 +00:00
|
|
|
using MediaBrowser.Controller.Resolvers;
|
2013-07-27 18:24:48 +00:00
|
|
|
using MediaBrowser.Model.Entities;
|
2016-10-25 19:02:04 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
2019-01-13 19:21:32 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
2016-11-03 06:37:52 +00:00
|
|
|
namespace Emby.Server.Implementations.Library.Resolvers.Audio
|
2013-03-03 06:58:04 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2019-11-01 17:38:54 +00:00
|
|
|
/// Class MusicAlbumResolver.
|
2013-03-03 06:58:04 +00:00
|
|
|
/// </summary>
|
|
|
|
public class MusicAlbumResolver : ItemResolver<MusicAlbum>
|
|
|
|
{
|
2014-07-26 17:30:15 +00:00
|
|
|
private readonly ILogger _logger;
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-11-16 20:44:08 +00:00
|
|
|
private readonly ILibraryManager _libraryManager;
|
2014-07-26 17:30:15 +00:00
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="MusicAlbumResolver"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="logger">The logger.</param>
|
|
|
|
/// <param name="fileSystem">The file system.</param>
|
|
|
|
/// <param name="libraryManager">The library manager.</param>
|
2014-11-16 20:44:08 +00:00
|
|
|
public MusicAlbumResolver(ILogger logger, IFileSystem fileSystem, ILibraryManager libraryManager)
|
2014-07-26 17:30:15 +00:00
|
|
|
{
|
|
|
|
_logger = logger;
|
|
|
|
_fileSystem = fileSystem;
|
2014-11-16 20:44:08 +00:00
|
|
|
_libraryManager = libraryManager;
|
2014-07-26 17:30:15 +00:00
|
|
|
}
|
|
|
|
|
2013-03-03 06:58:04 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the priority.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The priority.</value>
|
2019-01-06 20:50:43 +00:00
|
|
|
public override ResolverPriority Priority => ResolverPriority.Second;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Resolves the specified args.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="args">The args.</param>
|
|
|
|
/// <returns>MusicAlbum.</returns>
|
|
|
|
protected override MusicAlbum Resolve(ItemResolveArgs args)
|
|
|
|
{
|
2013-09-04 17:07:35 +00:00
|
|
|
var collectionType = args.GetCollectionType();
|
2014-12-20 06:06:27 +00:00
|
|
|
var isMusicMediaFolder = string.Equals(collectionType, CollectionType.Music, StringComparison.OrdinalIgnoreCase);
|
2014-07-30 03:31:35 +00:00
|
|
|
|
2014-03-06 05:17:13 +00:00
|
|
|
// If there's a collection type and it's not music, don't allow it.
|
2014-07-30 03:31:35 +00:00
|
|
|
if (!isMusicMediaFolder)
|
2013-07-27 18:24:48 +00:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2014-06-29 17:58:04 +00:00
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
if (!args.IsDirectory)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
|
|
|
|
// Avoid mis-identifying top folders
|
2019-11-01 17:38:54 +00:00
|
|
|
if (args.HasParent<MusicAlbum>())
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.Parent.IsRoot)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2014-11-16 20:44:08 +00:00
|
|
|
return IsMusicAlbum(args) ? new MusicAlbum() : null;
|
2013-03-03 06:58:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-01-22 21:18:56 +00:00
|
|
|
/// Determine if the supplied file data points to a music album.
|
2013-03-03 06:58:04 +00:00
|
|
|
/// </summary>
|
2020-02-19 20:56:35 +00:00
|
|
|
public bool IsMusicAlbum(string path, IDirectoryService directoryService)
|
2013-03-03 06:58:04 +00:00
|
|
|
{
|
2020-02-19 20:56:35 +00:00
|
|
|
return ContainsMusic(directoryService.GetFileSystemEntries(path), true, directoryService, _logger, _fileSystem, _libraryManager);
|
2013-03-03 06:58:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-01-22 21:18:56 +00:00
|
|
|
/// Determine if the supplied resolve args should be considered a music album.
|
2013-03-03 06:58:04 +00:00
|
|
|
/// </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 20:44:08 +00:00
|
|
|
private bool IsMusicAlbum(ItemResolveArgs args)
|
2013-03-03 06:58:04 +00:00
|
|
|
{
|
|
|
|
// Args points to an album if parent is an Artist folder or it directly contains music
|
|
|
|
if (args.IsDirectory)
|
|
|
|
{
|
2019-11-01 17:38:54 +00:00
|
|
|
// if (args.Parent is MusicArtist) return true; //saves us from testing children twice
|
2020-02-19 20:56:35 +00:00
|
|
|
if (ContainsMusic(args.FileSystemChildren, true, args.DirectoryService, _logger, _fileSystem, _libraryManager))
|
2019-11-01 17:38:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2013-03-03 06:58:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-01-22 21:18:56 +00:00
|
|
|
/// Determine if the supplied list contains what we should consider music.
|
2013-03-03 06:58:04 +00:00
|
|
|
/// </summary>
|
2019-11-01 17:38:54 +00:00
|
|
|
private bool ContainsMusic(
|
|
|
|
IEnumerable<FileSystemMetadata> list,
|
2014-08-27 03:25:39 +00:00
|
|
|
bool allowSubfolders,
|
|
|
|
IDirectoryService directoryService,
|
|
|
|
ILogger logger,
|
2014-11-16 20:44:08 +00:00
|
|
|
IFileSystem fileSystem,
|
|
|
|
ILibraryManager libraryManager)
|
2013-03-03 06:58:04 +00:00
|
|
|
{
|
2014-07-26 17:30:15 +00:00
|
|
|
var discSubfolderCount = 0;
|
2014-12-28 06:21:39 +00:00
|
|
|
var notMultiDisc = false;
|
2014-07-26 17:30:15 +00:00
|
|
|
|
2020-01-22 21:18:56 +00:00
|
|
|
var namingOptions = ((LibraryManager)_libraryManager).GetNamingOptions();
|
|
|
|
var parser = new AlbumParser(namingOptions);
|
2014-06-25 15:12:39 +00:00
|
|
|
foreach (var fileSystemInfo in list)
|
2013-03-03 06:58:04 +00:00
|
|
|
{
|
2016-10-25 19:02:04 +00:00
|
|
|
if (fileSystemInfo.IsDirectory)
|
2014-06-25 15:12:39 +00:00
|
|
|
{
|
2014-12-28 06:21:39 +00:00
|
|
|
if (allowSubfolders)
|
2014-06-29 17:58:04 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
if (notMultiDisc)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-12-28 06:21:39 +00:00
|
|
|
var path = fileSystemInfo.FullName;
|
2020-02-19 20:56:35 +00:00
|
|
|
var hasMusic = ContainsMusic(directoryService.GetFileSystemEntries(path), false, directoryService, logger, fileSystem, libraryManager);
|
2014-12-28 06:21:39 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (hasMusic)
|
2014-12-28 06:21:39 +00:00
|
|
|
{
|
2020-01-22 21:18:56 +00:00
|
|
|
if (parser.IsMultiPart(path))
|
2015-01-10 01:38:01 +00:00
|
|
|
{
|
2018-12-13 13:18:25 +00:00
|
|
|
logger.LogDebug("Found multi-disc folder: " + path);
|
2015-01-10 01:38:01 +00:00
|
|
|
discSubfolderCount++;
|
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
else
|
2015-01-10 01:38:01 +00: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 06:21:39 +00:00
|
|
|
}
|
2014-06-29 17:58:04 +00:00
|
|
|
}
|
2014-06-25 15:12:39 +00:00
|
|
|
}
|
2017-01-15 22:53:24 +00:00
|
|
|
else
|
2014-06-25 15:12:39 +00:00
|
|
|
{
|
2017-01-15 22:53:24 +00:00
|
|
|
var fullName = fileSystemInfo.FullName;
|
|
|
|
|
2020-02-19 20:56:35 +00:00
|
|
|
if (libraryManager.IsAudioFile(fullName))
|
2017-01-15 22:53:24 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2013-03-03 06:58:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-28 06:21:39 +00:00
|
|
|
if (notMultiDisc)
|
2014-06-29 17:58:04 +00:00
|
|
|
{
|
2014-12-28 06:21:39 +00:00
|
|
|
return false;
|
2014-06-29 17:58:04 +00:00
|
|
|
}
|
|
|
|
|
2015-01-09 04:05:45 +00:00
|
|
|
return discSubfolderCount > 0;
|
2014-06-29 17:58:04 +00:00
|
|
|
}
|
2013-03-03 06:58:04 +00:00
|
|
|
}
|
|
|
|
}
|