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

109 lines
4 KiB
C#
Raw Normal View History

#pragma warning disable CA1307
2021-03-09 05:57:38 +01:00
#pragma warning disable CA1309
using System;
using System.Collections.Generic;
2020-07-01 03:44:41 +02:00
using System.Linq;
using System.Threading.Tasks;
2020-07-01 03:44:41 +02:00
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 sealed class DisplayPreferencesManager : IDisplayPreferencesManager, IAsyncDisposable
2020-07-01 03:44:41 +02:00
{
2023-01-16 18:14:44 +01:00
private readonly JellyfinDbContext _dbContext;
2020-07-01 03:44:41 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="DisplayPreferencesManager"/> class.
/// </summary>
/// <param name="dbContextFactory">The database context factory.</param>
2023-01-16 18:14:44 +01:00
public DisplayPreferencesManager(IDbContextFactory<JellyfinDbContext> dbContextFactory)
2020-07-01 03:44:41 +02:00
{
_dbContext = dbContextFactory.CreateDbContext();
2020-07-01 03:44:41 +02:00
}
/// <inheritdoc />
2020-12-05 00:00:11 +01:00
public DisplayPreferences GetDisplayPreferences(Guid userId, Guid itemId, string client)
2020-07-01 03:44:41 +02:00
{
2020-08-08 19:39:49 +02:00
var prefs = _dbContext.DisplayPreferences
.Include(pref => pref.HomeSections)
.FirstOrDefault(pref =>
pref.UserId.Equals(userId) && string.Equals(pref.Client, client) && pref.ItemId.Equals(itemId));
2020-07-01 03:44:41 +02:00
2022-12-05 15:00:20 +01:00
if (prefs is null)
2020-07-01 03:44:41 +02:00
{
2021-03-09 05:57:38 +01:00
prefs = new DisplayPreferences(userId, itemId, client);
2020-08-08 19:39:49 +02:00
_dbContext.DisplayPreferences.Add(prefs);
2020-07-01 03:44:41 +02:00
}
return prefs;
}
/// <inheritdoc />
public ItemDisplayPreferences GetItemDisplayPreferences(Guid userId, Guid itemId, string client)
{
2020-08-08 19:39:49 +02:00
var prefs = _dbContext.ItemDisplayPreferences
.FirstOrDefault(pref => pref.UserId.Equals(userId) && pref.ItemId.Equals(itemId) && string.Equals(pref.Client, client));
2022-12-05 15:00:20 +01:00
if (prefs is null)
{
prefs = new ItemDisplayPreferences(userId, Guid.Empty, client);
2020-08-08 19:39:49 +02:00
_dbContext.ItemDisplayPreferences.Add(prefs);
}
return prefs;
}
/// <inheritdoc />
public IList<ItemDisplayPreferences> ListItemDisplayPreferences(Guid userId, string client)
{
2020-08-08 19:39:49 +02:00
return _dbContext.ItemDisplayPreferences
.Where(prefs => prefs.UserId.Equals(userId) && !prefs.ItemId.Equals(default) && string.Equals(prefs.Client, client))
.ToList();
}
/// <inheritdoc />
2021-04-07 13:09:00 +02:00
public Dictionary<string, string?> ListCustomItemDisplayPreferences(Guid userId, Guid itemId, string client)
{
return _dbContext.CustomItemDisplayPreferences
.Where(prefs => prefs.UserId.Equals(userId)
&& prefs.ItemId.Equals(itemId)
2020-12-05 00:00:11 +01:00
&& string.Equals(prefs.Client, client))
.ToDictionary(prefs => prefs.Key, prefs => prefs.Value);
}
/// <inheritdoc />
2022-08-12 20:37:31 +02:00
public void SetCustomItemDisplayPreferences(Guid userId, Guid itemId, string client, Dictionary<string, string?> customPreferences)
{
var existingPrefs = _dbContext.CustomItemDisplayPreferences
.Where(prefs => prefs.UserId.Equals(userId)
&& prefs.ItemId.Equals(itemId)
2020-12-05 00:00:11 +01:00
&& string.Equals(prefs.Client, client));
_dbContext.CustomItemDisplayPreferences.RemoveRange(existingPrefs);
foreach (var (key, value) in customPreferences)
{
_dbContext.CustomItemDisplayPreferences
2020-12-05 00:00:11 +01:00
.Add(new CustomItemDisplayPreferences(userId, itemId, client, key, value));
}
}
2020-07-01 03:44:41 +02:00
/// <inheritdoc />
2020-08-08 19:39:49 +02:00
public void SaveChanges()
{
2020-08-08 19:39:49 +02:00
_dbContext.SaveChanges();
}
/// <inheritdoc />
public async ValueTask DisposeAsync()
{
await _dbContext.DisposeAsync().ConfigureAwait(false);
}
2020-07-01 03:44:41 +02:00
}
}