jellyfin/MediaBrowser.Providers/Playlists/PlaylistItemsProvider.cs

200 lines
7.1 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2024-05-16 15:04:42 +00:00
using Jellyfin.Data.Enums;
2021-12-20 12:31:07 +00:00
using Jellyfin.Extensions;
2018-09-12 17:26:21 +00:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Playlists;
2018-09-12 17:26:21 +00:00
using MediaBrowser.Controller.Providers;
2024-05-17 08:58:00 +00:00
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
2018-09-12 17:26:21 +00:00
using PlaylistsNET.Content;
namespace MediaBrowser.Providers.Playlists
{
public class PlaylistItemsProvider : ICustomMetadataProvider<Playlist>,
IHasOrder,
IForcedProvider,
IPreRefreshProvider,
IHasItemChangeMonitor
{
2024-05-17 08:58:00 +00:00
private readonly IFileSystem _fileSystem;
2024-05-16 15:04:42 +00:00
private readonly ILibraryManager _libraryManager;
2020-06-06 00:15:56 +00:00
private readonly ILogger<PlaylistItemsProvider> _logger;
2024-05-16 15:04:42 +00:00
private readonly CollectionType[] _ignoredCollections = [CollectionType.livetv, CollectionType.boxsets, CollectionType.playlists];
2018-09-12 17:26:21 +00:00
2024-05-17 08:58:00 +00:00
public PlaylistItemsProvider(ILogger<PlaylistItemsProvider> logger, ILibraryManager libraryManager, IFileSystem fileSystem)
2018-09-12 17:26:21 +00:00
{
_logger = logger;
2024-05-16 15:04:42 +00:00
_libraryManager = libraryManager;
2024-05-17 08:58:00 +00:00
_fileSystem = fileSystem;
2018-09-12 17:26:21 +00:00
}
public string Name => "Playlist Reader";
2018-09-12 17:26:21 +00:00
2020-09-07 11:20:39 +00:00
// Run last
public int Order => 100;
2018-09-12 17:26:21 +00:00
public Task<ItemUpdateType> FetchAsync(Playlist item, MetadataRefreshOptions options, CancellationToken cancellationToken)
{
var path = item.Path;
if (!Playlist.IsPlaylistFile(path))
{
return Task.FromResult(ItemUpdateType.None);
}
var extension = Path.GetExtension(path);
2021-12-20 12:31:07 +00:00
if (!Playlist.SupportedExtensions.Contains(extension ?? string.Empty, StringComparison.OrdinalIgnoreCase))
2018-09-12 17:26:21 +00:00
{
return Task.FromResult(ItemUpdateType.None);
}
2024-05-06 01:22:21 +00:00
var items = GetItems(path, extension).ToArray();
2018-09-12 17:26:21 +00:00
2024-05-06 01:22:21 +00:00
item.LinkedChildren = items;
2018-09-12 17:26:21 +00:00
2024-05-15 21:20:14 +00:00
return Task.FromResult(ItemUpdateType.MetadataImport);
2018-09-12 17:26:21 +00:00
}
2024-05-06 01:22:21 +00:00
private IEnumerable<LinkedChild> GetItems(string path, string extension)
2018-09-12 17:26:21 +00:00
{
2024-05-16 15:04:42 +00:00
var libraryRoots = _libraryManager.GetUserRootFolder().Children
.OfType<CollectionFolder>()
.Where(f => f.CollectionType.HasValue && !_ignoredCollections.Contains(f.CollectionType.Value))
.SelectMany(f => f.PhysicalLocations)
.Distinct(StringComparer.OrdinalIgnoreCase)
.ToList();
2024-05-06 01:22:21 +00:00
using (var stream = File.OpenRead(path))
2018-09-12 17:26:21 +00:00
{
2024-05-06 01:22:21 +00:00
if (string.Equals(".wpl", extension, StringComparison.OrdinalIgnoreCase))
{
2024-05-16 15:04:42 +00:00
return GetWplItems(stream, path, libraryRoots);
2024-05-06 01:22:21 +00:00
}
2020-06-15 21:43:52 +00:00
2024-05-06 01:22:21 +00:00
if (string.Equals(".zpl", extension, StringComparison.OrdinalIgnoreCase))
{
2024-05-16 15:04:42 +00:00
return GetZplItems(stream, path, libraryRoots);
2024-05-06 01:22:21 +00:00
}
2020-06-15 21:43:52 +00:00
2024-05-06 01:22:21 +00:00
if (string.Equals(".m3u", extension, StringComparison.OrdinalIgnoreCase))
{
2024-05-16 15:04:42 +00:00
return GetM3uItems(stream, path, libraryRoots);
2024-05-06 01:22:21 +00:00
}
2020-06-15 21:43:52 +00:00
2024-05-06 01:22:21 +00:00
if (string.Equals(".m3u8", extension, StringComparison.OrdinalIgnoreCase))
{
2024-05-16 15:04:42 +00:00
return GetM3uItems(stream, path, libraryRoots);
2024-05-06 01:22:21 +00:00
}
2020-06-15 21:43:52 +00:00
2024-05-06 01:22:21 +00:00
if (string.Equals(".pls", extension, StringComparison.OrdinalIgnoreCase))
{
2024-05-16 15:04:42 +00:00
return GetPlsItems(stream, path, libraryRoots);
2024-05-06 01:22:21 +00:00
}
2018-09-12 17:26:21 +00:00
}
2023-02-28 23:44:57 +00:00
return Enumerable.Empty<LinkedChild>();
2018-09-12 17:26:21 +00:00
}
2024-05-16 15:04:42 +00:00
private IEnumerable<LinkedChild> GetPlsItems(Stream stream, string playlistPath, List<string> libraryRoots)
2018-09-12 17:26:21 +00:00
{
var content = new PlsContent();
var playlist = content.GetFromStream(stream);
2024-05-16 14:10:37 +00:00
return playlist.PlaylistEntries
2024-05-16 15:04:42 +00:00
.Select(i => GetLinkedChild(i.Path, playlistPath, libraryRoots))
2024-05-16 14:10:37 +00:00
.Where(i => i is not null);
2018-09-12 17:26:21 +00:00
}
2024-05-16 15:04:42 +00:00
private IEnumerable<LinkedChild> GetM3uItems(Stream stream, string playlistPath, List<string> libraryRoots)
2018-09-12 17:26:21 +00:00
{
2020-06-15 14:34:24 +00:00
var content = new M3uContent();
2018-09-12 17:26:21 +00:00
var playlist = content.GetFromStream(stream);
2024-05-16 14:10:37 +00:00
return playlist.PlaylistEntries
2024-05-16 15:04:42 +00:00
.Select(i => GetLinkedChild(i.Path, playlistPath, libraryRoots))
2024-05-16 14:10:37 +00:00
.Where(i => i is not null);
2018-09-12 17:26:21 +00:00
}
2024-05-16 15:04:42 +00:00
private IEnumerable<LinkedChild> GetZplItems(Stream stream, string playlistPath, List<string> libraryRoots)
2018-09-12 17:26:21 +00:00
{
var content = new ZplContent();
var playlist = content.GetFromStream(stream);
2024-05-16 14:10:37 +00:00
return playlist.PlaylistEntries
2024-05-16 15:04:42 +00:00
.Select(i => GetLinkedChild(i.Path, playlistPath, libraryRoots))
2024-05-16 14:10:37 +00:00
.Where(i => i is not null);
2018-09-12 17:26:21 +00:00
}
2024-05-16 15:04:42 +00:00
private IEnumerable<LinkedChild> GetWplItems(Stream stream, string playlistPath, List<string> libraryRoots)
2018-09-12 17:26:21 +00:00
{
2019-01-13 20:37:13 +00:00
var content = new WplContent();
2018-09-12 17:26:21 +00:00
var playlist = content.GetFromStream(stream);
2024-05-16 14:10:37 +00:00
return playlist.PlaylistEntries
2024-05-16 15:04:42 +00:00
.Select(i => GetLinkedChild(i.Path, playlistPath, libraryRoots))
2024-05-16 14:10:37 +00:00
.Where(i => i is not null);
2018-09-12 17:26:21 +00:00
}
2024-05-16 15:04:42 +00:00
private LinkedChild GetLinkedChild(string itemPath, string playlistPath, List<string> libraryRoots)
2018-09-12 17:26:21 +00:00
{
2024-05-16 15:04:42 +00:00
if (TryGetPlaylistItemPath(itemPath, playlistPath, libraryRoots, out var parsedPath))
2018-09-12 17:26:21 +00:00
{
2024-05-16 14:10:37 +00:00
return new LinkedChild
2024-05-06 01:22:21 +00:00
{
2024-05-16 14:10:37 +00:00
Path = parsedPath,
Type = LinkedChildType.Manual
};
}
return null;
2018-09-12 17:26:21 +00:00
}
2024-05-16 15:04:42 +00:00
private bool TryGetPlaylistItemPath(string itemPath, string playlistPath, List<string> libraryPaths, out string path)
2024-05-06 01:22:21 +00:00
{
2024-05-16 14:10:37 +00:00
path = null;
2024-05-17 08:58:00 +00:00
string pathToCheck = _fileSystem.MakeAbsolutePath(Path.GetDirectoryName(playlistPath), itemPath);
if (!File.Exists(pathToCheck))
2024-05-06 01:22:21 +00:00
{
2024-05-17 08:58:00 +00:00
return false;
}
2024-05-16 15:04:42 +00:00
foreach (var libraryPath in libraryPaths)
2024-05-16 14:10:37 +00:00
{
if (pathToCheck.StartsWith(libraryPath, StringComparison.OrdinalIgnoreCase))
2024-05-06 01:22:21 +00:00
{
path = pathToCheck;
2024-05-16 15:04:42 +00:00
return true;
2024-05-06 01:22:21 +00:00
}
}
2024-05-16 14:10:37 +00:00
return false;
2024-05-06 01:22:21 +00:00
}
2018-09-12 17:26:21 +00:00
public bool HasChanged(BaseItem item, IDirectoryService directoryService)
{
var path = item.Path;
if (!string.IsNullOrWhiteSpace(path) && item.IsFileProtocol)
{
var file = directoryService.GetFile(path);
2022-12-05 14:01:13 +00:00
if (file is not null && file.LastWriteTimeUtc != item.DateModified)
2018-09-12 17:26:21 +00:00
{
2024-05-06 01:22:21 +00:00
_logger.LogDebug("Refreshing {Path} due to date modified timestamp change.", path);
2018-09-12 17:26:21 +00:00
return true;
}
}
return false;
}
}
}