| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.IO; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Text.Json; |
| | 6 | | using System.Text.Json.Serialization; |
| | 7 | | using Emby.Server.Implementations.Data; |
| | 8 | | using Jellyfin.Database.Implementations; |
| | 9 | | using Jellyfin.Database.Implementations.Entities; |
| | 10 | | using Jellyfin.Database.Implementations.Enums; |
| | 11 | | using MediaBrowser.Controller; |
| | 12 | | using MediaBrowser.Controller.Library; |
| | 13 | | using MediaBrowser.Model.Dto; |
| | 14 | | using Microsoft.Data.Sqlite; |
| | 15 | | using Microsoft.EntityFrameworkCore; |
| | 16 | | using Microsoft.Extensions.Logging; |
| | 17 | |
|
| | 18 | | namespace Jellyfin.Server.Migrations.Routines |
| | 19 | | { |
| | 20 | | /// <summary> |
| | 21 | | /// The migration routine for migrating the display preferences database to EF Core. |
| | 22 | | /// </summary> |
| | 23 | | public class MigrateDisplayPreferencesDb : IMigrationRoutine |
| | 24 | | { |
| | 25 | | private const string DbFilename = "displaypreferences.db"; |
| | 26 | |
|
| | 27 | | private readonly ILogger<MigrateDisplayPreferencesDb> _logger; |
| | 28 | | private readonly IServerApplicationPaths _paths; |
| | 29 | | private readonly IDbContextFactory<JellyfinDbContext> _provider; |
| | 30 | | private readonly JsonSerializerOptions _jsonOptions; |
| | 31 | | private readonly IUserManager _userManager; |
| | 32 | |
|
| | 33 | | /// <summary> |
| | 34 | | /// Initializes a new instance of the <see cref="MigrateDisplayPreferencesDb"/> class. |
| | 35 | | /// </summary> |
| | 36 | | /// <param name="logger">The logger.</param> |
| | 37 | | /// <param name="paths">The server application paths.</param> |
| | 38 | | /// <param name="provider">The database provider.</param> |
| | 39 | | /// <param name="userManager">The user manager.</param> |
| | 40 | | public MigrateDisplayPreferencesDb( |
| | 41 | | ILogger<MigrateDisplayPreferencesDb> logger, |
| | 42 | | IServerApplicationPaths paths, |
| | 43 | | IDbContextFactory<JellyfinDbContext> provider, |
| | 44 | | IUserManager userManager) |
| | 45 | | { |
| 0 | 46 | | _logger = logger; |
| 0 | 47 | | _paths = paths; |
| 0 | 48 | | _provider = provider; |
| 0 | 49 | | _userManager = userManager; |
| 0 | 50 | | _jsonOptions = new JsonSerializerOptions(); |
| 0 | 51 | | _jsonOptions.Converters.Add(new JsonStringEnumConverter()); |
| 0 | 52 | | } |
| | 53 | |
|
| | 54 | | /// <inheritdoc /> |
| 0 | 55 | | public Guid Id => Guid.Parse("06387815-C3CC-421F-A888-FB5F9992BEA8"); |
| | 56 | |
|
| | 57 | | /// <inheritdoc /> |
| 0 | 58 | | public string Name => "MigrateDisplayPreferencesDatabase"; |
| | 59 | |
|
| | 60 | | /// <inheritdoc /> |
| 0 | 61 | | public bool PerformOnNewInstall => false; |
| | 62 | |
|
| | 63 | | /// <inheritdoc /> |
| | 64 | | public void Perform() |
| | 65 | | { |
| 0 | 66 | | HomeSectionType[] defaults = |
| 0 | 67 | | { |
| 0 | 68 | | HomeSectionType.SmallLibraryTiles, |
| 0 | 69 | | HomeSectionType.Resume, |
| 0 | 70 | | HomeSectionType.ResumeAudio, |
| 0 | 71 | | HomeSectionType.LiveTv, |
| 0 | 72 | | HomeSectionType.NextUp, |
| 0 | 73 | | HomeSectionType.LatestMedia, |
| 0 | 74 | | HomeSectionType.None, |
| 0 | 75 | | }; |
| | 76 | |
|
| 0 | 77 | | var chromecastDict = new Dictionary<string, ChromecastVersion>(StringComparer.OrdinalIgnoreCase) |
| 0 | 78 | | { |
| 0 | 79 | | { "stable", ChromecastVersion.Stable }, |
| 0 | 80 | | { "nightly", ChromecastVersion.Unstable }, |
| 0 | 81 | | { "unstable", ChromecastVersion.Unstable } |
| 0 | 82 | | }; |
| | 83 | |
|
| 0 | 84 | | var displayPrefs = new HashSet<string>(StringComparer.OrdinalIgnoreCase); |
| 0 | 85 | | var customDisplayPrefs = new HashSet<string>(StringComparer.OrdinalIgnoreCase); |
| 0 | 86 | | var dbFilePath = Path.Combine(_paths.DataPath, DbFilename); |
| 0 | 87 | | using (var connection = new SqliteConnection($"Filename={dbFilePath}")) |
| | 88 | | { |
| 0 | 89 | | connection.Open(); |
| 0 | 90 | | using var dbContext = _provider.CreateDbContext(); |
| | 91 | |
|
| 0 | 92 | | var results = connection.Query("SELECT * FROM userdisplaypreferences"); |
| 0 | 93 | | foreach (var result in results) |
| | 94 | | { |
| 0 | 95 | | var dto = JsonSerializer.Deserialize<DisplayPreferencesDto>(result.GetStream(3), _jsonOptions); |
| 0 | 96 | | if (dto is null) |
| | 97 | | { |
| | 98 | | continue; |
| | 99 | | } |
| | 100 | |
|
| 0 | 101 | | var itemId = result.GetGuid(1); |
| 0 | 102 | | var dtoUserId = itemId; |
| 0 | 103 | | var client = result.GetString(2); |
| 0 | 104 | | var displayPreferencesKey = $"{dtoUserId}|{itemId}|{client}"; |
| 0 | 105 | | if (displayPrefs.Contains(displayPreferencesKey)) |
| | 106 | | { |
| | 107 | | // Duplicate display preference. |
| | 108 | | continue; |
| | 109 | | } |
| | 110 | |
|
| 0 | 111 | | displayPrefs.Add(displayPreferencesKey); |
| 0 | 112 | | var existingUser = _userManager.GetUserById(dtoUserId); |
| 0 | 113 | | if (existingUser is null) |
| | 114 | | { |
| 0 | 115 | | _logger.LogWarning("User with ID {UserId} does not exist in the database, skipping migration.", |
| 0 | 116 | | continue; |
| | 117 | | } |
| | 118 | |
|
| 0 | 119 | | var chromecastVersion = dto.CustomPrefs.TryGetValue("chromecastVersion", out var version) |
| 0 | 120 | | && !string.IsNullOrEmpty(version) |
| 0 | 121 | | ? chromecastDict[version] |
| 0 | 122 | | : ChromecastVersion.Stable; |
| 0 | 123 | | dto.CustomPrefs.Remove("chromecastVersion"); |
| | 124 | |
|
| 0 | 125 | | var displayPreferences = new DisplayPreferences(dtoUserId, itemId, client) |
| 0 | 126 | | { |
| 0 | 127 | | IndexBy = Enum.TryParse<IndexingKind>(dto.IndexBy, true, out var indexBy) ? indexBy : null, |
| 0 | 128 | | ShowBackdrop = dto.ShowBackdrop, |
| 0 | 129 | | ShowSidebar = dto.ShowSidebar, |
| 0 | 130 | | ScrollDirection = dto.ScrollDirection, |
| 0 | 131 | | ChromecastVersion = chromecastVersion, |
| 0 | 132 | | SkipForwardLength = dto.CustomPrefs.TryGetValue("skipForwardLength", out var length) && int.TryP |
| 0 | 133 | | ? skipForwardLength |
| 0 | 134 | | : 30000, |
| 0 | 135 | | SkipBackwardLength = dto.CustomPrefs.TryGetValue("skipBackLength", out length) && int.TryParse(l |
| 0 | 136 | | ? skipBackwardLength |
| 0 | 137 | | : 10000, |
| 0 | 138 | | EnableNextVideoInfoOverlay = !dto.CustomPrefs.TryGetValue("enableNextVideoInfoOverlay", out var |
| 0 | 139 | | DashboardTheme = dto.CustomPrefs.TryGetValue("dashboardtheme", out var theme) ? theme : string.E |
| 0 | 140 | | TvHome = dto.CustomPrefs.TryGetValue("tvhome", out var home) ? home : string.Empty |
| 0 | 141 | | }; |
| | 142 | |
|
| 0 | 143 | | dto.CustomPrefs.Remove("skipForwardLength"); |
| 0 | 144 | | dto.CustomPrefs.Remove("skipBackLength"); |
| 0 | 145 | | dto.CustomPrefs.Remove("enableNextVideoInfoOverlay"); |
| 0 | 146 | | dto.CustomPrefs.Remove("dashboardtheme"); |
| 0 | 147 | | dto.CustomPrefs.Remove("tvhome"); |
| | 148 | |
|
| 0 | 149 | | for (int i = 0; i < 7; i++) |
| | 150 | | { |
| 0 | 151 | | var key = "homesection" + i; |
| 0 | 152 | | dto.CustomPrefs.TryGetValue(key, out var homeSection); |
| | 153 | |
|
| 0 | 154 | | displayPreferences.HomeSections.Add(new HomeSection |
| 0 | 155 | | { |
| 0 | 156 | | Order = i, |
| 0 | 157 | | Type = Enum.TryParse<HomeSectionType>(homeSection, true, out var type) ? type : defaults[i] |
| 0 | 158 | | }); |
| | 159 | |
|
| 0 | 160 | | dto.CustomPrefs.Remove(key); |
| | 161 | | } |
| | 162 | |
|
| 0 | 163 | | var defaultLibraryPrefs = new ItemDisplayPreferences(displayPreferences.UserId, Guid.Empty, displayP |
| 0 | 164 | | { |
| 0 | 165 | | SortBy = dto.SortBy ?? "SortName", |
| 0 | 166 | | SortOrder = dto.SortOrder, |
| 0 | 167 | | RememberIndexing = dto.RememberIndexing, |
| 0 | 168 | | RememberSorting = dto.RememberSorting, |
| 0 | 169 | | }; |
| | 170 | |
|
| 0 | 171 | | dbContext.Add(defaultLibraryPrefs); |
| | 172 | |
|
| 0 | 173 | | foreach (var key in dto.CustomPrefs.Keys.Where(key => key.StartsWith("landing-", StringComparison.Or |
| | 174 | | { |
| 0 | 175 | | if (!Guid.TryParse(key.AsSpan().Slice("landing-".Length), out var landingItemId)) |
| | 176 | | { |
| | 177 | | continue; |
| | 178 | | } |
| | 179 | |
|
| 0 | 180 | | var libraryDisplayPreferences = new ItemDisplayPreferences(displayPreferences.UserId, landingIte |
| 0 | 181 | | { |
| 0 | 182 | | SortBy = dto.SortBy ?? "SortName", |
| 0 | 183 | | SortOrder = dto.SortOrder, |
| 0 | 184 | | RememberIndexing = dto.RememberIndexing, |
| 0 | 185 | | RememberSorting = dto.RememberSorting, |
| 0 | 186 | | }; |
| | 187 | |
|
| 0 | 188 | | if (Enum.TryParse<ViewType>(dto.ViewType, true, out var viewType)) |
| | 189 | | { |
| 0 | 190 | | libraryDisplayPreferences.ViewType = viewType; |
| | 191 | | } |
| | 192 | |
|
| 0 | 193 | | dto.CustomPrefs.Remove(key); |
| 0 | 194 | | dbContext.ItemDisplayPreferences.Add(libraryDisplayPreferences); |
| | 195 | | } |
| | 196 | |
|
| 0 | 197 | | foreach (var (key, value) in dto.CustomPrefs) |
| | 198 | | { |
| | 199 | | // Custom display preferences can have a key collision. |
| 0 | 200 | | var indexKey = $"{displayPreferences.UserId}|{itemId}|{displayPreferences.Client}|{key}"; |
| 0 | 201 | | if (!customDisplayPrefs.Contains(indexKey)) |
| | 202 | | { |
| 0 | 203 | | dbContext.Add(new CustomItemDisplayPreferences(displayPreferences.UserId, itemId, displayPre |
| 0 | 204 | | customDisplayPrefs.Add(indexKey); |
| | 205 | | } |
| | 206 | | } |
| | 207 | |
|
| 0 | 208 | | dbContext.Add(displayPreferences); |
| | 209 | | } |
| | 210 | |
|
| 0 | 211 | | dbContext.SaveChanges(); |
| | 212 | | } |
| | 213 | |
|
| | 214 | | try |
| | 215 | | { |
| 0 | 216 | | File.Move(dbFilePath, dbFilePath + ".old"); |
| | 217 | |
|
| 0 | 218 | | var journalPath = dbFilePath + "-journal"; |
| 0 | 219 | | if (File.Exists(journalPath)) |
| | 220 | | { |
| 0 | 221 | | File.Move(journalPath, dbFilePath + ".old-journal"); |
| | 222 | | } |
| 0 | 223 | | } |
| 0 | 224 | | catch (IOException e) |
| | 225 | | { |
| 0 | 226 | | _logger.LogError(e, "Error renaming legacy display preferences database to 'displaypreferences.db.old'") |
| 0 | 227 | | } |
| 0 | 228 | | } |
| | 229 | | } |
| | 230 | | } |