using System.Threading.Tasks; using Jellyfin.Api.Auth.IgnoreParentalControlPolicy; using MediaBrowser.Common.Configuration; using MediaBrowser.Common.Net; using MediaBrowser.Controller.Library; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; namespace Jellyfin.Api.Auth.IgnoreParentalControlOrFirstTimeSetupPolicy { /// /// Escape schedule controls handler. /// public class IgnoreParentalControlOrFirstTimeSetupHandler : BaseAuthorizationHandler { private readonly IConfigurationManager _configurationManager; /// /// Initializes a new instance of the class. /// /// Instance of the interface. /// Instance of the interface. /// Instance of the interface. /// Instance of the interface. public IgnoreParentalControlOrFirstTimeSetupHandler( IUserManager userManager, INetworkManager networkManager, IHttpContextAccessor httpContextAccessor, IConfigurationManager configurationManager) : base(userManager, networkManager, httpContextAccessor) { _configurationManager = configurationManager; } /// protected override Task HandleRequirementAsync(AuthorizationHandlerContext context, IgnoreParentalControlRequirement requirement) { var validated = ValidateClaims(context.User, ignoreSchedule: true); if (validated || !_configurationManager.CommonConfiguration.IsStartupWizardCompleted) { context.Succeed(requirement); } else { context.Fail(); } return Task.CompletedTask; } } }