2021-05-20 12:28:18 -07:00
|
|
|
#nullable disable
|
|
|
|
|
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;
|
2023-11-09 14:00:29 -07:00
|
|
|
using Jellyfin.Data.Enums;
|
2021-12-20 05:31:07 -07:00
|
|
|
using Jellyfin.Extensions;
|
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;
|
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>
|
2021-10-06 02:30:45 -07:00
|
|
|
public class PlaylistResolver : GenericFolderResolver<Playlist>
|
2014-08-02 19:16:37 -07:00
|
|
|
{
|
2024-03-26 15:45:14 -07:00
|
|
|
private readonly CollectionType?[] _musicPlaylistCollectionTypes =
|
|
|
|
[
|
2023-11-09 14:00:29 -07:00
|
|
|
null,
|
2023-12-08 15:45:36 -07:00
|
|
|
CollectionType.music
|
2024-03-26 15:45:14 -07:00
|
|
|
];
|
2018-09-12 10:26:21 -07:00
|
|
|
|
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)
|
|
|
|
{
|
2023-05-12 06:11:59 -07:00
|
|
|
// It's a boxset if the path is a directory with [playlist] in its name
|
2022-11-23 07:58:11 -07:00
|
|
|
var filename = Path.GetFileName(Path.TrimEndingDirectorySeparator(args.Path));
|
|
|
|
if (string.IsNullOrEmpty(filename))
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filename.Contains("[playlist]", StringComparison.OrdinalIgnoreCase))
|
2014-08-02 19:16:37 -07:00
|
|
|
{
|
2020-03-01 10:28:02 -07:00
|
|
|
return new Playlist
|
|
|
|
{
|
|
|
|
Path = args.Path,
|
2023-05-12 06:11:59 -07:00
|
|
|
Name = filename.Replace("[playlist]", string.Empty, StringComparison.OrdinalIgnoreCase).Trim(),
|
|
|
|
OpenAccess = true
|
2020-03-01 10:28:02 -07:00
|
|
|
};
|
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,
|
2023-05-12 06:11:59 -07:00
|
|
|
Name = filename,
|
|
|
|
OpenAccess = true
|
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
|
2023-11-09 14:00:29 -07:00
|
|
|
else if (_musicPlaylistCollectionTypes.Contains(args.CollectionType))
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
2022-11-23 07:58:11 -07:00
|
|
|
var extension = Path.GetExtension(args.Path.AsSpan());
|
|
|
|
if (Playlist.SupportedExtensions.Contains(extension, StringComparison.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,
|
2023-05-12 06:11:59 -07:00
|
|
|
PlaylistMediaType = MediaType.Audio,
|
|
|
|
OpenAccess = true
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|