mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Threading.Tasks;
 | |
| using MediaBrowser.Common.Net;
 | |
| using MediaBrowser.Controller.Library;
 | |
| using Microsoft.AspNetCore.Authorization;
 | |
| using Microsoft.AspNetCore.Http;
 | |
| 
 | |
| namespace Jellyfin.Api.Auth.IgnoreParentalControlPolicy
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Escape schedule controls handler.
 | |
|     /// </summary>
 | |
|     public class IgnoreParentalControlHandler : BaseAuthorizationHandler<IgnoreParentalControlRequirement>
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Initializes a new instance of the <see cref="IgnoreParentalControlHandler"/> 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>
 | |
|         public IgnoreParentalControlHandler(
 | |
|             IUserManager userManager,
 | |
|             INetworkManager networkManager,
 | |
|             IHttpContextAccessor httpContextAccessor)
 | |
|             : base(userManager, networkManager, httpContextAccessor)
 | |
|         {
 | |
|         }
 | |
| 
 | |
|         /// <inheritdoc />
 | |
|         protected override Task HandleRequirementAsync(AuthorizationHandlerContext context, IgnoreParentalControlRequirement requirement)
 | |
|         {
 | |
|             var validated = ValidateClaims(context.User, ignoreSchedule: true);
 | |
|             if (validated)
 | |
|             {
 | |
|                 context.Succeed(requirement);
 | |
|             }
 | |
|             else
 | |
|             {
 | |
|                 context.Fail();
 | |
|             }
 | |
| 
 | |
|             return Task.CompletedTask;
 | |
|         }
 | |
|     }
 | |
| }
 |