< Summary - Jellyfin

Information
Class: Jellyfin.Server.Implementations.Users.DisplayPreferencesManager
Assembly: Jellyfin.Server.Implementations
File(s): /srv/git/jellyfin/Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 35
Coverable lines: 35
Total lines: 109
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 6
Branch coverage: 0%
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%
GetDisplayPreferences(...)0%620%
GetItemDisplayPreferences(...)0%620%
ListItemDisplayPreferences(...)100%210%
ListCustomItemDisplayPreferences(...)100%210%
SetCustomItemDisplayPreferences(...)0%620%
SaveChanges()100%210%

File(s)

/srv/git/jellyfin/Jellyfin.Server.Implementations/Users/DisplayPreferencesManager.cs

#LineLine coverage
 1#pragma warning disable CA1307
 2#pragma warning disable CA1309
 3
 4using System;
 5using System.Collections.Generic;
 6using System.Linq;
 7using System.Threading.Tasks;
 8using Jellyfin.Database.Implementations;
 9using Jellyfin.Database.Implementations.Entities;
 10using MediaBrowser.Controller;
 11using Microsoft.EntityFrameworkCore;
 12
 13namespace Jellyfin.Server.Implementations.Users
 14{
 15    /// <summary>
 16    /// Manages the storage and retrieval of display preferences through Entity Framework.
 17    /// </summary>
 18    public sealed class DisplayPreferencesManager : IDisplayPreferencesManager, IAsyncDisposable
 19    {
 20        private readonly JellyfinDbContext _dbContext;
 21
 22        /// <summary>
 23        /// Initializes a new instance of the <see cref="DisplayPreferencesManager"/> class.
 24        /// </summary>
 25        /// <param name="dbContextFactory">The database context factory.</param>
 26        public DisplayPreferencesManager(IDbContextFactory<JellyfinDbContext> dbContextFactory)
 27        {
 028            _dbContext = dbContextFactory.CreateDbContext();
 029        }
 30
 31        /// <inheritdoc />
 32        public DisplayPreferences GetDisplayPreferences(Guid userId, Guid itemId, string client)
 33        {
 034            var prefs = _dbContext.DisplayPreferences
 035                .Include(pref => pref.HomeSections)
 036                .FirstOrDefault(pref =>
 037                    pref.UserId.Equals(userId) && string.Equals(pref.Client, client) && pref.ItemId.Equals(itemId));
 38
 039            if (prefs is null)
 40            {
 041                prefs = new DisplayPreferences(userId, itemId, client);
 042                _dbContext.DisplayPreferences.Add(prefs);
 43            }
 44
 045            return prefs;
 46        }
 47
 48        /// <inheritdoc />
 49        public ItemDisplayPreferences GetItemDisplayPreferences(Guid userId, Guid itemId, string client)
 50        {
 051            var prefs = _dbContext.ItemDisplayPreferences
 052                .FirstOrDefault(pref => pref.UserId.Equals(userId) && pref.ItemId.Equals(itemId) && string.Equals(pref.C
 53
 054            if (prefs is null)
 55            {
 056                prefs = new ItemDisplayPreferences(userId, Guid.Empty, client);
 057                _dbContext.ItemDisplayPreferences.Add(prefs);
 58            }
 59
 060            return prefs;
 61        }
 62
 63        /// <inheritdoc />
 64        public IList<ItemDisplayPreferences> ListItemDisplayPreferences(Guid userId, string client)
 65        {
 066            return _dbContext.ItemDisplayPreferences
 067                .Where(prefs => prefs.UserId.Equals(userId) && !prefs.ItemId.Equals(default) && string.Equals(prefs.Clie
 068                .ToList();
 69        }
 70
 71        /// <inheritdoc />
 72        public Dictionary<string, string?> ListCustomItemDisplayPreferences(Guid userId, Guid itemId, string client)
 73        {
 074            return _dbContext.CustomItemDisplayPreferences
 075                .Where(prefs => prefs.UserId.Equals(userId)
 076                                && prefs.ItemId.Equals(itemId)
 077                                && string.Equals(prefs.Client, client))
 078                .ToDictionary(prefs => prefs.Key, prefs => prefs.Value);
 79        }
 80
 81        /// <inheritdoc />
 82        public void SetCustomItemDisplayPreferences(Guid userId, Guid itemId, string client, Dictionary<string, string?>
 83        {
 084            var existingPrefs = _dbContext.CustomItemDisplayPreferences
 085                .Where(prefs => prefs.UserId.Equals(userId)
 086                                && prefs.ItemId.Equals(itemId)
 087                                && string.Equals(prefs.Client, client));
 088            _dbContext.CustomItemDisplayPreferences.RemoveRange(existingPrefs);
 89
 090            foreach (var (key, value) in customPreferences)
 91            {
 092                _dbContext.CustomItemDisplayPreferences
 093                    .Add(new CustomItemDisplayPreferences(userId, itemId, client, key, value));
 94            }
 095        }
 96
 97        /// <inheritdoc />
 98        public void SaveChanges()
 99        {
 0100            _dbContext.SaveChanges();
 0101        }
 102
 103        /// <inheritdoc />
 104        public async ValueTask DisposeAsync()
 105        {
 106            await _dbContext.DisposeAsync().ConfigureAwait(false);
 107        }
 108    }
 109}