2020-07-01 01:44:41 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Jellyfin.Data.Entities;
|
|
|
|
|
using MediaBrowser.Controller;
|
2020-07-22 19:19:18 +00:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2020-07-01 01:44:41 +00:00
|
|
|
|
|
2020-07-22 18:53:32 +00:00
|
|
|
|
namespace Jellyfin.Server.Implementations.Users
|
2020-07-01 01:44:41 +00: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 19:19:18 +00:00
|
|
|
|
using var dbContext = _dbProvider.CreateContext();
|
2020-07-01 01:44:41 +00:00
|
|
|
|
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)
|
|
|
|
|
{
|
2020-07-22 19:19:18 +00:00
|
|
|
|
using var dbContext = _dbProvider.CreateContext();
|
2020-07-01 01:44:41 +00:00
|
|
|
|
dbContext.Update(preferences);
|
|
|
|
|
dbContext.SaveChanges();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|