jellyfin/MediaBrowser.Controller/Playlists/Playlist.cs

274 lines
7.9 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
using System.Collections.Generic;
using System.IO;
2018-12-27 18:27:57 -05:00
using System.Linq;
2019-10-15 11:49:49 -04:00
using System.Text.Json.Serialization;
using System.Threading;
2018-12-27 18:27:57 -05:00
using System.Threading.Tasks;
2020-05-20 13:07:53 -04:00
using Jellyfin.Data.Entities;
2020-06-30 21:44:41 -04:00
using Jellyfin.Data.Enums;
2018-12-27 18:27:57 -05:00
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
2018-12-27 18:27:57 -05:00
using MediaBrowser.Controller.Providers;
2023-03-10 11:46:59 -05:00
using MediaBrowser.Model.Entities;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Playlists
{
public class Playlist : Folder, IHasShares
{
2024-03-26 10:29:48 -04:00
public static readonly IReadOnlyList<string> SupportedExtensions =
[
2021-05-15 17:33:50 -04:00
".m3u",
".m3u8",
".pls",
".wpl",
".zpl"
2024-03-26 10:29:48 -04:00
];
2018-12-27 18:27:57 -05:00
public Playlist()
{
2024-03-26 18:45:14 -04:00
Shares = [];
OpenAccess = false;
2018-12-27 18:27:57 -05:00
}
public Guid OwnerUserId { get; set; }
public bool OpenAccess { get; set; }
2024-04-01 13:59:48 -04:00
public IReadOnlyList<PlaylistUserPermissions> Shares { get; set; }
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public bool IsFile => IsPlaylistFile(Path);
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
2018-12-27 18:27:57 -05:00
public override string ContainingFolderPath
{
get
{
var path = Path;
if (IsPlaylistFile(path))
{
return System.IO.Path.GetDirectoryName(path);
2018-12-27 18:27:57 -05:00
}
return path;
}
}
2019-10-15 11:49:49 -04:00
[JsonIgnore]
protected override bool FilterLinkedChildrenPerUser => true;
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool SupportsInheritedParentImages => false;
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool SupportsPlayedStatus => MediaType == Jellyfin.Data.Enums.MediaType.Video;
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool AlwaysScanInternalMetadataPath => true;
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool SupportsCumulativeRunTimeTicks => true;
2018-12-27 18:27:57 -05: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-27 18:27:57 -05:00
public override double GetDefaultPrimaryImageAspectRatio()
{
return 1;
}
2020-05-20 13:07:53 -04:00
public override bool IsAuthorizedToDelete(User user, List<Folder> allCollectionFolders)
2018-12-27 18:27:57 -05:00
{
return true;
}
public override bool IsSaveLocalMetadataEnabled()
{
return true;
}
protected override List<BaseItem> LoadChildren()
{
// Save a trip to the database
2024-03-26 18:45:14 -04:00
return [];
2018-12-27 18:27:57 -05:00
}
protected override Task ValidateChildrenInternal(IProgress<double> progress, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService, CancellationToken cancellationToken)
2018-12-27 18:27:57 -05:00
{
2018-12-27 16:43:48 -05:00
return Task.CompletedTask;
2018-12-27 18:27:57 -05:00
}
2020-05-20 13:07:53 -04:00
public override List<BaseItem> GetChildren(User user, bool includeLinkedChildren, InternalItemsQuery query)
2018-12-27 18:27:57 -05:00
{
return GetPlayableItems(user, query);
}
protected override IEnumerable<BaseItem> GetNonCachedChildren(IDirectoryService directoryService)
{
2024-03-26 18:45:14 -04:00
return [];
2018-12-27 18:27:57 -05:00
}
2020-05-20 13:07:53 -04:00
public override IEnumerable<BaseItem> GetRecursiveChildren(User user, InternalItemsQuery query)
2018-12-27 18:27:57 -05:00
{
return GetPlayableItems(user, query);
}
public IEnumerable<Tuple<LinkedChild, BaseItem>> GetManageableItems()
{
return GetLinkedChildrenInfos();
}
2020-05-20 13:07:53 -04:00
private List<BaseItem> GetPlayableItems(User user, InternalItemsQuery query)
2018-12-27 18:27:57 -05:00
{
query ??= new InternalItemsQuery(user);
2018-12-27 18:27:57 -05:00
query.IsFolder = false;
return base.GetChildren(user, true, query);
}
2024-03-26 18:45:14 -04:00
public static IReadOnlyList<BaseItem> GetPlaylistItems(MediaType playlistMediaType, IEnumerable<BaseItem> inputItems, User user, DtoOptions options)
2018-12-27 18:27:57 -05:00
{
2022-12-05 09:01:13 -05:00
if (user is not null)
2018-12-27 18:27:57 -05: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-27 18:27:57 -05:00
{
2018-12-27 16:43:48 -05:00
if (item is MusicGenre musicGenre)
2018-12-27 18:27:57 -05:00
{
return LibraryManager.GetItemList(new InternalItemsQuery(user)
{
Recursive = true,
2024-03-26 10:29:48 -04:00
IncludeItemTypes = [BaseItemKind.Audio],
GenreIds = [musicGenre.Id],
OrderBy = [(ItemSortBy.AlbumArtist, SortOrder.Ascending), (ItemSortBy.Album, SortOrder.Ascending), (ItemSortBy.SortName, SortOrder.Ascending)],
2018-12-27 18:27:57 -05:00
DtoOptions = options
});
}
2018-12-27 16:43:48 -05:00
if (item is MusicArtist musicArtist)
2018-12-27 18:27:57 -05:00
{
return LibraryManager.GetItemList(new InternalItemsQuery(user)
{
Recursive = true,
2024-03-26 10:29:48 -04:00
IncludeItemTypes = [BaseItemKind.Audio],
ArtistIds = [musicArtist.Id],
OrderBy = [(ItemSortBy.AlbumArtist, SortOrder.Ascending), (ItemSortBy.Album, SortOrder.Ascending), (ItemSortBy.SortName, SortOrder.Ascending)],
2018-12-27 18:27:57 -05:00
DtoOptions = options
});
}
2018-12-27 16:43:48 -05:00
if (item is Folder folder)
2018-12-27 18:27:57 -05:00
{
var query = new InternalItemsQuery(user)
{
Recursive = true,
IsFolder = false,
2024-03-26 10:29:48 -04:00
OrderBy = [(ItemSortBy.SortName, SortOrder.Ascending)],
MediaTypes = [mediaType],
2018-12-27 18:27:57 -05:00
EnableTotalRecordCount = false,
DtoOptions = options
};
return folder.GetItemList(query);
}
2024-03-26 10:29:48 -04:00
return [item];
2018-12-27 18:27:57 -05:00
}
2020-05-20 13:07:53 -04:00
public override bool IsVisible(User user)
2018-12-27 18:27:57 -05:00
{
if (!IsSharedItem)
{
return base.IsVisible(user);
}
if (OpenAccess)
{
return true;
}
2023-03-12 14:42:18 -04:00
var userId = user.Id;
if (userId.Equals(OwnerUserId))
2018-12-27 18:27:57 -05:00
{
return true;
}
var shares = Shares;
2024-03-26 10:29:48 -04:00
if (shares.Count == 0)
2018-12-27 18:27:57 -05:00
{
2023-03-12 14:42:18 -04:00
return false;
2018-12-27 18:27:57 -05:00
}
2024-04-01 14:43:05 -04:00
return shares.Any(s => s.UserId.Equals(userId));
2018-12-27 18:27:57 -05:00
}
public override bool CanDelete(User user)
{
return user.HasPermission(PermissionKind.IsAdministrator) || user.Id.Equals(OwnerUserId);
}
2020-05-20 13:07:53 -04:00
public override bool IsVisibleStandalone(User user)
2018-12-27 18:27:57 -05:00
{
if (!IsSharedItem)
{
return base.IsVisibleStandalone(user);
}
return IsVisible(user);
}
}
}