jellyfin/MediaBrowser.Controller/Playlists/Playlist.cs

273 lines
7.8 KiB
C#
Raw Permalink 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;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Playlists
{
public class Playlist : Folder, IHasShares
{
2024-03-26 15:29:48 +01:00
public static readonly IReadOnlyList<string> SupportedExtensions =
[
2021-05-15 23:33:50 +02:00
".m3u",
".m3u8",
".pls",
".wpl",
".zpl"
2024-03-26 15:29:48 +01:00
];
2018-12-28 00:27:57 +01:00
public Playlist()
{
2024-03-26 23:45:14 +01:00
Shares = [];
OpenAccess = false;
2018-12-28 00:27:57 +01:00
}
public Guid OwnerUserId { get; set; }
public bool OpenAccess { get; set; }
2024-04-01 19:59:48 +02:00
public IReadOnlyList<PlaylistUserPermissions> 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 => MediaType == Jellyfin.Data.Enums.MediaType.Video;
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 MediaType PlaylistMediaType { get; set; }
[JsonIgnore]
public override MediaType 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(MediaType? value)
{
PlaylistMediaType = value ?? MediaType.Unknown;
}
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
2024-03-26 23:45:14 +01:00
return [];
2018-12-28 00:27:57 +01:00
}
protected override Task ValidateChildrenInternal(IProgress<double> progress, bool recursive, bool refreshChildMetadata, bool allowRemoveRoot, 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)
{
2024-03-26 23:45:14 +01:00
return [];
2018-12-28 00:27:57 +01:00
}
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);
}
2024-03-26 23:45:14 +01:00
public static IReadOnlyList<BaseItem> GetPlaylistItems(MediaType 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;
}
private static IEnumerable<BaseItem> GetPlaylistItems(BaseItem item, User user, MediaType 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,
2024-03-26 15:29:48 +01:00
IncludeItemTypes = [BaseItemKind.Audio],
GenreIds = [musicGenre.Id],
OrderBy = [(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,
2024-03-26 15:29:48 +01:00
IncludeItemTypes = [BaseItemKind.Audio],
ArtistIds = [musicArtist.Id],
OrderBy = [(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,
2024-03-26 15:29:48 +01:00
MediaTypes = [mediaType],
2018-12-28 00:27:57 +01:00
EnableTotalRecordCount = false,
DtoOptions = options
};
return folder.GetItemList(query);
}
2024-03-26 15:29:48 +01:00
return [item];
2018-12-28 00:27:57 +01:00
}
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);
}
if (OpenAccess)
{
return true;
}
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;
2024-03-26 15:29:48 +01:00
if (shares.Count == 0)
2018-12-28 00:27:57 +01:00
{
2023-03-12 19:42:18 +01:00
return false;
2018-12-28 00:27:57 +01:00
}
2024-04-01 20:43:05 +02:00
return shares.Any(s => s.UserId.Equals(userId));
2018-12-28 00:27:57 +01:00
}
public override bool CanDelete(User user)
{
return user.HasPermission(PermissionKind.IsAdministrator) || user.Id.Equals(OwnerUserId);
}
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);
}
}
}