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