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

102 lines
3.8 KiB
C#
Raw Normal View History

#pragma warning disable CA1307
2021-03-08 23:57:38 -05:00
#pragma warning disable CA1309
using System;
using System.Collections.Generic;
2020-06-30 21:44:41 -04:00
using System.Linq;
using Jellyfin.Data.Entities;
using MediaBrowser.Controller;
2020-07-22 15:19:18 -04:00
using Microsoft.EntityFrameworkCore;
2020-06-30 21:44:41 -04:00
namespace Jellyfin.Server.Implementations.Users
2020-06-30 21:44:41 -04:00
{
/// <summary>
/// Manages the storage and retrieval of display preferences through Entity Framework.
/// </summary>
public class DisplayPreferencesManager : IDisplayPreferencesManager
{
2023-01-16 12:14:44 -05:00
private readonly JellyfinDbContext _dbContext;
2020-06-30 21:44:41 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="DisplayPreferencesManager"/> class.
/// </summary>
/// <param name="dbContextFactory">The database context factory.</param>
2023-01-16 12:14:44 -05:00
public DisplayPreferencesManager(IDbContextFactory<JellyfinDbContext> dbContextFactory)
2020-06-30 21:44:41 -04:00
{
_dbContext = dbContextFactory.CreateDbContext();
2020-06-30 21:44:41 -04:00
}
/// <inheritdoc />
2020-12-04 18:00:11 -05:00
public DisplayPreferences GetDisplayPreferences(Guid userId, Guid itemId, string client)
2020-06-30 21:44:41 -04:00
{
2020-08-08 13:39:49 -04: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-06-30 21:44:41 -04:00
2022-12-05 09:00:20 -05:00
if (prefs is null)
2020-06-30 21:44:41 -04:00
{
2021-03-08 23:57:38 -05:00
prefs = new DisplayPreferences(userId, itemId, client);
2020-08-08 13:39:49 -04:00
_dbContext.DisplayPreferences.Add(prefs);
2020-06-30 21:44:41 -04:00
}
return prefs;
}
/// <inheritdoc />
public ItemDisplayPreferences GetItemDisplayPreferences(Guid userId, Guid itemId, string client)
{
2020-08-08 13:39:49 -04:00
var prefs = _dbContext.ItemDisplayPreferences
.FirstOrDefault(pref => pref.UserId.Equals(userId) && pref.ItemId.Equals(itemId) && string.Equals(pref.Client, client));
2022-12-05 09:00:20 -05:00
if (prefs is null)
{
prefs = new ItemDisplayPreferences(userId, Guid.Empty, client);
2020-08-08 13:39:49 -04:00
_dbContext.ItemDisplayPreferences.Add(prefs);
}
return prefs;
}
/// <inheritdoc />
public IList<ItemDisplayPreferences> ListItemDisplayPreferences(Guid userId, string client)
{
2020-08-08 13:39:49 -04:00
return _dbContext.ItemDisplayPreferences
.Where(prefs => prefs.UserId.Equals(userId) && !prefs.ItemId.Equals(default) && string.Equals(prefs.Client, client))
.ToList();
}
/// <inheritdoc />
2021-04-07 07:09:00 -04: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-04 18:00:11 -05:00
&& string.Equals(prefs.Client, client))
.ToDictionary(prefs => prefs.Key, prefs => prefs.Value);
}
/// <inheritdoc />
2022-08-12 14:37:31 -04: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-04 18:00:11 -05:00
&& string.Equals(prefs.Client, client));
_dbContext.CustomItemDisplayPreferences.RemoveRange(existingPrefs);
foreach (var (key, value) in customPreferences)
{
_dbContext.CustomItemDisplayPreferences
2020-12-04 18:00:11 -05:00
.Add(new CustomItemDisplayPreferences(userId, itemId, client, key, value));
}
}
2020-06-30 21:44:41 -04:00
/// <inheritdoc />
2020-08-08 13:39:49 -04:00
public void SaveChanges()
{
2020-08-08 13:39:49 -04:00
_dbContext.SaveChanges();
}
2020-06-30 21:44:41 -04:00
}
}