< Summary - Jellyfin

Information
Class: Jellyfin.Server.Implementations.Security.AuthenticationManager
Assembly: Jellyfin.Server.Implementations
File(s): /srv/git/jellyfin/Jellyfin.Server.Implementations/Security/AuthenticationManager.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 69
Line coverage: 0%
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%210%

File(s)

/srv/git/jellyfin/Jellyfin.Server.Implementations/Security/AuthenticationManager.cs

#LineLine coverage
 1using System.Collections.Generic;
 2using System.Linq;
 3using System.Threading.Tasks;
 4using Jellyfin.Database.Implementations;
 5using Jellyfin.Database.Implementations.Entities.Security;
 6using MediaBrowser.Controller.Security;
 7using Microsoft.EntityFrameworkCore;
 8
 9namespace Jellyfin.Server.Implementations.Security
 10{
 11    /// <inheritdoc />
 12    public class AuthenticationManager : IAuthenticationManager
 13    {
 14        private readonly IDbContextFactory<JellyfinDbContext> _dbProvider;
 15
 16        /// <summary>
 17        /// Initializes a new instance of the <see cref="AuthenticationManager"/> class.
 18        /// </summary>
 19        /// <param name="dbProvider">The database provider.</param>
 20        public AuthenticationManager(IDbContextFactory<JellyfinDbContext> dbProvider)
 21        {
 022            _dbProvider = dbProvider;
 023        }
 24
 25        /// <inheritdoc />
 26        public async Task CreateApiKey(string name)
 27        {
 28            var dbContext = await _dbProvider.CreateDbContextAsync().ConfigureAwait(false);
 29            await using (dbContext.ConfigureAwait(false))
 30            {
 31                dbContext.ApiKeys.Add(new ApiKey(name));
 32
 33                await dbContext.SaveChangesAsync().ConfigureAwait(false);
 34            }
 35        }
 36
 37        /// <inheritdoc />
 38        public async Task<IReadOnlyList<AuthenticationInfo>> GetApiKeys()
 39        {
 40            var dbContext = await _dbProvider.CreateDbContextAsync().ConfigureAwait(false);
 41            await using (dbContext.ConfigureAwait(false))
 42            {
 43                return await dbContext.ApiKeys
 44                    .Select(key => new AuthenticationInfo
 45                    {
 46                        AppName = key.Name,
 47                        AccessToken = key.AccessToken,
 48                        DateCreated = key.DateCreated,
 49                        DeviceId = string.Empty,
 50                        DeviceName = string.Empty,
 51                        AppVersion = string.Empty
 52                    }).ToListAsync().ConfigureAwait(false);
 53            }
 54        }
 55
 56        /// <inheritdoc />
 57        public async Task DeleteApiKey(string accessToken)
 58        {
 59            var dbContext = await _dbProvider.CreateDbContextAsync().ConfigureAwait(false);
 60            await using (dbContext.ConfigureAwait(false))
 61            {
 62                await dbContext.ApiKeys
 63                    .Where(apiKey => apiKey.AccessToken == accessToken)
 64                    .ExecuteDeleteAsync()
 65                    .ConfigureAwait(false);
 66            }
 67        }
 68    }
 69}