2021-10-26 13:49:01 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-06-19 18:24:13 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:03:10 +00:00
|
|
|
using System;
|
2019-01-13 19:26:31 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
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;
|
2019-01-13 19:26:31 +00:00
|
|
|
using MediaBrowser.Controller.Playlists;
|
2018-09-12 17:26:21 +00:00
|
|
|
using MediaBrowser.Controller.Providers;
|
2018-12-13 13:18:25 +00:00
|
|
|
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
|
|
|
|
{
|
2020-06-06 00:15:56 +00:00
|
|
|
private readonly ILogger<PlaylistItemsProvider> _logger;
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2020-09-07 11:20:39 +00:00
|
|
|
public PlaylistItemsProvider(ILogger<PlaylistItemsProvider> logger)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
|
|
|
_logger = logger;
|
|
|
|
}
|
|
|
|
|
2019-01-13 20:31:14 +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
|
|
|
|
|
|
|
return Task.FromResult(ItemUpdateType.None);
|
|
|
|
}
|
|
|
|
|
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-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))
|
|
|
|
{
|
|
|
|
return GetWplItems(stream, path);
|
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2024-05-06 01:22:21 +00:00
|
|
|
if (string.Equals(".zpl", extension, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return GetZplItems(stream, path);
|
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2024-05-06 01:22:21 +00:00
|
|
|
if (string.Equals(".m3u", extension, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return GetM3uItems(stream, path);
|
|
|
|
}
|
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 14:10:37 +00:00
|
|
|
return GetM3uItems(stream, path);
|
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))
|
|
|
|
{
|
|
|
|
return GetPlsItems(stream, path);
|
|
|
|
}
|
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-06 01:22:21 +00:00
|
|
|
private IEnumerable<LinkedChild> GetPlsItems(Stream stream, string path)
|
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
|
|
|
|
.Select(i => GetLinkedChild(i.Path, path))
|
|
|
|
.Where(i => i is not null);
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
|
2024-05-06 01:22:21 +00:00
|
|
|
private IEnumerable<LinkedChild> GetM3uItems(Stream stream, string path)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
|
|
|
var content = new M3uContent();
|
|
|
|
var playlist = content.GetFromStream(stream);
|
|
|
|
|
2024-05-16 14:10:37 +00:00
|
|
|
return playlist.PlaylistEntries
|
|
|
|
.Select(i => GetLinkedChild(i.Path, path))
|
|
|
|
.Where(i => i is not null);
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
|
2024-05-06 01:22:21 +00:00
|
|
|
private IEnumerable<LinkedChild> GetZplItems(Stream stream, string path)
|
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
|
|
|
|
.Select(i => GetLinkedChild(i.Path, path))
|
|
|
|
.Where(i => i is not null);
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
|
2024-05-06 01:22:21 +00:00
|
|
|
private IEnumerable<LinkedChild> GetWplItems(Stream stream, string path)
|
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
|
|
|
|
.Select(i => GetLinkedChild(i.Path, path))
|
|
|
|
.Where(i => i is not null);
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
|
2024-05-16 14:10:37 +00:00
|
|
|
private LinkedChild GetLinkedChild(string itemPath, string playlistPath)
|
2024-05-06 01:22:21 +00:00
|
|
|
{
|
2024-05-16 14:10:37 +00:00
|
|
|
if (TryGetPlaylistItemPath(itemPath, playlistPath, out var parsedPath))
|
2024-05-06 01:22: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool TryGetPlaylistItemPath(string itemPath, string playlistPath, out string path)
|
|
|
|
{
|
|
|
|
path = null;
|
|
|
|
var baseFolder = Path.GetDirectoryName(playlistPath);
|
|
|
|
|
|
|
|
if (itemPath.StartsWith(baseFolder, StringComparison.OrdinalIgnoreCase) && File.Exists(itemPath))
|
|
|
|
{
|
|
|
|
path = itemPath;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
var basePath = Path.Combine(baseFolder, itemPath);
|
|
|
|
var fullPath = Path.GetFullPath(basePath);
|
|
|
|
if (fullPath.StartsWith(baseFolder, StringComparison.OrdinalIgnoreCase) && File.Exists(fullPath))
|
|
|
|
{
|
|
|
|
path = fullPath;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|