| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.IO; |
| | 8 | | using System.Linq; |
| | 9 | | using System.Text.Json.Serialization; |
| | 10 | | using System.Threading; |
| | 11 | | using System.Threading.Tasks; |
| | 12 | | using Jellyfin.Data; |
| | 13 | | using Jellyfin.Data.Enums; |
| | 14 | | using Jellyfin.Database.Implementations.Entities; |
| | 15 | | using Jellyfin.Database.Implementations.Enums; |
| | 16 | | using MediaBrowser.Controller.Dto; |
| | 17 | | using MediaBrowser.Controller.Entities; |
| | 18 | | using MediaBrowser.Controller.Entities.Audio; |
| | 19 | | using MediaBrowser.Controller.Providers; |
| | 20 | | using MediaBrowser.Model.Entities; |
| | 21 | |
|
| | 22 | | namespace MediaBrowser.Controller.Playlists |
| | 23 | | { |
| | 24 | | public class Playlist : Folder, IHasShares |
| | 25 | | { |
| 1 | 26 | | public static readonly IReadOnlyList<string> SupportedExtensions = |
| 1 | 27 | | [ |
| 1 | 28 | | ".m3u", |
| 1 | 29 | | ".m3u8", |
| 1 | 30 | | ".pls", |
| 1 | 31 | | ".wpl", |
| 1 | 32 | | ".zpl" |
| 1 | 33 | | ]; |
| | 34 | |
|
| 1 | 35 | | public Playlist() |
| | 36 | | { |
| 1 | 37 | | Shares = []; |
| 1 | 38 | | OpenAccess = false; |
| 1 | 39 | | } |
| | 40 | |
|
| | 41 | | public Guid OwnerUserId { get; set; } |
| | 42 | |
|
| | 43 | | public bool OpenAccess { get; set; } |
| | 44 | |
|
| | 45 | | public IReadOnlyList<PlaylistUserPermissions> Shares { get; set; } |
| | 46 | |
|
| | 47 | | [JsonIgnore] |
| 0 | 48 | | public bool IsFile => IsPlaylistFile(Path); |
| | 49 | |
|
| | 50 | | [JsonIgnore] |
| | 51 | | public override string ContainingFolderPath |
| | 52 | | { |
| | 53 | | get |
| | 54 | | { |
| 0 | 55 | | var path = Path; |
| | 56 | |
|
| 0 | 57 | | if (IsPlaylistFile(path)) |
| | 58 | | { |
| 0 | 59 | | return System.IO.Path.GetDirectoryName(path); |
| | 60 | | } |
| | 61 | |
|
| 0 | 62 | | return path; |
| | 63 | | } |
| | 64 | | } |
| | 65 | |
|
| | 66 | | [JsonIgnore] |
| 0 | 67 | | protected override bool FilterLinkedChildrenPerUser => true; |
| | 68 | |
|
| | 69 | | [JsonIgnore] |
| 0 | 70 | | public override bool SupportsInheritedParentImages => false; |
| | 71 | |
|
| | 72 | | [JsonIgnore] |
| 0 | 73 | | public override bool SupportsPlayedStatus => MediaType == Jellyfin.Data.Enums.MediaType.Video; |
| | 74 | |
|
| | 75 | | [JsonIgnore] |
| 0 | 76 | | public override bool AlwaysScanInternalMetadataPath => true; |
| | 77 | |
|
| | 78 | | [JsonIgnore] |
| 0 | 79 | | public override bool SupportsCumulativeRunTimeTicks => true; |
| | 80 | |
|
| | 81 | | [JsonIgnore] |
| 0 | 82 | | public override bool IsPreSorted => true; |
| | 83 | |
|
| | 84 | | public MediaType PlaylistMediaType { get; set; } |
| | 85 | |
|
| | 86 | | [JsonIgnore] |
| 0 | 87 | | public override MediaType MediaType => PlaylistMediaType; |
| | 88 | |
|
| | 89 | | [JsonIgnore] |
| | 90 | | private bool IsSharedItem |
| | 91 | | { |
| | 92 | | get |
| | 93 | | { |
| 0 | 94 | | var path = Path; |
| | 95 | |
|
| 0 | 96 | | if (string.IsNullOrEmpty(path)) |
| | 97 | | { |
| 0 | 98 | | return false; |
| | 99 | | } |
| | 100 | |
|
| 0 | 101 | | return FileSystem.ContainsSubPath(ConfigurationManager.ApplicationPaths.DataPath, path); |
| | 102 | | } |
| | 103 | | } |
| | 104 | |
|
| | 105 | | public static bool IsPlaylistFile(string path) |
| | 106 | | { |
| | 107 | | // The path will sometimes be a directory and "Path.HasExtension" returns true if the name contains a '.' (d |
| 0 | 108 | | return System.IO.Path.HasExtension(path) && !Directory.Exists(path); |
| | 109 | | } |
| | 110 | |
|
| | 111 | | public void SetMediaType(MediaType? value) |
| | 112 | | { |
| 0 | 113 | | PlaylistMediaType = value ?? MediaType.Unknown; |
| 0 | 114 | | } |
| | 115 | |
|
| | 116 | | public override double GetDefaultPrimaryImageAspectRatio() |
| | 117 | | { |
| 0 | 118 | | return 1; |
| | 119 | | } |
| | 120 | |
|
| | 121 | | public override bool IsAuthorizedToDelete(User user, List<Folder> allCollectionFolders) |
| | 122 | | { |
| 0 | 123 | | return true; |
| | 124 | | } |
| | 125 | |
|
| | 126 | | public override bool IsSaveLocalMetadataEnabled() |
| | 127 | | { |
| 0 | 128 | | return true; |
| | 129 | | } |
| | 130 | |
|
| | 131 | | protected override List<BaseItem> LoadChildren() |
| | 132 | | { |
| | 133 | | // Save a trip to the database |
| 0 | 134 | | return []; |
| | 135 | | } |
| | 136 | |
|
| | 137 | | protected override Task ValidateChildrenInternal(IProgress<double> progress, bool recursive, bool refreshChildMe |
| | 138 | | { |
| 0 | 139 | | return Task.CompletedTask; |
| | 140 | | } |
| | 141 | |
|
| | 142 | | public override IReadOnlyList<BaseItem> GetChildren(User user, bool includeLinkedChildren, InternalItemsQuery qu |
| | 143 | | { |
| 0 | 144 | | return GetPlayableItems(user, query); |
| | 145 | | } |
| | 146 | |
|
| | 147 | | protected override IReadOnlyList<BaseItem> GetNonCachedChildren(IDirectoryService directoryService) |
| | 148 | | { |
| 0 | 149 | | return []; |
| | 150 | | } |
| | 151 | |
|
| | 152 | | public override IReadOnlyList<BaseItem> GetRecursiveChildren(User user, InternalItemsQuery query) |
| | 153 | | { |
| 0 | 154 | | return GetPlayableItems(user, query); |
| | 155 | | } |
| | 156 | |
|
| | 157 | | public IReadOnlyList<Tuple<LinkedChild, BaseItem>> GetManageableItems() |
| | 158 | | { |
| 0 | 159 | | return GetLinkedChildrenInfos(); |
| | 160 | | } |
| | 161 | |
|
| | 162 | | private IReadOnlyList<BaseItem> GetPlayableItems(User user, InternalItemsQuery query) |
| | 163 | | { |
| 0 | 164 | | query ??= new InternalItemsQuery(user); |
| | 165 | |
|
| 0 | 166 | | query.IsFolder = false; |
| | 167 | |
|
| 0 | 168 | | return base.GetChildren(user, true, query); |
| | 169 | | } |
| | 170 | |
|
| | 171 | | public static IReadOnlyList<BaseItem> GetPlaylistItems(IEnumerable<BaseItem> inputItems, User user, DtoOptions o |
| | 172 | | { |
| 0 | 173 | | if (user is not null) |
| | 174 | | { |
| 0 | 175 | | inputItems = inputItems.Where(i => i.IsVisible(user)); |
| | 176 | | } |
| | 177 | |
|
| 0 | 178 | | var list = new List<BaseItem>(); |
| | 179 | |
|
| 0 | 180 | | foreach (var item in inputItems) |
| | 181 | | { |
| 0 | 182 | | var playlistItems = GetPlaylistItems(item, user, options); |
| 0 | 183 | | list.AddRange(playlistItems); |
| | 184 | | } |
| | 185 | |
|
| 0 | 186 | | return list; |
| | 187 | | } |
| | 188 | |
|
| | 189 | | private static IEnumerable<BaseItem> GetPlaylistItems(BaseItem item, User user, DtoOptions options) |
| | 190 | | { |
| 0 | 191 | | if (item is MusicGenre musicGenre) |
| | 192 | | { |
| 0 | 193 | | return LibraryManager.GetItemList(new InternalItemsQuery(user) |
| 0 | 194 | | { |
| 0 | 195 | | Recursive = true, |
| 0 | 196 | | IncludeItemTypes = [BaseItemKind.Audio], |
| 0 | 197 | | GenreIds = [musicGenre.Id], |
| 0 | 198 | | OrderBy = [(ItemSortBy.AlbumArtist, SortOrder.Ascending), (ItemSortBy.Album, SortOrder.Ascending), ( |
| 0 | 199 | | DtoOptions = options |
| 0 | 200 | | }); |
| | 201 | | } |
| | 202 | |
|
| 0 | 203 | | if (item is MusicArtist musicArtist) |
| | 204 | | { |
| 0 | 205 | | return LibraryManager.GetItemList(new InternalItemsQuery(user) |
| 0 | 206 | | { |
| 0 | 207 | | Recursive = true, |
| 0 | 208 | | IncludeItemTypes = [BaseItemKind.Audio], |
| 0 | 209 | | ArtistIds = [musicArtist.Id], |
| 0 | 210 | | OrderBy = [(ItemSortBy.AlbumArtist, SortOrder.Ascending), (ItemSortBy.Album, SortOrder.Ascending), ( |
| 0 | 211 | | DtoOptions = options |
| 0 | 212 | | }); |
| | 213 | | } |
| | 214 | |
|
| 0 | 215 | | if (item is Folder folder) |
| | 216 | | { |
| 0 | 217 | | var query = new InternalItemsQuery(user) |
| 0 | 218 | | { |
| 0 | 219 | | Recursive = true, |
| 0 | 220 | | IsFolder = false, |
| 0 | 221 | | MediaTypes = [MediaType.Audio, MediaType.Video], |
| 0 | 222 | | EnableTotalRecordCount = false, |
| 0 | 223 | | DtoOptions = options |
| 0 | 224 | | }; |
| | 225 | |
|
| 0 | 226 | | return folder.GetItemList(query); |
| | 227 | | } |
| | 228 | |
|
| 0 | 229 | | return [item]; |
| | 230 | | } |
| | 231 | |
|
| | 232 | | public override bool IsVisible(User user, bool skipAllowedTagsCheck = false) |
| | 233 | | { |
| 0 | 234 | | if (!IsSharedItem) |
| | 235 | | { |
| 0 | 236 | | return base.IsVisible(user, skipAllowedTagsCheck); |
| | 237 | | } |
| | 238 | |
|
| 0 | 239 | | if (OpenAccess) |
| | 240 | | { |
| 0 | 241 | | return true; |
| | 242 | | } |
| | 243 | |
|
| 0 | 244 | | var userId = user.Id; |
| 0 | 245 | | if (userId.Equals(OwnerUserId)) |
| | 246 | | { |
| 0 | 247 | | return true; |
| | 248 | | } |
| | 249 | |
|
| 0 | 250 | | var shares = Shares; |
| 0 | 251 | | if (shares.Count == 0) |
| | 252 | | { |
| 0 | 253 | | return false; |
| | 254 | | } |
| | 255 | |
|
| 0 | 256 | | return shares.Any(s => s.UserId.Equals(userId)); |
| | 257 | | } |
| | 258 | |
|
| | 259 | | public override bool CanDelete(User user) |
| | 260 | | { |
| 0 | 261 | | return user.HasPermission(PermissionKind.IsAdministrator) || user.Id.Equals(OwnerUserId); |
| | 262 | | } |
| | 263 | |
|
| | 264 | | public override bool IsVisibleStandalone(User user) |
| | 265 | | { |
| 0 | 266 | | if (!IsSharedItem) |
| | 267 | | { |
| 0 | 268 | | return base.IsVisibleStandalone(user); |
| | 269 | | } |
| | 270 | |
|
| 0 | 271 | | return IsVisible(user); |
| | 272 | | } |
| | 273 | | } |
| | 274 | | } |