2016-03-27 21:11:27 +00:00
|
|
|
|
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;
|
2014-07-26 17:30:15 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2014-11-16 20:44:08 +00:00
|
|
|
|
using MediaBrowser.Naming.Audio;
|
2013-07-27 18:24:48 +00:00
|
|
|
|
using System;
|
2013-05-12 14:06:08 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2016-11-03 06:37:52 +00:00
|
|
|
|
using Emby.Server.Implementations.Logging;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Model.IO;
|
2016-08-13 05:49:00 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Controller.IO;
|
2016-08-13 20:54:29 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
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>
|
|
|
|
|
/// Class MusicAlbumResolver
|
|
|
|
|
/// </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
|
|
|
|
|
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>
|
|
|
|
|
public override ResolverPriority Priority
|
|
|
|
|
{
|
2014-12-20 06:06:27 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// Behind special folder resolver
|
|
|
|
|
return 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)
|
|
|
|
|
{
|
|
|
|
|
if (!args.IsDirectory) return null;
|
|
|
|
|
|
2014-12-20 06:06:27 +00:00
|
|
|
|
// Avoid mis-identifying top folders
|
2014-12-15 05:16:23 +00:00
|
|
|
|
if (args.HasParent<MusicAlbum>()) return null;
|
2016-10-09 07:18:43 +00:00
|
|
|
|
if (args.Parent.IsRoot) return null;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
|
2013-09-04 17:07:35 +00:00
|
|
|
|
var collectionType = args.GetCollectionType();
|
2013-07-27 18:24:48 +00:00
|
|
|
|
|
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
|
|
|
|
|
2014-11-16 20:44:08 +00:00
|
|
|
|
return IsMusicAlbum(args) ? new MusicAlbum() : null;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determine if the supplied file data points to a music album
|
|
|
|
|
/// </summary>
|
2016-08-13 05:49:00 +00:00
|
|
|
|
public bool IsMusicAlbum(string path, IDirectoryService directoryService, LibraryOptions libraryOptions)
|
2013-03-03 06:58:04 +00:00
|
|
|
|
{
|
2016-08-13 05:49:00 +00:00
|
|
|
|
return ContainsMusic(directoryService.GetFileSystemEntries(path), true, directoryService, _logger, _fileSystem, libraryOptions, _libraryManager);
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-04-28 00:44:38 +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)
|
|
|
|
|
{
|
|
|
|
|
//if (args.Parent is MusicArtist) return true; //saves us from testing children twice
|
2016-08-13 05:49:00 +00:00
|
|
|
|
if (ContainsMusic(args.FileSystemChildren, true, args.DirectoryService, _logger, _fileSystem, args.GetLibraryOptions(), _libraryManager)) return true;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determine if the supplied list contains what we should consider music
|
|
|
|
|
/// </summary>
|
2015-10-04 03:38:46 +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,
|
2016-08-13 05:49:00 +00:00
|
|
|
|
LibraryOptions libraryOptions,
|
2014-11-16 20:44:08 +00:00
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
{
|
2014-12-28 06:21:39 +00:00
|
|
|
|
var path = fileSystemInfo.FullName;
|
2016-08-13 05:49:00 +00:00
|
|
|
|
var isMultiDisc = IsMultiDiscFolder(path, libraryOptions);
|
2014-12-28 06:21:39 +00:00
|
|
|
|
|
2015-01-10 01:38:01 +00:00
|
|
|
|
if (isMultiDisc)
|
2014-12-28 06:21:39 +00:00
|
|
|
|
{
|
2016-08-13 05:49:00 +00:00
|
|
|
|
var hasMusic = ContainsMusic(directoryService.GetFileSystemEntries(path), false, directoryService, logger, fileSystem, libraryOptions, libraryManager);
|
2015-01-10 01:38:01 +00:00
|
|
|
|
|
|
|
|
|
if (hasMusic)
|
|
|
|
|
{
|
|
|
|
|
logger.Debug("Found multi-disc folder: " + path);
|
|
|
|
|
discSubfolderCount++;
|
|
|
|
|
}
|
2014-12-28 06:21:39 +00:00
|
|
|
|
}
|
2015-01-10 01:38:01 +00:00
|
|
|
|
else
|
2014-12-28 06:21:39 +00:00
|
|
|
|
{
|
2016-08-13 05:49:00 +00:00
|
|
|
|
var hasMusic = ContainsMusic(directoryService.GetFileSystemEntries(path), false, directoryService, logger, fileSystem, libraryOptions, libraryManager);
|
2015-01-10 01:38:01 +00:00
|
|
|
|
|
|
|
|
|
if (hasMusic)
|
|
|
|
|
{
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var fullName = fileSystemInfo.FullName;
|
2013-09-18 02:43:34 +00:00
|
|
|
|
|
2016-08-13 05:49:00 +00:00
|
|
|
|
if (libraryManager.IsAudioFile(fullName, libraryOptions))
|
2014-06-25 15:12:39 +00:00
|
|
|
|
{
|
2013-03-03 06:58:04 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2016-08-13 05:49:00 +00:00
|
|
|
|
private bool IsMultiDiscFolder(string path, LibraryOptions libraryOptions)
|
2014-06-29 17:58:04 +00:00
|
|
|
|
{
|
2016-08-13 05:49:00 +00:00
|
|
|
|
var namingOptions = ((LibraryManager)_libraryManager).GetNamingOptions(libraryOptions);
|
2015-01-10 05:53:35 +00:00
|
|
|
|
|
2015-01-17 04:38:24 +00:00
|
|
|
|
var parser = new AlbumParser(namingOptions, new PatternsLogger());
|
2014-11-16 20:44:08 +00:00
|
|
|
|
var result = parser.ParseMultiPart(path);
|
|
|
|
|
|
|
|
|
|
return result.IsMultiPart;
|
2014-06-29 17:58:04 +00:00
|
|
|
|
}
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|