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

100 lines
3.5 KiB
C#
Raw Normal View History

#pragma warning disable CA1307
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
{
2020-08-08 13:39:49 -04:00
private readonly JellyfinDb _dbContext;
2020-06-30 21:44:41 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="DisplayPreferencesManager"/> class.
/// </summary>
2020-08-08 13:39:49 -04:00
/// <param name="dbContext">The database context.</param>
public DisplayPreferencesManager(JellyfinDb dbContext)
2020-06-30 21:44:41 -04:00
{
2020-08-08 13:39:49 -04:00
_dbContext = dbContext;
2020-06-30 21:44:41 -04:00
}
/// <inheritdoc />
public DisplayPreferences GetDisplayPreferences(Guid userId, string client)
{
2020-08-08 13:39:49 -04:00
var prefs = _dbContext.DisplayPreferences
.Include(pref => pref.HomeSections)
.FirstOrDefault(pref =>
pref.UserId == userId && string.Equals(pref.Client, client));
2020-06-30 21:44:41 -04:00
if (prefs == null)
{
prefs = new DisplayPreferences(userId, 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 == userId && pref.ItemId == itemId && string.Equals(pref.Client, client));
if (prefs == 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
2020-10-05 22:51:52 -04:00
.AsQueryable()
.Where(prefs => prefs.UserId == userId && prefs.ItemId != Guid.Empty && string.Equals(prefs.Client, client))
.ToList();
}
/// <inheritdoc />
public IDictionary<string, string> ListCustomItemDisplayPreferences(Guid userId, string client)
{
return _dbContext.CustomItemDisplayPreferences
.AsQueryable()
.Where(prefs => prefs.UserId == userId && string.Equals(prefs.Client, client))
.ToDictionary(prefs => prefs.Key, prefs => prefs.Value);
}
/// <inheritdoc />
public void SetCustomItemDisplayPreferences(Guid userId, string client, Dictionary<string, string> customPreferences)
{
var existingPrefs = _dbContext.CustomItemDisplayPreferences
.AsQueryable()
.Where(prefs => prefs.UserId == userId && string.Equals(prefs.Client, client));
_dbContext.CustomItemDisplayPreferences.RemoveRange(existingPrefs);
foreach (var (key, value) in customPreferences)
{
_dbContext.CustomItemDisplayPreferences
.Add(new CustomItemDisplayPreferences(userId, 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
}
}