2021-05-06 15:39:20 -07:00
|
|
|
#nullable disable
|
|
|
|
|
2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
using System;
|
2019-02-28 15:22:57 -07:00
|
|
|
using System.Globalization;
|
2018-12-27 16:27:57 -07:00
|
|
|
using System.Linq;
|
2019-10-15 08:49:49 -07:00
|
|
|
using System.Text.Json.Serialization;
|
2018-12-27 16:27:57 -07:00
|
|
|
using System.Threading;
|
2020-05-20 10:07:53 -07:00
|
|
|
using Jellyfin.Data.Entities;
|
2020-05-12 19:10:35 -07:00
|
|
|
using Jellyfin.Data.Enums;
|
2018-12-27 16:27:57 -07:00
|
|
|
using MediaBrowser.Common.Progress;
|
2019-01-13 12:25:32 -07:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Model.Querying;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
|
|
{
|
|
|
|
public class Channel : Folder
|
|
|
|
{
|
2020-05-20 10:07:53 -07:00
|
|
|
public override bool IsVisible(User user)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
2020-12-13 08:15:26 -07:00
|
|
|
var blockedChannelsPreference = user.GetPreferenceValues<Guid>(PreferenceKind.BlockedChannels);
|
2020-12-11 15:00:43 -07:00
|
|
|
if (blockedChannelsPreference.Length != 0)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
2020-12-11 15:00:43 -07:00
|
|
|
if (blockedChannelsPreference.Contains(Id))
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-05-12 19:10:35 -07:00
|
|
|
if (!user.HasPermission(PermissionKind.EnableAllChannels)
|
2020-12-13 08:15:26 -07:00
|
|
|
&& !user.GetPreferenceValues<Guid>(PreferenceKind.EnabledChannels).Contains(Id))
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return base.IsVisible(user);
|
|
|
|
}
|
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public override bool SupportsInheritedParentImages => false;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public override SourceType SourceType => SourceType.Channel;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
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
|
|
|
|
return ChannelManager.GetChannelItemsInternal(query, new SimpleProgress<double>(), CancellationToken.None).Result;
|
|
|
|
}
|
|
|
|
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 15:22:57 -07:00
|
|
|
return System.IO.Path.Combine(basePath, "channels", id.ToString("N", CultureInfo.InvariantCulture), "metadata");
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public override bool CanDelete()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool IsAllowTagFilterEnforced()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-05-20 10:07:53 -07:00
|
|
|
internal static bool IsChannelVisible(BaseItem channelItem, User user)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
2021-05-13 06:32:02 -07:00
|
|
|
var channel = ChannelManager.GetChannel(channelItem.ChannelId.ToString(string.Empty));
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
return channel.IsVisible(user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|