jellyfin/MediaBrowser.Controller/Playlists/Playlist.cs

262 lines
7.7 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
2018-12-28 00:27:57 +01:00
using System.Collections.Generic;
using System.IO;
2018-12-28 00:27:57 +01:00
using System.Linq;
2019-10-15 17:49:49 +02:00
using System.Text.Json.Serialization;
using System.Threading;
2018-12-28 00:27:57 +01:00
using System.Threading.Tasks;
2020-05-20 19:07:53 +02:00
using Jellyfin.Data.Entities;
2020-07-01 03:44:41 +02:00
using Jellyfin.Data.Enums;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Controller.Providers;
2023-03-10 17:46:59 +01:00
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Querying;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Playlists
{
public class Playlist : Folder, IHasShares
{
2021-05-15 23:33:50 +02:00
public static readonly IReadOnlyList<string> SupportedExtensions = new[]
{
".m3u",
".m3u8",
".pls",
".wpl",
".zpl"
};
2018-12-28 00:27:57 +01:00
public Playlist()
{
2018-12-27 22:43:48 +01:00
Shares = Array.Empty<Share>();
2018-12-28 00:27:57 +01:00
}
public Guid OwnerUserId { get; set; }
public Share[] Shares { get; set; }
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public bool IsFile => IsPlaylistFile(Path);
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
2018-12-28 00:27:57 +01:00
public override string ContainingFolderPath
{
get
{
var path = Path;
if (IsPlaylistFile(path))
{
return System.IO.Path.GetDirectoryName(path);
2018-12-28 00:27:57 +01:00
}
return path;
}
}
2019-10-15 17:49:49 +02:00
[JsonIgnore]
protected override bool FilterLinkedChildrenPerUser => true;
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool SupportsInheritedParentImages => false;
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool SupportsPlayedStatus => string.Equals(MediaType, "Video", StringComparison.OrdinalIgnoreCase);
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool AlwaysScanInternalMetadataPath => true;
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool SupportsCumulativeRunTimeTicks => true;
2018-12-28 00:27:57 +01:00
[JsonIgnore]
public override bool IsPreSorted => true;
public string PlaylistMediaType { get; set; }
[JsonIgnore]
public override string MediaType => PlaylistMediaType;
[JsonIgnore]
private bool IsSharedItem
{
get
{
var path = Path;
if (string.IsNullOrEmpty(path))
{
return false;
}
return FileSystem.ContainsSubPath(ConfigurationManager.ApplicationPaths.DataPath, path);
}
}
public static bool IsPlaylistFile(string path)
{
// The path will sometimes be a directory and "Path.HasExtension" returns true if the name contains a '.' (dot).
return System.IO.Path.HasExtension(path) && !Directory.Exists(path);
}
public void SetMediaType(string value)
{
PlaylistMediaType = value;
}
2018-12-28 00:27:57 +01:00
public override double GetDefaultPrimaryImageAspectRatio()
{
return 1;
}
2020-05-20 19:07:53 +02:00
public override bool IsAuthorizedToDelete(User user, List<Folder> allCollectionFolders)
2018-12-28 00:27:57 +01:00
{
return true;
}
public override bool IsSaveLocalMetadataEnabled()
{
return true;
}
protected override List<BaseItem> LoadChildren()
{
// Save a trip to the database
return new List<BaseItem>();
}
protected override Task ValidateChildrenInternal(IProgress<double> progress, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService, CancellationToken cancellationToken)
2018-12-28 00:27:57 +01:00
{
2018-12-27 22:43:48 +01:00
return Task.CompletedTask;
2018-12-28 00:27:57 +01:00
}
2020-05-20 19:07:53 +02:00
public override List<BaseItem> GetChildren(User user, bool includeLinkedChildren, InternalItemsQuery query)
2018-12-28 00:27:57 +01:00
{
return GetPlayableItems(user, query);
}
protected override IEnumerable<BaseItem> GetNonCachedChildren(IDirectoryService directoryService)
{
return new List<BaseItem>();
}
2020-05-20 19:07:53 +02:00
public override IEnumerable<BaseItem> GetRecursiveChildren(User user, InternalItemsQuery query)
2018-12-28 00:27:57 +01:00
{
return GetPlayableItems(user, query);
}
public IEnumerable<Tuple<LinkedChild, BaseItem>> GetManageableItems()
{
return GetLinkedChildrenInfos();
}
2020-05-20 19:07:53 +02:00
private List<BaseItem> GetPlayableItems(User user, InternalItemsQuery query)
2018-12-28 00:27:57 +01:00
{
query ??= new InternalItemsQuery(user);
2018-12-28 00:27:57 +01:00
query.IsFolder = false;
return base.GetChildren(user, true, query);
}
2020-05-20 19:07:53 +02:00
public static List<BaseItem> GetPlaylistItems(string playlistMediaType, IEnumerable<BaseItem> inputItems, User user, DtoOptions options)
2018-12-28 00:27:57 +01:00
{
2022-12-05 15:01:13 +01:00
if (user is not null)
2018-12-28 00:27:57 +01:00
{
inputItems = inputItems.Where(i => i.IsVisible(user));
}
var list = new List<BaseItem>();
foreach (var item in inputItems)
{
var playlistItems = GetPlaylistItems(item, user, playlistMediaType, options);
list.AddRange(playlistItems);
}
return list;
}
2020-05-20 19:07:53 +02:00
private static IEnumerable<BaseItem> GetPlaylistItems(BaseItem item, User user, string mediaType, DtoOptions options)
2018-12-28 00:27:57 +01:00
{
2018-12-27 22:43:48 +01:00
if (item is MusicGenre musicGenre)
2018-12-28 00:27:57 +01:00
{
return LibraryManager.GetItemList(new InternalItemsQuery(user)
{
Recursive = true,
2021-12-12 03:31:30 +01:00
IncludeItemTypes = new[] { BaseItemKind.Audio },
2018-12-28 00:27:57 +01:00
GenreIds = new[] { musicGenre.Id },
2021-04-21 22:25:08 +02:00
OrderBy = new[] { (ItemSortBy.AlbumArtist, SortOrder.Ascending), (ItemSortBy.Album, SortOrder.Ascending), (ItemSortBy.SortName, SortOrder.Ascending) },
2018-12-28 00:27:57 +01:00
DtoOptions = options
});
}
2018-12-27 22:43:48 +01:00
if (item is MusicArtist musicArtist)
2018-12-28 00:27:57 +01:00
{
return LibraryManager.GetItemList(new InternalItemsQuery(user)
{
Recursive = true,
2021-12-12 03:31:30 +01:00
IncludeItemTypes = new[] { BaseItemKind.Audio },
2018-12-28 00:27:57 +01:00
ArtistIds = new[] { musicArtist.Id },
2021-04-21 22:25:08 +02:00
OrderBy = new[] { (ItemSortBy.AlbumArtist, SortOrder.Ascending), (ItemSortBy.Album, SortOrder.Ascending), (ItemSortBy.SortName, SortOrder.Ascending) },
2018-12-28 00:27:57 +01:00
DtoOptions = options
});
}
2018-12-27 22:43:48 +01:00
if (item is Folder folder)
2018-12-28 00:27:57 +01:00
{
var query = new InternalItemsQuery(user)
{
Recursive = true,
IsFolder = false,
2019-10-20 16:08:40 +02:00
OrderBy = new[] { (ItemSortBy.SortName, SortOrder.Ascending) },
2018-12-28 00:27:57 +01:00
MediaTypes = new[] { mediaType },
EnableTotalRecordCount = false,
DtoOptions = options
};
return folder.GetItemList(query);
}
return new[] { item };
}
2020-05-20 19:07:53 +02:00
public override bool IsVisible(User user)
2018-12-28 00:27:57 +01:00
{
if (!IsSharedItem)
{
return base.IsVisible(user);
}
2023-03-12 19:42:18 +01:00
var userId = user.Id;
if (userId.Equals(OwnerUserId))
2018-12-28 00:27:57 +01:00
{
return true;
}
var shares = Shares;
if (shares.Length == 0)
{
2023-03-12 19:42:18 +01:00
return false;
2018-12-28 00:27:57 +01:00
}
return shares.Any(share => Guid.TryParse(share.UserId, out var id) && id.Equals(userId));
2018-12-28 00:27:57 +01:00
}
2020-05-20 19:07:53 +02:00
public override bool IsVisibleStandalone(User user)
2018-12-28 00:27:57 +01:00
{
if (!IsSharedItem)
{
return base.IsVisibleStandalone(user);
}
return IsVisible(user);
}
}
}