2021-05-20 12:28:18 -07:00
|
|
|
#nullable disable
|
|
|
|
|
2019-11-01 10:38:54 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2014-08-02 19:16:37 -07:00
|
|
|
using System.IO;
|
2018-09-12 10:26:21 -07:00
|
|
|
using System.Linq;
|
2019-01-13 12:21:32 -07:00
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.Playlists;
|
2020-03-01 10:28:19 -07:00
|
|
|
using MediaBrowser.Controller.Resolvers;
|
2020-03-01 10:28:02 -07:00
|
|
|
using MediaBrowser.LocalMetadata.Savers;
|
2019-01-13 12:21:32 -07:00
|
|
|
using MediaBrowser.Model.Entities;
|
2014-08-02 19:16:37 -07:00
|
|
|
|
2016-11-02 23:37:52 -07:00
|
|
|
namespace Emby.Server.Implementations.Library.Resolvers
|
2014-08-02 19:16:37 -07:00
|
|
|
{
|
2020-03-01 10:28:19 -07:00
|
|
|
/// <summary>
|
|
|
|
/// <see cref="IItemResolver"/> for <see cref="Playlist"/> library items.
|
|
|
|
/// </summary>
|
2014-08-02 19:16:37 -07:00
|
|
|
public class PlaylistResolver : FolderResolver<Playlist>
|
|
|
|
{
|
2021-08-28 15:32:50 -07:00
|
|
|
private string[] _musicPlaylistCollectionTypes =
|
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
string.Empty,
|
|
|
|
CollectionType.Music
|
|
|
|
};
|
|
|
|
|
2020-03-01 10:28:19 -07:00
|
|
|
/// <inheritdoc/>
|
2014-08-02 19:16:37 -07:00
|
|
|
protected override Playlist Resolve(ItemResolveArgs args)
|
|
|
|
{
|
|
|
|
if (args.IsDirectory)
|
|
|
|
{
|
2020-03-01 10:28:02 -07:00
|
|
|
// It's a boxset if the path is a directory with [playlist] in it's the name
|
|
|
|
// TODO: Should this use Path.GetDirectoryName() instead?
|
|
|
|
bool isBoxSet = Path.GetFileName(args.Path)
|
|
|
|
?.Contains("[playlist]", StringComparison.OrdinalIgnoreCase)
|
|
|
|
?? false;
|
|
|
|
if (isBoxSet)
|
2014-08-02 19:16:37 -07:00
|
|
|
{
|
2020-03-01 10:28:02 -07:00
|
|
|
return new Playlist
|
|
|
|
{
|
|
|
|
Path = args.Path,
|
|
|
|
Name = Path.GetFileName(args.Path).Replace("[playlist]", string.Empty, StringComparison.OrdinalIgnoreCase).Trim()
|
|
|
|
};
|
2014-08-02 19:16:37 -07:00
|
|
|
}
|
|
|
|
|
2020-03-01 10:28:02 -07:00
|
|
|
// It's a directory-based playlist if the directory contains a playlist file
|
2020-12-31 19:40:24 -07:00
|
|
|
var filePaths = Directory.EnumerateFiles(args.Path, "*", new EnumerationOptions { IgnoreInaccessible = true });
|
2020-03-01 10:28:02 -07:00
|
|
|
if (filePaths.Any(f => f.EndsWith(PlaylistXmlSaver.DefaultPlaylistFilename, StringComparison.OrdinalIgnoreCase)))
|
2014-08-02 19:16:37 -07:00
|
|
|
{
|
2014-11-29 12:51:30 -07:00
|
|
|
return new Playlist
|
|
|
|
{
|
|
|
|
Path = args.Path,
|
2020-03-01 10:28:02 -07:00
|
|
|
Name = Path.GetFileName(args.Path)
|
2014-11-29 12:51:30 -07:00
|
|
|
};
|
2014-08-02 19:16:37 -07:00
|
|
|
}
|
|
|
|
}
|
2020-03-01 10:28:19 -07:00
|
|
|
|
|
|
|
// Check if this is a music playlist file
|
|
|
|
// It should have the correct collection type and a supported file extension
|
|
|
|
else if (_musicPlaylistCollectionTypes.Contains(args.CollectionType ?? string.Empty, StringComparer.OrdinalIgnoreCase))
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
2020-03-01 10:28:19 -07:00
|
|
|
var extension = Path.GetExtension(args.Path);
|
|
|
|
if (Playlist.SupportedExtensions.Contains(extension ?? string.Empty, StringComparer.OrdinalIgnoreCase))
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
2020-03-01 10:28:19 -07:00
|
|
|
return new Playlist
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
2020-03-01 10:28:19 -07:00
|
|
|
Path = args.Path,
|
|
|
|
Name = Path.GetFileNameWithoutExtension(args.Path),
|
2021-04-09 15:06:48 -07:00
|
|
|
IsInMixedFolder = true,
|
|
|
|
PlaylistMediaType = MediaType.Audio
|
2020-03-01 10:28:19 -07:00
|
|
|
};
|
2018-09-12 10:26:21 -07:00
|
|
|
}
|
|
|
|
}
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|