mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			57 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Threading.Tasks;
 | |
| using MediaBrowser.Common.Configuration;
 | |
| using MediaBrowser.Common.Net;
 | |
| using MediaBrowser.Controller.Library;
 | |
| using Microsoft.AspNetCore.Authorization;
 | |
| using Microsoft.AspNetCore.Http;
 | |
| 
 | |
| namespace Jellyfin.Api.Auth.FirstTimeOrIgnoreParentalControlSetupPolicy
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Ignore parental control schedule and allow before startup wizard has been completed.
 | |
|     /// </summary>
 | |
|     public class FirstTimeOrIgnoreParentalControlSetupHandler : BaseAuthorizationHandler<FirstTimeOrIgnoreParentalControlSetupRequirement>
 | |
|     {
 | |
|         private readonly IConfigurationManager _configurationManager;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Initializes a new instance of the <see cref="FirstTimeOrIgnoreParentalControlSetupHandler"/> class.
 | |
|         /// </summary>
 | |
|         /// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param>
 | |
|         /// <param name="networkManager">Instance of the <see cref="INetworkManager"/> interface.</param>
 | |
|         /// <param name="httpContextAccessor">Instance of the <see cref="IHttpContextAccessor"/> interface.</param>
 | |
|         /// <param name="configurationManager">Instance of the <see cref="IConfigurationManager"/> interface.</param>
 | |
|         public FirstTimeOrIgnoreParentalControlSetupHandler(
 | |
|             IUserManager userManager,
 | |
|             INetworkManager networkManager,
 | |
|             IHttpContextAccessor httpContextAccessor,
 | |
|             IConfigurationManager configurationManager)
 | |
|             : base(userManager, networkManager, httpContextAccessor)
 | |
|         {
 | |
|             _configurationManager = configurationManager;
 | |
|         }
 | |
| 
 | |
|         /// <inheritdoc />
 | |
|         protected override Task HandleRequirementAsync(AuthorizationHandlerContext context, FirstTimeOrIgnoreParentalControlSetupRequirement requirement)
 | |
|         {
 | |
|             if (!_configurationManager.CommonConfiguration.IsStartupWizardCompleted)
 | |
|             {
 | |
|                 context.Succeed(requirement);
 | |
|                 return Task.CompletedTask;
 | |
|             }
 | |
| 
 | |
|             var validated = ValidateClaims(context.User, ignoreSchedule: true);
 | |
|             if (validated)
 | |
|             {
 | |
|                 context.Succeed(requirement);
 | |
|             }
 | |
|             else
 | |
|             {
 | |
|                 context.Fail();
 | |
|             }
 | |
| 
 | |
|             return Task.CompletedTask;
 | |
|         }
 | |
|     }
 | |
| }
 |