< Summary - Jellyfin

Information
Class: Emby.Server.Implementations.HttpServer.Security.AuthService
Assembly: Emby.Server.Implementations
File(s): /srv/git/jellyfin/Emby.Server.Implementations/HttpServer/Security/AuthService.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 43
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%

File(s)

/srv/git/jellyfin/Emby.Server.Implementations/HttpServer/Security/AuthService.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3using System.Threading.Tasks;
 4using Jellyfin.Data;
 5using Jellyfin.Database.Implementations.Enums;
 6using MediaBrowser.Controller.Net;
 7using Microsoft.AspNetCore.Http;
 8
 9namespace Emby.Server.Implementations.HttpServer.Security
 10{
 11    public class AuthService : IAuthService
 12    {
 13        private readonly IAuthorizationContext _authorizationContext;
 14
 15        public AuthService(
 16            IAuthorizationContext authorizationContext)
 17        {
 2018            _authorizationContext = authorizationContext;
 2019        }
 20
 21        public async Task<AuthorizationInfo> Authenticate(HttpRequest request)
 22        {
 23            var auth = await _authorizationContext.GetAuthorizationInfo(request).ConfigureAwait(false);
 24
 25            if (!auth.HasToken)
 26            {
 27                return auth;
 28            }
 29
 30            if (!auth.IsAuthenticated)
 31            {
 32                throw new SecurityException("Invalid token.");
 33            }
 34
 35            if (auth.User?.HasPermission(PermissionKind.IsDisabled) ?? false)
 36            {
 37                throw new SecurityException("User account has been disabled.");
 38            }
 39
 40            return auth;
 41        }
 42    }
 43}