jellyfin/MediaBrowser.Providers/Playlists/PlaylistItemsProvider.cs

171 lines
5.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;
2021-12-20 13:31:07 +01:00
using Jellyfin.Extensions;
2018-09-12 19:26:21 +02:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Playlists;
2018-09-12 19:26:21 +02:00
using MediaBrowser.Controller.Providers;
using Microsoft.Extensions.Logging;
2018-09-12 19:26:21 +02:00
using PlaylistsNET.Content;
namespace MediaBrowser.Providers.Playlists
{
public class PlaylistItemsProvider : ICustomMetadataProvider<Playlist>,
IHasOrder,
IForcedProvider,
IPreRefreshProvider,
IHasItemChangeMonitor
{
2020-06-06 02:15:56 +02:00
private readonly ILogger<PlaylistItemsProvider> _logger;
2018-09-12 19:26:21 +02:00
2020-09-07 13:20:39 +02:00
public PlaylistItemsProvider(ILogger<PlaylistItemsProvider> logger)
2018-09-12 19:26:21 +02:00
{
_logger = logger;
}
public string Name => "Playlist Reader";
2018-09-12 19:26:21 +02:00
2020-09-07 13:20:39 +02:00
// Run last
public int Order => 100;
2018-09-12 19:26:21 +02: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 13:31:07 +01:00
if (!Playlist.SupportedExtensions.Contains(extension ?? string.Empty, StringComparison.OrdinalIgnoreCase))
2018-09-12 19:26:21 +02:00
{
return Task.FromResult(ItemUpdateType.None);
}
2019-01-26 22:31:59 +01:00
using (var stream = File.OpenRead(path))
2018-09-12 19:26:21 +02:00
{
var items = GetItems(stream, extension).ToArray();
item.LinkedChildren = items;
}
return Task.FromResult(ItemUpdateType.None);
}
private IEnumerable<LinkedChild> GetItems(Stream stream, string extension)
{
if (string.Equals(".wpl", extension, StringComparison.OrdinalIgnoreCase))
{
return GetWplItems(stream);
}
2020-06-15 23:43:52 +02:00
2018-09-12 19:26:21 +02:00
if (string.Equals(".zpl", extension, StringComparison.OrdinalIgnoreCase))
{
return GetZplItems(stream);
}
2020-06-15 23:43:52 +02:00
2018-09-12 19:26:21 +02:00
if (string.Equals(".m3u", extension, StringComparison.OrdinalIgnoreCase))
{
return GetM3uItems(stream);
}
2020-06-15 23:43:52 +02:00
2018-09-12 19:26:21 +02:00
if (string.Equals(".m3u8", extension, StringComparison.OrdinalIgnoreCase))
{
return GetM3u8Items(stream);
}
2020-06-15 23:43:52 +02:00
2018-09-12 19:26:21 +02:00
if (string.Equals(".pls", extension, StringComparison.OrdinalIgnoreCase))
{
return GetPlsItems(stream);
}
return new List<LinkedChild>();
}
private IEnumerable<LinkedChild> GetPlsItems(Stream stream)
{
var content = new PlsContent();
var playlist = content.GetFromStream(stream);
return playlist.PlaylistEntries.Select(i => new LinkedChild
{
Path = i.Path,
Type = LinkedChildType.Manual
});
}
private IEnumerable<LinkedChild> GetM3u8Items(Stream stream)
{
2020-06-15 16:34:24 +02:00
var content = new M3uContent();
2018-09-12 19:26:21 +02:00
var playlist = content.GetFromStream(stream);
return playlist.PlaylistEntries.Select(i => new LinkedChild
{
Path = i.Path,
Type = LinkedChildType.Manual
});
}
private IEnumerable<LinkedChild> GetM3uItems(Stream stream)
{
var content = new M3uContent();
var playlist = content.GetFromStream(stream);
return playlist.PlaylistEntries.Select(i => new LinkedChild
{
Path = i.Path,
Type = LinkedChildType.Manual
});
}
private IEnumerable<LinkedChild> GetZplItems(Stream stream)
{
var content = new ZplContent();
var playlist = content.GetFromStream(stream);
return playlist.PlaylistEntries.Select(i => new LinkedChild
{
Path = i.Path,
Type = LinkedChildType.Manual
});
}
private IEnumerable<LinkedChild> GetWplItems(Stream stream)
{
2019-01-13 21:37:13 +01:00
var content = new WplContent();
2018-09-12 19:26:21 +02:00
var playlist = content.GetFromStream(stream);
return playlist.PlaylistEntries.Select(i => new LinkedChild
{
Path = i.Path,
Type = LinkedChildType.Manual
});
}
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 15:01:13 +01:00
if (file is not null && file.LastWriteTimeUtc != item.DateModified)
2018-09-12 19:26:21 +02:00
{
_logger.LogDebug("Refreshing {0} due to date modified timestamp change.", path);
2018-09-12 19:26:21 +02:00
return true;
}
}
return false;
}
}
}