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

54 lines
1.7 KiB
C#
Raw Normal View History

#pragma warning disable CA1307
using System;
2020-07-01 03:44:41 +02:00
using System.Linq;
using Jellyfin.Data.Entities;
using MediaBrowser.Controller;
2020-07-22 21:19:18 +02:00
using Microsoft.EntityFrameworkCore;
2020-07-01 03:44:41 +02:00
namespace Jellyfin.Server.Implementations.Users
2020-07-01 03:44:41 +02:00
{
/// <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)
{
2020-07-22 21:19:18 +02:00
using var dbContext = _dbProvider.CreateContext();
var prefs = dbContext.DisplayPreferences
.Include(pref => pref.HomeSections)
.FirstOrDefault(pref =>
pref.UserId == userId && pref.ItemId == null && string.Equals(pref.Client, client));
2020-07-01 03:44:41 +02:00
if (prefs == null)
{
prefs = new DisplayPreferences(client, userId);
dbContext.DisplayPreferences.Add(prefs);
2020-07-01 03:44:41 +02:00
}
return prefs;
}
/// <inheritdoc />
public void SaveChanges(DisplayPreferences preferences)
{
2020-07-22 21:19:18 +02:00
using var dbContext = _dbProvider.CreateContext();
2020-07-01 03:44:41 +02:00
dbContext.Update(preferences);
dbContext.SaveChanges();
}
}
}