2021-05-06 22:39:20 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2019-02-28 22:22:57 +00:00
|
|
|
using System.Globalization;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Linq;
|
2019-10-15 15:49:49 +00:00
|
|
|
using System.Text.Json.Serialization;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Threading;
|
2020-05-20 17:07:53 +00:00
|
|
|
using Jellyfin.Data.Entities;
|
2020-05-13 02:10:35 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2019-01-13 19:25:32 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Model.Querying;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
|
|
{
|
|
|
|
public class Channel : Folder
|
|
|
|
{
|
2021-07-23 03:37:05 +00:00
|
|
|
[JsonIgnore]
|
|
|
|
public override bool SupportsInheritedParentImages => false;
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
public override SourceType SourceType => SourceType.Channel;
|
|
|
|
|
2020-05-20 17:07:53 +00:00
|
|
|
public override bool IsVisible(User user)
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
2020-12-13 15:15:26 +00:00
|
|
|
var blockedChannelsPreference = user.GetPreferenceValues<Guid>(PreferenceKind.BlockedChannels);
|
2020-12-11 22:00:43 +00:00
|
|
|
if (blockedChannelsPreference.Length != 0)
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
2020-12-11 22:00:43 +00:00
|
|
|
if (blockedChannelsPreference.Contains(Id))
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-05-13 02:10:35 +00:00
|
|
|
if (!user.HasPermission(PermissionKind.EnableAllChannels)
|
2020-12-13 15:15:26 +00:00
|
|
|
&& !user.GetPreferenceValues<Guid>(PreferenceKind.EnabledChannels).Contains(Id))
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return base.IsVisible(user);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override QueryResult<BaseItem> GetItemsInternal(InternalItemsQuery query)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
query.Parent = this;
|
|
|
|
query.ChannelIds = new Guid[] { Id };
|
|
|
|
|
|
|
|
// Don't blow up here because it could cause parent screens with other content to fail
|
2024-02-06 14:50:46 +00:00
|
|
|
return ChannelManager.GetChannelItemsInternal(query, new Progress<double>(), CancellationToken.None).GetAwaiter().GetResult();
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
|
|
|
// Already logged at lower levels
|
|
|
|
return new QueryResult<BaseItem>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override string GetInternalMetadataPath(string basePath)
|
|
|
|
{
|
|
|
|
return GetInternalMetadataPath(basePath, Id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static string GetInternalMetadataPath(string basePath, Guid id)
|
|
|
|
{
|
2019-02-28 22:22:57 +00:00
|
|
|
return System.IO.Path.Combine(basePath, "channels", id.ToString("N", CultureInfo.InvariantCulture), "metadata");
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override bool CanDelete()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-05-20 17:07:53 +00:00
|
|
|
internal static bool IsChannelVisible(BaseItem channelItem, User user)
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
2021-05-13 13:32:02 +00:00
|
|
|
var channel = ChannelManager.GetChannel(channelItem.ChannelId.ToString(string.Empty));
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
return channel.IsVisible(user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|