| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Globalization; |
| | 7 | | using System.Linq; |
| | 8 | | using System.Text.Json.Serialization; |
| | 9 | | using System.Threading; |
| | 10 | | using Jellyfin.Data; |
| | 11 | | using Jellyfin.Database.Implementations.Entities; |
| | 12 | | using Jellyfin.Database.Implementations.Enums; |
| | 13 | | using MediaBrowser.Controller.Entities; |
| | 14 | | using MediaBrowser.Model.Querying; |
| | 15 | |
|
| | 16 | | namespace MediaBrowser.Controller.Channels |
| | 17 | | { |
| | 18 | | public class Channel : Folder |
| | 19 | | { |
| | 20 | | [JsonIgnore] |
| 0 | 21 | | public override bool SupportsInheritedParentImages => false; |
| | 22 | |
|
| | 23 | | [JsonIgnore] |
| 1 | 24 | | public override SourceType SourceType => SourceType.Channel; |
| | 25 | |
|
| | 26 | | public override bool IsVisible(User user, bool skipAllowedTagsCheck = false) |
| | 27 | | { |
| 0 | 28 | | var blockedChannelsPreference = user.GetPreferenceValues<Guid>(PreferenceKind.BlockedChannels); |
| 0 | 29 | | if (blockedChannelsPreference.Length != 0) |
| | 30 | | { |
| 0 | 31 | | if (blockedChannelsPreference.Contains(Id)) |
| | 32 | | { |
| 0 | 33 | | return false; |
| | 34 | | } |
| | 35 | | } |
| | 36 | | else |
| | 37 | | { |
| 0 | 38 | | if (!user.HasPermission(PermissionKind.EnableAllChannels) |
| 0 | 39 | | && !user.GetPreferenceValues<Guid>(PreferenceKind.EnabledChannels).Contains(Id)) |
| | 40 | | { |
| 0 | 41 | | return false; |
| | 42 | | } |
| | 43 | | } |
| | 44 | |
|
| 0 | 45 | | return base.IsVisible(user, skipAllowedTagsCheck); |
| | 46 | | } |
| | 47 | |
|
| | 48 | | protected override QueryResult<BaseItem> GetItemsInternal(InternalItemsQuery query) |
| | 49 | | { |
| | 50 | | try |
| | 51 | | { |
| 0 | 52 | | query.Parent = this; |
| 0 | 53 | | query.ChannelIds = new Guid[] { Id }; |
| | 54 | |
|
| | 55 | | // Don't blow up here because it could cause parent screens with other content to fail |
| 0 | 56 | | return ChannelManager.GetChannelItemsInternal(query, new Progress<double>(), CancellationToken.None).Get |
| | 57 | | } |
| 0 | 58 | | catch |
| | 59 | | { |
| | 60 | | // Already logged at lower levels |
| 0 | 61 | | return new QueryResult<BaseItem>(); |
| | 62 | | } |
| 0 | 63 | | } |
| | 64 | |
|
| | 65 | | protected override string GetInternalMetadataPath(string basePath) |
| | 66 | | { |
| 0 | 67 | | return GetInternalMetadataPath(basePath, Id); |
| | 68 | | } |
| | 69 | |
|
| | 70 | | public static string GetInternalMetadataPath(string basePath, Guid id) |
| | 71 | | { |
| 0 | 72 | | return System.IO.Path.Combine(basePath, "channels", id.ToString("N", CultureInfo.InvariantCulture), "metadat |
| | 73 | | } |
| | 74 | |
|
| | 75 | | public override bool CanDelete() |
| | 76 | | { |
| 0 | 77 | | return false; |
| | 78 | | } |
| | 79 | |
|
| | 80 | | internal static bool IsChannelVisible(BaseItem channelItem, User user) |
| | 81 | | { |
| 0 | 82 | | var channel = ChannelManager.GetChannel(channelItem.ChannelId.ToString(string.Empty)); |
| | 83 | |
|
| 0 | 84 | | return channel.IsVisible(user); |
| | 85 | | } |
| | 86 | | } |
| | 87 | | } |