| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.IO; |
| | 6 | | using System.Linq; |
| | 7 | | using System.Threading; |
| | 8 | | using System.Threading.Tasks; |
| | 9 | | using Jellyfin.Data.Enums; |
| | 10 | | using Jellyfin.Extensions; |
| | 11 | | using MediaBrowser.Controller.Entities; |
| | 12 | | using MediaBrowser.Controller.Library; |
| | 13 | | using MediaBrowser.Controller.Playlists; |
| | 14 | | using MediaBrowser.Controller.Providers; |
| | 15 | | using MediaBrowser.Model.IO; |
| | 16 | | using Microsoft.Extensions.Logging; |
| | 17 | | using PlaylistsNET.Content; |
| | 18 | |
|
| | 19 | | namespace MediaBrowser.Providers.Playlists; |
| | 20 | |
|
| | 21 | | /// <summary> |
| | 22 | | /// Local playlist provider. |
| | 23 | | /// </summary> |
| | 24 | | public class PlaylistItemsProvider : ILocalMetadataProvider<Playlist>, |
| | 25 | | IHasOrder, |
| | 26 | | IForcedProvider, |
| | 27 | | IHasItemChangeMonitor |
| | 28 | | { |
| | 29 | | private readonly IFileSystem _fileSystem; |
| | 30 | | private readonly ILibraryManager _libraryManager; |
| | 31 | | private readonly ILogger<PlaylistItemsProvider> _logger; |
| 21 | 32 | | private readonly CollectionType[] _ignoredCollections = [CollectionType.livetv, CollectionType.boxsets, CollectionTy |
| | 33 | |
|
| | 34 | | /// <summary> |
| | 35 | | /// Initializes a new instance of the <see cref="PlaylistItemsProvider"/> class. |
| | 36 | | /// </summary> |
| | 37 | | /// <param name="logger">Instance of the <see cref="ILogger{PlaylistItemsProvider}"/> interface.</param> |
| | 38 | | /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param> |
| | 39 | | /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param> |
| | 40 | | public PlaylistItemsProvider(ILogger<PlaylistItemsProvider> logger, ILibraryManager libraryManager, IFileSystem file |
| | 41 | | { |
| 21 | 42 | | _logger = logger; |
| 21 | 43 | | _libraryManager = libraryManager; |
| 21 | 44 | | _fileSystem = fileSystem; |
| 21 | 45 | | } |
| | 46 | |
|
| | 47 | | /// <inheritdoc /> |
| 0 | 48 | | public string Name => "Playlist Item Provider"; |
| | 49 | |
|
| | 50 | | /// <inheritdoc /> |
| 0 | 51 | | public int Order => 100; |
| | 52 | |
|
| | 53 | | /// <inheritdoc /> |
| | 54 | | public Task<MetadataResult<Playlist>> GetMetadata( |
| | 55 | | ItemInfo info, |
| | 56 | | IDirectoryService directoryService, |
| | 57 | | CancellationToken cancellationToken) |
| | 58 | | { |
| 0 | 59 | | var result = new MetadataResult<Playlist>() |
| 0 | 60 | | { |
| 0 | 61 | | Item = new Playlist |
| 0 | 62 | | { |
| 0 | 63 | | Path = info.Path |
| 0 | 64 | | } |
| 0 | 65 | | }; |
| 0 | 66 | | Fetch(result); |
| | 67 | |
|
| 0 | 68 | | return Task.FromResult(result); |
| | 69 | | } |
| | 70 | |
|
| | 71 | | private void Fetch(MetadataResult<Playlist> result) |
| | 72 | | { |
| 0 | 73 | | var item = result.Item; |
| 0 | 74 | | var path = item.Path; |
| 0 | 75 | | if (!Playlist.IsPlaylistFile(path)) |
| | 76 | | { |
| 0 | 77 | | return; |
| | 78 | | } |
| | 79 | |
|
| 0 | 80 | | var extension = Path.GetExtension(path); |
| 0 | 81 | | if (!Playlist.SupportedExtensions.Contains(extension ?? string.Empty, StringComparison.OrdinalIgnoreCase)) |
| | 82 | | { |
| 0 | 83 | | return; |
| | 84 | | } |
| | 85 | |
|
| 0 | 86 | | var items = GetItems(path, extension).ToArray(); |
| 0 | 87 | | if (items.Length > 0) |
| | 88 | | { |
| 0 | 89 | | result.HasMetadata = true; |
| 0 | 90 | | item.LinkedChildren = items; |
| | 91 | | } |
| | 92 | |
|
| 0 | 93 | | return; |
| | 94 | | } |
| | 95 | |
|
| | 96 | | private IEnumerable<LinkedChild> GetItems(string path, string extension) |
| | 97 | | { |
| 0 | 98 | | var libraryRoots = _libraryManager.GetUserRootFolder().Children |
| 0 | 99 | | .OfType<CollectionFolder>() |
| 0 | 100 | | .Where(f => f.CollectionType.HasValue && !_ignoredCollections.Contains(f.CollectionType.Valu |
| 0 | 101 | | .SelectMany(f => f.PhysicalLocations) |
| 0 | 102 | | .Distinct(StringComparer.OrdinalIgnoreCase) |
| 0 | 103 | | .ToList(); |
| | 104 | |
|
| 0 | 105 | | using (var stream = File.OpenRead(path)) |
| | 106 | | { |
| 0 | 107 | | if (string.Equals(".wpl", extension, StringComparison.OrdinalIgnoreCase)) |
| | 108 | | { |
| 0 | 109 | | return GetWplItems(stream, path, libraryRoots); |
| | 110 | | } |
| | 111 | |
|
| 0 | 112 | | if (string.Equals(".zpl", extension, StringComparison.OrdinalIgnoreCase)) |
| | 113 | | { |
| 0 | 114 | | return GetZplItems(stream, path, libraryRoots); |
| | 115 | | } |
| | 116 | |
|
| 0 | 117 | | if (string.Equals(".m3u", extension, StringComparison.OrdinalIgnoreCase)) |
| | 118 | | { |
| 0 | 119 | | return GetM3uItems(stream, path, libraryRoots); |
| | 120 | | } |
| | 121 | |
|
| 0 | 122 | | if (string.Equals(".m3u8", extension, StringComparison.OrdinalIgnoreCase)) |
| | 123 | | { |
| 0 | 124 | | return GetM3uItems(stream, path, libraryRoots); |
| | 125 | | } |
| | 126 | |
|
| 0 | 127 | | if (string.Equals(".pls", extension, StringComparison.OrdinalIgnoreCase)) |
| | 128 | | { |
| 0 | 129 | | return GetPlsItems(stream, path, libraryRoots); |
| | 130 | | } |
| 0 | 131 | | } |
| | 132 | |
|
| 0 | 133 | | return Enumerable.Empty<LinkedChild>(); |
| 0 | 134 | | } |
| | 135 | |
|
| | 136 | | private IEnumerable<LinkedChild> GetPlsItems(Stream stream, string playlistPath, List<string> libraryRoots) |
| | 137 | | { |
| 0 | 138 | | var content = new PlsContent(); |
| 0 | 139 | | var playlist = content.GetFromStream(stream); |
| | 140 | |
|
| 0 | 141 | | return playlist.PlaylistEntries |
| 0 | 142 | | .Select(i => GetLinkedChild(i.Path, playlistPath, libraryRoots)) |
| 0 | 143 | | .Where(i => i is not null); |
| | 144 | | } |
| | 145 | |
|
| | 146 | | private IEnumerable<LinkedChild> GetM3uItems(Stream stream, string playlistPath, List<string> libraryRoots) |
| | 147 | | { |
| 0 | 148 | | var content = new M3uContent(); |
| 0 | 149 | | var playlist = content.GetFromStream(stream); |
| | 150 | |
|
| 0 | 151 | | return playlist.PlaylistEntries |
| 0 | 152 | | .Select(i => GetLinkedChild(i.Path, playlistPath, libraryRoots)) |
| 0 | 153 | | .Where(i => i is not null); |
| | 154 | | } |
| | 155 | |
|
| | 156 | | private IEnumerable<LinkedChild> GetZplItems(Stream stream, string playlistPath, List<string> libraryRoots) |
| | 157 | | { |
| 0 | 158 | | var content = new ZplContent(); |
| 0 | 159 | | var playlist = content.GetFromStream(stream); |
| | 160 | |
|
| 0 | 161 | | return playlist.PlaylistEntries |
| 0 | 162 | | .Select(i => GetLinkedChild(i.Path, playlistPath, libraryRoots)) |
| 0 | 163 | | .Where(i => i is not null); |
| | 164 | | } |
| | 165 | |
|
| | 166 | | private IEnumerable<LinkedChild> GetWplItems(Stream stream, string playlistPath, List<string> libraryRoots) |
| | 167 | | { |
| 0 | 168 | | var content = new WplContent(); |
| 0 | 169 | | var playlist = content.GetFromStream(stream); |
| | 170 | |
|
| 0 | 171 | | return playlist.PlaylistEntries |
| 0 | 172 | | .Select(i => GetLinkedChild(i.Path, playlistPath, libraryRoots)) |
| 0 | 173 | | .Where(i => i is not null); |
| | 174 | | } |
| | 175 | |
|
| | 176 | | private LinkedChild GetLinkedChild(string itemPath, string playlistPath, List<string> libraryRoots) |
| | 177 | | { |
| 0 | 178 | | if (TryGetPlaylistItemPath(itemPath, playlistPath, libraryRoots, out var parsedPath)) |
| | 179 | | { |
| 0 | 180 | | return new LinkedChild |
| 0 | 181 | | { |
| 0 | 182 | | Path = parsedPath, |
| 0 | 183 | | Type = LinkedChildType.Manual |
| 0 | 184 | | }; |
| | 185 | | } |
| | 186 | |
|
| 0 | 187 | | return null; |
| | 188 | | } |
| | 189 | |
|
| | 190 | | private bool TryGetPlaylistItemPath(string itemPath, string playlistPath, List<string> libraryPaths, out string path |
| | 191 | | { |
| 0 | 192 | | path = null; |
| 0 | 193 | | string pathToCheck = _fileSystem.MakeAbsolutePath(Path.GetDirectoryName(playlistPath), itemPath); |
| 0 | 194 | | if (!File.Exists(pathToCheck)) |
| | 195 | | { |
| 0 | 196 | | return false; |
| | 197 | | } |
| | 198 | |
|
| 0 | 199 | | foreach (var libraryPath in libraryPaths) |
| | 200 | | { |
| 0 | 201 | | if (pathToCheck.StartsWith(libraryPath, StringComparison.OrdinalIgnoreCase)) |
| | 202 | | { |
| 0 | 203 | | path = pathToCheck; |
| 0 | 204 | | return true; |
| | 205 | | } |
| | 206 | | } |
| | 207 | |
|
| 0 | 208 | | return false; |
| 0 | 209 | | } |
| | 210 | |
|
| | 211 | | /// <inheritdoc /> |
| | 212 | | public bool HasChanged(BaseItem item, IDirectoryService directoryService) |
| | 213 | | { |
| 0 | 214 | | var path = item.Path; |
| 0 | 215 | | if (!string.IsNullOrWhiteSpace(path) && item.IsFileProtocol) |
| | 216 | | { |
| 0 | 217 | | var file = directoryService.GetFile(path); |
| 0 | 218 | | if (file is not null && file.LastWriteTimeUtc != item.DateModified) |
| | 219 | | { |
| 0 | 220 | | _logger.LogDebug("Refreshing {Path} due to date modified timestamp change.", path); |
| 0 | 221 | | return true; |
| | 222 | | } |
| | 223 | | } |
| | 224 | |
|
| 0 | 225 | | return false; |
| | 226 | | } |
| | 227 | | } |