123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- using System.Globalization;
- using System.Security.Claims;
- using System.Text.Encodings.Web;
- using System.Threading.Tasks;
- using Jellyfin.Api.Constants;
- using Jellyfin.Data.Enums;
- using MediaBrowser.Controller.Authentication;
- using MediaBrowser.Controller.Net;
- using Microsoft.AspNetCore.Authentication;
- using Microsoft.Extensions.Logging;
- using Microsoft.Extensions.Options;
- namespace Jellyfin.Api.Auth
- {
- /// <summary>
- /// Custom authentication handler wrapping the legacy authentication.
- /// </summary>
- public class CustomAuthenticationHandler : AuthenticationHandler<AuthenticationSchemeOptions>
- {
- private readonly IAuthService _authService;
- private readonly ILogger<CustomAuthenticationHandler> _logger;
- /// <summary>
- /// Initializes a new instance of the <see cref="CustomAuthenticationHandler" /> class.
- /// </summary>
- /// <param name="authService">The jellyfin authentication service.</param>
- /// <param name="options">Options monitor.</param>
- /// <param name="logger">The logger.</param>
- /// <param name="encoder">The url encoder.</param>
- /// <param name="clock">The system clock.</param>
- public CustomAuthenticationHandler(
- IAuthService authService,
- IOptionsMonitor<AuthenticationSchemeOptions> options,
- ILoggerFactory logger,
- UrlEncoder encoder,
- ISystemClock clock) : base(options, logger, encoder, clock)
- {
- _authService = authService;
- _logger = logger.CreateLogger<CustomAuthenticationHandler>();
- }
- /// <inheritdoc />
- protected override Task<AuthenticateResult> HandleAuthenticateAsync()
- {
- try
- {
- var authorizationInfo = _authService.Authenticate(Request);
- var role = UserRoles.User;
- if (authorizationInfo.IsApiKey || authorizationInfo.User.HasPermission(PermissionKind.IsAdministrator))
- {
- role = UserRoles.Administrator;
- }
- var claims = new[]
- {
- new Claim(ClaimTypes.Name, authorizationInfo.User?.Username ?? string.Empty),
- new Claim(ClaimTypes.Role, role),
- new Claim(InternalClaimTypes.UserId, authorizationInfo.UserId.ToString("N", CultureInfo.InvariantCulture)),
- new Claim(InternalClaimTypes.DeviceId, authorizationInfo.DeviceId),
- new Claim(InternalClaimTypes.Device, authorizationInfo.Device),
- new Claim(InternalClaimTypes.Client, authorizationInfo.Client),
- new Claim(InternalClaimTypes.Version, authorizationInfo.Version),
- new Claim(InternalClaimTypes.Token, authorizationInfo.Token),
- new Claim(InternalClaimTypes.IsApiKey, authorizationInfo.IsApiKey.ToString(CultureInfo.InvariantCulture))
- };
- var identity = new ClaimsIdentity(claims, Scheme.Name);
- var principal = new ClaimsPrincipal(identity);
- var ticket = new AuthenticationTicket(principal, Scheme.Name);
- return Task.FromResult(AuthenticateResult.Success(ticket));
- }
- catch (AuthenticationException ex)
- {
- _logger.LogDebug(ex, "Error authenticating with {Handler}", nameof(CustomAuthenticationHandler));
- return Task.FromResult(AuthenticateResult.NoResult());
- }
- catch (SecurityException ex)
- {
- return Task.FromResult(AuthenticateResult.Fail(ex));
- }
- }
- }
- }
|