aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/DisplayPreferencesManager.cs
blob: 132e74c6aa4fc62670366819e1a9266faef7e39a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Linq;
using Jellyfin.Data.Entities;
using MediaBrowser.Controller;

namespace Jellyfin.Server.Implementations
{
    /// <summary>
    /// Manages the storage and retrieval of display preferences through Entity Framework.
    /// </summary>
    public class DisplayPreferencesManager : IDisplayPreferencesManager
    {
        private readonly JellyfinDbProvider _dbProvider;

        /// <summary>
        /// Initializes a new instance of the <see cref="DisplayPreferencesManager"/> class.
        /// </summary>
        /// <param name="dbProvider">The Jellyfin db provider.</param>
        public DisplayPreferencesManager(JellyfinDbProvider dbProvider)
        {
            _dbProvider = dbProvider;
        }

        /// <inheritdoc />
        public DisplayPreferences GetDisplayPreferences(Guid userId, string client)
        {
            var dbContext = _dbProvider.CreateContext();
            var user = dbContext.Users.Find(userId);
#pragma warning disable CA1307
            var prefs = user.DisplayPreferences.FirstOrDefault(pref => string.Equals(pref.Client, client));

            if (prefs == null)
            {
                prefs = new DisplayPreferences(client, userId);
                user.DisplayPreferences.Add(prefs);
            }

            return prefs;
        }

        /// <inheritdoc />
        public void SaveChanges(DisplayPreferences preferences)
        {
            var dbContext = _dbProvider.CreateContext();
            dbContext.Update(preferences);
            dbContext.SaveChanges();
        }
    }
}