< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Net.AuthorizationInfo
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Net/AuthorizationInfo.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 69
Line coverage: 100%
Branch coverage
50%
Covered branches: 1
Total branches: 2
Branch coverage: 50%
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
get_UserId()50%22100%
get_HasToken()100%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Net/AuthorizationInfo.cs

#LineLine coverage
 1using System;
 2using System.Diagnostics.CodeAnalysis;
 3using Jellyfin.Database.Implementations.Entities;
 4
 5namespace MediaBrowser.Controller.Net
 6{
 7    /// <summary>
 8    /// The request authorization info.
 9    /// </summary>
 10    public class AuthorizationInfo
 11    {
 12        /// <summary>
 13        /// Gets the user identifier.
 14        /// </summary>
 15        /// <value>The user identifier.</value>
 10316        public Guid UserId => User?.Id ?? Guid.Empty;
 17
 18        /// <summary>
 19        /// Gets or sets the device identifier.
 20        /// </summary>
 21        /// <value>The device identifier.</value>
 22        public string? DeviceId { get; set; }
 23
 24        /// <summary>
 25        /// Gets or sets the device.
 26        /// </summary>
 27        /// <value>The device.</value>
 28        public string? Device { get; set; }
 29
 30        /// <summary>
 31        /// Gets or sets the client.
 32        /// </summary>
 33        /// <value>The client.</value>
 34        public string? Client { get; set; }
 35
 36        /// <summary>
 37        /// Gets or sets the version.
 38        /// </summary>
 39        /// <value>The version.</value>
 40        public string? Version { get; set; }
 41
 42        /// <summary>
 43        /// Gets or sets the token.
 44        /// </summary>
 45        /// <value>The token.</value>
 46        public string? Token { get; set; }
 47
 48        /// <summary>
 49        /// Gets or sets a value indicating whether the authorization is from an api key.
 50        /// </summary>
 51        public bool IsApiKey { get; set; }
 52
 53        /// <summary>
 54        /// Gets or sets the user making the request.
 55        /// </summary>
 56        public User? User { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets a value indicating whether the token is authenticated.
 60        /// </summary>
 61        public bool IsAuthenticated { get; set; }
 62
 63        /// <summary>
 64        /// Gets a value indicating whether the request has a token.
 65        /// </summary>
 66        [MemberNotNullWhen(true, nameof(Token))]
 53567        public bool HasToken => !string.IsNullOrWhiteSpace(Token);
 68    }
 69}

Methods/Properties

get_UserId()
get_HasToken()