| | 1 | | #pragma warning disable CA1307 |
| | 2 | | #pragma warning disable CA1309 |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using System.Linq; |
| | 7 | | using System.Threading.Tasks; |
| | 8 | | using Jellyfin.Database.Implementations; |
| | 9 | | using Jellyfin.Database.Implementations.Entities; |
| | 10 | | using MediaBrowser.Controller; |
| | 11 | | using Microsoft.EntityFrameworkCore; |
| | 12 | |
|
| | 13 | | namespace Jellyfin.Server.Implementations.Users |
| | 14 | | { |
| | 15 | | /// <summary> |
| | 16 | | /// Manages the storage and retrieval of display preferences through Entity Framework. |
| | 17 | | /// </summary> |
| | 18 | | public sealed class DisplayPreferencesManager : IDisplayPreferencesManager, IAsyncDisposable |
| | 19 | | { |
| | 20 | | private readonly JellyfinDbContext _dbContext; |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// Initializes a new instance of the <see cref="DisplayPreferencesManager"/> class. |
| | 24 | | /// </summary> |
| | 25 | | /// <param name="dbContextFactory">The database context factory.</param> |
| | 26 | | public DisplayPreferencesManager(IDbContextFactory<JellyfinDbContext> dbContextFactory) |
| | 27 | | { |
| 0 | 28 | | _dbContext = dbContextFactory.CreateDbContext(); |
| 0 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <inheritdoc /> |
| | 32 | | public DisplayPreferences GetDisplayPreferences(Guid userId, Guid itemId, string client) |
| | 33 | | { |
| 0 | 34 | | var prefs = _dbContext.DisplayPreferences |
| 0 | 35 | | .Include(pref => pref.HomeSections) |
| 0 | 36 | | .FirstOrDefault(pref => |
| 0 | 37 | | pref.UserId.Equals(userId) && string.Equals(pref.Client, client) && pref.ItemId.Equals(itemId)); |
| | 38 | |
|
| 0 | 39 | | if (prefs is null) |
| | 40 | | { |
| 0 | 41 | | prefs = new DisplayPreferences(userId, itemId, client); |
| 0 | 42 | | _dbContext.DisplayPreferences.Add(prefs); |
| | 43 | | } |
| | 44 | |
|
| 0 | 45 | | return prefs; |
| | 46 | | } |
| | 47 | |
|
| | 48 | | /// <inheritdoc /> |
| | 49 | | public ItemDisplayPreferences GetItemDisplayPreferences(Guid userId, Guid itemId, string client) |
| | 50 | | { |
| 0 | 51 | | var prefs = _dbContext.ItemDisplayPreferences |
| 0 | 52 | | .FirstOrDefault(pref => pref.UserId.Equals(userId) && pref.ItemId.Equals(itemId) && string.Equals(pref.C |
| | 53 | |
|
| 0 | 54 | | if (prefs is null) |
| | 55 | | { |
| 0 | 56 | | prefs = new ItemDisplayPreferences(userId, Guid.Empty, client); |
| 0 | 57 | | _dbContext.ItemDisplayPreferences.Add(prefs); |
| | 58 | | } |
| | 59 | |
|
| 0 | 60 | | return prefs; |
| | 61 | | } |
| | 62 | |
|
| | 63 | | /// <inheritdoc /> |
| | 64 | | public IList<ItemDisplayPreferences> ListItemDisplayPreferences(Guid userId, string client) |
| | 65 | | { |
| 0 | 66 | | return _dbContext.ItemDisplayPreferences |
| 0 | 67 | | .Where(prefs => prefs.UserId.Equals(userId) && !prefs.ItemId.Equals(default) && string.Equals(prefs.Clie |
| 0 | 68 | | .ToList(); |
| | 69 | | } |
| | 70 | |
|
| | 71 | | /// <inheritdoc /> |
| | 72 | | public Dictionary<string, string?> ListCustomItemDisplayPreferences(Guid userId, Guid itemId, string client) |
| | 73 | | { |
| 0 | 74 | | return _dbContext.CustomItemDisplayPreferences |
| 0 | 75 | | .Where(prefs => prefs.UserId.Equals(userId) |
| 0 | 76 | | && prefs.ItemId.Equals(itemId) |
| 0 | 77 | | && string.Equals(prefs.Client, client)) |
| 0 | 78 | | .ToDictionary(prefs => prefs.Key, prefs => prefs.Value); |
| | 79 | | } |
| | 80 | |
|
| | 81 | | /// <inheritdoc /> |
| | 82 | | public void SetCustomItemDisplayPreferences(Guid userId, Guid itemId, string client, Dictionary<string, string?> |
| | 83 | | { |
| 0 | 84 | | var existingPrefs = _dbContext.CustomItemDisplayPreferences |
| 0 | 85 | | .Where(prefs => prefs.UserId.Equals(userId) |
| 0 | 86 | | && prefs.ItemId.Equals(itemId) |
| 0 | 87 | | && string.Equals(prefs.Client, client)); |
| 0 | 88 | | _dbContext.CustomItemDisplayPreferences.RemoveRange(existingPrefs); |
| | 89 | |
|
| 0 | 90 | | foreach (var (key, value) in customPreferences) |
| | 91 | | { |
| 0 | 92 | | _dbContext.CustomItemDisplayPreferences |
| 0 | 93 | | .Add(new CustomItemDisplayPreferences(userId, itemId, client, key, value)); |
| | 94 | | } |
| 0 | 95 | | } |
| | 96 | |
|
| | 97 | | /// <inheritdoc /> |
| | 98 | | public void SaveChanges() |
| | 99 | | { |
| 0 | 100 | | _dbContext.SaveChanges(); |
| 0 | 101 | | } |
| | 102 | |
|
| | 103 | | /// <inheritdoc /> |
| | 104 | | public async ValueTask DisposeAsync() |
| | 105 | | { |
| | 106 | | await _dbContext.DisposeAsync().ConfigureAwait(false); |
| | 107 | | } |
| | 108 | | } |
| | 109 | | } |