| | 1 | | using System; |
| | 2 | | using System.IO; |
| | 3 | | using Emby.Server.Implementations.Data; |
| | 4 | | using Jellyfin.Data; |
| | 5 | | using Jellyfin.Database.Implementations; |
| | 6 | | using Jellyfin.Database.Implementations.Entities; |
| | 7 | | using Jellyfin.Database.Implementations.Enums; |
| | 8 | | using Jellyfin.Extensions.Json; |
| | 9 | | using Jellyfin.Server.Implementations.Users; |
| | 10 | | using MediaBrowser.Controller; |
| | 11 | | using MediaBrowser.Controller.Entities; |
| | 12 | | using MediaBrowser.Model.Configuration; |
| | 13 | | using MediaBrowser.Model.Serialization; |
| | 14 | | using MediaBrowser.Model.Users; |
| | 15 | | using Microsoft.Data.Sqlite; |
| | 16 | | using Microsoft.EntityFrameworkCore; |
| | 17 | | using Microsoft.Extensions.Logging; |
| | 18 | | using JsonSerializer = System.Text.Json.JsonSerializer; |
| | 19 | |
|
| | 20 | | namespace Jellyfin.Server.Migrations.Routines |
| | 21 | | { |
| | 22 | | /// <summary> |
| | 23 | | /// The migration routine for migrating the user database to EF Core. |
| | 24 | | /// </summary> |
| | 25 | | public class MigrateUserDb : IMigrationRoutine |
| | 26 | | { |
| | 27 | | private const string DbFilename = "users.db"; |
| | 28 | |
|
| | 29 | | private readonly ILogger<MigrateUserDb> _logger; |
| | 30 | | private readonly IServerApplicationPaths _paths; |
| | 31 | | private readonly IDbContextFactory<JellyfinDbContext> _provider; |
| | 32 | | private readonly IXmlSerializer _xmlSerializer; |
| | 33 | |
|
| | 34 | | /// <summary> |
| | 35 | | /// Initializes a new instance of the <see cref="MigrateUserDb"/> class. |
| | 36 | | /// </summary> |
| | 37 | | /// <param name="logger">The logger.</param> |
| | 38 | | /// <param name="paths">The server application paths.</param> |
| | 39 | | /// <param name="provider">The database provider.</param> |
| | 40 | | /// <param name="xmlSerializer">The xml serializer.</param> |
| | 41 | | public MigrateUserDb( |
| | 42 | | ILogger<MigrateUserDb> logger, |
| | 43 | | IServerApplicationPaths paths, |
| | 44 | | IDbContextFactory<JellyfinDbContext> provider, |
| | 45 | | IXmlSerializer xmlSerializer) |
| | 46 | | { |
| 0 | 47 | | _logger = logger; |
| 0 | 48 | | _paths = paths; |
| 0 | 49 | | _provider = provider; |
| 0 | 50 | | _xmlSerializer = xmlSerializer; |
| 0 | 51 | | } |
| | 52 | |
|
| | 53 | | /// <inheritdoc/> |
| 0 | 54 | | public Guid Id => Guid.Parse("5C4B82A2-F053-4009-BD05-B6FCAD82F14C"); |
| | 55 | |
|
| | 56 | | /// <inheritdoc/> |
| 0 | 57 | | public string Name => "MigrateUserDatabase"; |
| | 58 | |
|
| | 59 | | /// <inheritdoc/> |
| 0 | 60 | | public bool PerformOnNewInstall => false; |
| | 61 | |
|
| | 62 | | /// <inheritdoc/> |
| | 63 | | public void Perform() |
| | 64 | | { |
| 0 | 65 | | var dataPath = _paths.DataPath; |
| 0 | 66 | | _logger.LogInformation("Migrating the user database may take a while, do not stop Jellyfin."); |
| | 67 | |
|
| 0 | 68 | | using (var connection = new SqliteConnection($"Filename={Path.Combine(dataPath, DbFilename)}")) |
| | 69 | | { |
| 0 | 70 | | connection.Open(); |
| 0 | 71 | | using var dbContext = _provider.CreateDbContext(); |
| | 72 | |
|
| 0 | 73 | | var queryResult = connection.Query("SELECT * FROM LocalUsersv2"); |
| | 74 | |
|
| 0 | 75 | | dbContext.RemoveRange(dbContext.Users); |
| 0 | 76 | | dbContext.SaveChanges(); |
| | 77 | |
|
| 0 | 78 | | foreach (var entry in queryResult) |
| | 79 | | { |
| 0 | 80 | | UserMockup? mockup = JsonSerializer.Deserialize<UserMockup>(entry.GetStream(2), JsonDefaults.Options |
| 0 | 81 | | if (mockup is null) |
| | 82 | | { |
| | 83 | | continue; |
| | 84 | | } |
| | 85 | |
|
| 0 | 86 | | var userDataDir = Path.Combine(_paths.UserConfigurationDirectoryPath, mockup.Name); |
| | 87 | |
|
| 0 | 88 | | var configPath = Path.Combine(userDataDir, "config.xml"); |
| 0 | 89 | | var config = File.Exists(configPath) |
| 0 | 90 | | ? (UserConfiguration?)_xmlSerializer.DeserializeFromFile(typeof(UserConfiguration), configPath) |
| 0 | 91 | | : new UserConfiguration(); |
| | 92 | |
|
| 0 | 93 | | var policyPath = Path.Combine(userDataDir, "policy.xml"); |
| 0 | 94 | | var policy = File.Exists(policyPath) |
| 0 | 95 | | ? (UserPolicy?)_xmlSerializer.DeserializeFromFile(typeof(UserPolicy), policyPath) ?? new UserPol |
| 0 | 96 | | : new UserPolicy(); |
| 0 | 97 | | policy.AuthenticationProviderId = policy.AuthenticationProviderId?.Replace( |
| 0 | 98 | | "Emby.Server.Implementations.Library", |
| 0 | 99 | | "Jellyfin.Server.Implementations.Users", |
| 0 | 100 | | StringComparison.Ordinal) |
| 0 | 101 | | ?? typeof(DefaultAuthenticationProvider).FullName; |
| | 102 | |
|
| 0 | 103 | | policy.PasswordResetProviderId = typeof(DefaultPasswordResetProvider).FullName; |
| 0 | 104 | | int? maxLoginAttempts = policy.LoginAttemptsBeforeLockout switch |
| 0 | 105 | | { |
| 0 | 106 | | -1 => null, |
| 0 | 107 | | 0 => 3, |
| 0 | 108 | | _ => policy.LoginAttemptsBeforeLockout |
| 0 | 109 | | }; |
| | 110 | |
|
| 0 | 111 | | var user = new User(mockup.Name, policy.AuthenticationProviderId!, policy.PasswordResetProviderId!) |
| 0 | 112 | | { |
| 0 | 113 | | Id = entry.GetGuid(1), |
| 0 | 114 | | InternalId = entry.GetInt64(0), |
| 0 | 115 | | MaxParentalRatingScore = policy.MaxParentalRating, |
| 0 | 116 | | MaxParentalRatingSubScore = null, |
| 0 | 117 | | EnableUserPreferenceAccess = policy.EnableUserPreferenceAccess, |
| 0 | 118 | | RemoteClientBitrateLimit = policy.RemoteClientBitrateLimit, |
| 0 | 119 | | InvalidLoginAttemptCount = policy.InvalidLoginAttemptCount, |
| 0 | 120 | | LoginAttemptsBeforeLockout = maxLoginAttempts, |
| 0 | 121 | | SubtitleMode = config.SubtitleMode, |
| 0 | 122 | | HidePlayedInLatest = config.HidePlayedInLatest, |
| 0 | 123 | | EnableLocalPassword = config.EnableLocalPassword, |
| 0 | 124 | | PlayDefaultAudioTrack = config.PlayDefaultAudioTrack, |
| 0 | 125 | | DisplayCollectionsView = config.DisplayCollectionsView, |
| 0 | 126 | | DisplayMissingEpisodes = config.DisplayMissingEpisodes, |
| 0 | 127 | | AudioLanguagePreference = config.AudioLanguagePreference, |
| 0 | 128 | | RememberAudioSelections = config.RememberAudioSelections, |
| 0 | 129 | | EnableNextEpisodeAutoPlay = config.EnableNextEpisodeAutoPlay, |
| 0 | 130 | | RememberSubtitleSelections = config.RememberSubtitleSelections, |
| 0 | 131 | | SubtitleLanguagePreference = config.SubtitleLanguagePreference, |
| 0 | 132 | | Password = mockup.Password, |
| 0 | 133 | | LastLoginDate = mockup.LastLoginDate, |
| 0 | 134 | | LastActivityDate = mockup.LastActivityDate |
| 0 | 135 | | }; |
| | 136 | |
|
| 0 | 137 | | if (mockup.ImageInfos.Length > 0) |
| | 138 | | { |
| 0 | 139 | | ItemImageInfo info = mockup.ImageInfos[0]; |
| | 140 | |
|
| 0 | 141 | | user.ProfileImage = new ImageInfo(info.Path) |
| 0 | 142 | | { |
| 0 | 143 | | LastModified = info.DateModified |
| 0 | 144 | | }; |
| | 145 | | } |
| | 146 | |
|
| 0 | 147 | | user.SetPermission(PermissionKind.IsAdministrator, policy.IsAdministrator); |
| 0 | 148 | | user.SetPermission(PermissionKind.IsHidden, policy.IsHidden); |
| 0 | 149 | | user.SetPermission(PermissionKind.IsDisabled, policy.IsDisabled); |
| 0 | 150 | | user.SetPermission(PermissionKind.EnableSharedDeviceControl, policy.EnableSharedDeviceControl); |
| 0 | 151 | | user.SetPermission(PermissionKind.EnableRemoteAccess, policy.EnableRemoteAccess); |
| 0 | 152 | | user.SetPermission(PermissionKind.EnableLiveTvManagement, policy.EnableLiveTvManagement); |
| 0 | 153 | | user.SetPermission(PermissionKind.EnableLiveTvAccess, policy.EnableLiveTvAccess); |
| 0 | 154 | | user.SetPermission(PermissionKind.EnableMediaPlayback, policy.EnableMediaPlayback); |
| 0 | 155 | | user.SetPermission(PermissionKind.EnableAudioPlaybackTranscoding, policy.EnableAudioPlaybackTranscod |
| 0 | 156 | | user.SetPermission(PermissionKind.EnableVideoPlaybackTranscoding, policy.EnableVideoPlaybackTranscod |
| 0 | 157 | | user.SetPermission(PermissionKind.EnableContentDeletion, policy.EnableContentDeletion); |
| 0 | 158 | | user.SetPermission(PermissionKind.EnableContentDownloading, policy.EnableContentDownloading); |
| 0 | 159 | | user.SetPermission(PermissionKind.EnableSyncTranscoding, policy.EnableSyncTranscoding); |
| 0 | 160 | | user.SetPermission(PermissionKind.EnableMediaConversion, policy.EnableMediaConversion); |
| 0 | 161 | | user.SetPermission(PermissionKind.EnableAllChannels, policy.EnableAllChannels); |
| 0 | 162 | | user.SetPermission(PermissionKind.EnableAllDevices, policy.EnableAllDevices); |
| 0 | 163 | | user.SetPermission(PermissionKind.EnableAllFolders, policy.EnableAllFolders); |
| 0 | 164 | | user.SetPermission(PermissionKind.EnableRemoteControlOfOtherUsers, policy.EnableRemoteControlOfOther |
| 0 | 165 | | user.SetPermission(PermissionKind.EnablePlaybackRemuxing, policy.EnablePlaybackRemuxing); |
| 0 | 166 | | user.SetPermission(PermissionKind.ForceRemoteSourceTranscoding, policy.ForceRemoteSourceTranscoding) |
| 0 | 167 | | user.SetPermission(PermissionKind.EnablePublicSharing, policy.EnablePublicSharing); |
| 0 | 168 | | user.SetPermission(PermissionKind.EnableCollectionManagement, policy.EnableCollectionManagement); |
| | 169 | |
|
| 0 | 170 | | foreach (var policyAccessSchedule in policy.AccessSchedules) |
| | 171 | | { |
| 0 | 172 | | user.AccessSchedules.Add(policyAccessSchedule); |
| | 173 | | } |
| | 174 | |
|
| 0 | 175 | | user.SetPreference(PreferenceKind.BlockedTags, policy.BlockedTags); |
| 0 | 176 | | user.SetPreference(PreferenceKind.EnabledChannels, policy.EnabledChannels); |
| 0 | 177 | | user.SetPreference(PreferenceKind.EnabledDevices, policy.EnabledDevices); |
| 0 | 178 | | user.SetPreference(PreferenceKind.EnabledFolders, policy.EnabledFolders); |
| 0 | 179 | | user.SetPreference(PreferenceKind.EnableContentDeletionFromFolders, policy.EnableContentDeletionFrom |
| 0 | 180 | | user.SetPreference(PreferenceKind.OrderedViews, config.OrderedViews); |
| 0 | 181 | | user.SetPreference(PreferenceKind.GroupedFolders, config.GroupedFolders); |
| 0 | 182 | | user.SetPreference(PreferenceKind.MyMediaExcludes, config.MyMediaExcludes); |
| 0 | 183 | | user.SetPreference(PreferenceKind.LatestItemExcludes, config.LatestItemsExcludes); |
| | 184 | |
|
| 0 | 185 | | dbContext.Users.Add(user); |
| | 186 | | } |
| | 187 | |
|
| 0 | 188 | | dbContext.SaveChanges(); |
| | 189 | | } |
| | 190 | |
|
| | 191 | | try |
| | 192 | | { |
| 0 | 193 | | File.Move(Path.Combine(dataPath, DbFilename), Path.Combine(dataPath, DbFilename + ".old")); |
| | 194 | |
|
| 0 | 195 | | var journalPath = Path.Combine(dataPath, DbFilename + "-journal"); |
| 0 | 196 | | if (File.Exists(journalPath)) |
| | 197 | | { |
| 0 | 198 | | File.Move(journalPath, Path.Combine(dataPath, DbFilename + ".old-journal")); |
| | 199 | | } |
| 0 | 200 | | } |
| 0 | 201 | | catch (IOException e) |
| | 202 | | { |
| 0 | 203 | | _logger.LogError(e, "Error renaming legacy user database to 'users.db.old'"); |
| 0 | 204 | | } |
| 0 | 205 | | } |
| | 206 | |
|
| | 207 | | #nullable disable |
| | 208 | | internal class UserMockup |
| | 209 | | { |
| | 210 | | public string Password { get; set; } |
| | 211 | |
|
| | 212 | | public string EasyPassword { get; set; } |
| | 213 | |
|
| | 214 | | public DateTime? LastLoginDate { get; set; } |
| | 215 | |
|
| | 216 | | public DateTime? LastActivityDate { get; set; } |
| | 217 | |
|
| | 218 | | public string Name { get; set; } |
| | 219 | |
|
| | 220 | | public ItemImageInfo[] ImageInfos { get; set; } |
| | 221 | | } |
| | 222 | | } |
| | 223 | | } |