| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.IO; |
| | 4 | | using Emby.Server.Implementations.Data; |
| | 5 | | using Jellyfin.Database.Implementations; |
| | 6 | | using Jellyfin.Database.Implementations.Entities; |
| | 7 | | using MediaBrowser.Controller; |
| | 8 | | using Microsoft.Data.Sqlite; |
| | 9 | | using Microsoft.EntityFrameworkCore; |
| | 10 | | using Microsoft.Extensions.Logging; |
| | 11 | |
|
| | 12 | | namespace Jellyfin.Server.Migrations.Routines |
| | 13 | | { |
| | 14 | | /// <summary> |
| | 15 | | /// The migration routine for migrating the activity log database to EF Core. |
| | 16 | | /// </summary> |
| | 17 | | public class MigrateActivityLogDb : IMigrationRoutine |
| | 18 | | { |
| | 19 | | private const string DbFilename = "activitylog.db"; |
| | 20 | |
|
| | 21 | | private readonly ILogger<MigrateActivityLogDb> _logger; |
| | 22 | | private readonly IDbContextFactory<JellyfinDbContext> _provider; |
| | 23 | | private readonly IServerApplicationPaths _paths; |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// Initializes a new instance of the <see cref="MigrateActivityLogDb"/> class. |
| | 27 | | /// </summary> |
| | 28 | | /// <param name="logger">The logger.</param> |
| | 29 | | /// <param name="paths">The server application paths.</param> |
| | 30 | | /// <param name="provider">The database provider.</param> |
| | 31 | | public MigrateActivityLogDb(ILogger<MigrateActivityLogDb> logger, IServerApplicationPaths paths, IDbContextFacto |
| | 32 | | { |
| 0 | 33 | | _logger = logger; |
| 0 | 34 | | _provider = provider; |
| 0 | 35 | | _paths = paths; |
| 0 | 36 | | } |
| | 37 | |
|
| | 38 | | /// <inheritdoc/> |
| 0 | 39 | | public Guid Id => Guid.Parse("3793eb59-bc8c-456c-8b9f-bd5a62a42978"); |
| | 40 | |
|
| | 41 | | /// <inheritdoc/> |
| 0 | 42 | | public string Name => "MigrateActivityLogDatabase"; |
| | 43 | |
|
| | 44 | | /// <inheritdoc/> |
| 0 | 45 | | public bool PerformOnNewInstall => false; |
| | 46 | |
|
| | 47 | | /// <inheritdoc/> |
| | 48 | | public void Perform() |
| | 49 | | { |
| 0 | 50 | | var logLevelDictionary = new Dictionary<string, LogLevel>(StringComparer.OrdinalIgnoreCase) |
| 0 | 51 | | { |
| 0 | 52 | | { "None", LogLevel.None }, |
| 0 | 53 | | { "Trace", LogLevel.Trace }, |
| 0 | 54 | | { "Debug", LogLevel.Debug }, |
| 0 | 55 | | { "Information", LogLevel.Information }, |
| 0 | 56 | | { "Info", LogLevel.Information }, |
| 0 | 57 | | { "Warn", LogLevel.Warning }, |
| 0 | 58 | | { "Warning", LogLevel.Warning }, |
| 0 | 59 | | { "Error", LogLevel.Error }, |
| 0 | 60 | | { "Critical", LogLevel.Critical } |
| 0 | 61 | | }; |
| | 62 | |
|
| 0 | 63 | | var dataPath = _paths.DataPath; |
| 0 | 64 | | using (var connection = new SqliteConnection($"Filename={Path.Combine(dataPath, DbFilename)}")) |
| | 65 | | { |
| 0 | 66 | | connection.Open(); |
| | 67 | |
|
| 0 | 68 | | using var userDbConnection = new SqliteConnection($"Filename={Path.Combine(dataPath, "users.db")}"); |
| 0 | 69 | | userDbConnection.Open(); |
| 0 | 70 | | _logger.LogWarning("Migrating the activity database may take a while, do not stop Jellyfin."); |
| 0 | 71 | | using var dbContext = _provider.CreateDbContext(); |
| | 72 | |
|
| | 73 | | // Make sure that the database is empty in case of failed migration due to power outages, etc. |
| 0 | 74 | | dbContext.ActivityLogs.RemoveRange(dbContext.ActivityLogs); |
| 0 | 75 | | dbContext.SaveChanges(); |
| | 76 | | // Reset the autoincrement counter |
| 0 | 77 | | dbContext.Database.ExecuteSqlRaw("UPDATE sqlite_sequence SET seq = 0 WHERE name = 'ActivityLog';"); |
| 0 | 78 | | dbContext.SaveChanges(); |
| | 79 | |
|
| 0 | 80 | | var newEntries = new List<ActivityLog>(); |
| | 81 | |
|
| 0 | 82 | | var queryResult = connection.Query("SELECT * FROM ActivityLog ORDER BY Id"); |
| | 83 | |
|
| 0 | 84 | | foreach (var entry in queryResult) |
| | 85 | | { |
| 0 | 86 | | if (!logLevelDictionary.TryGetValue(entry.GetString(8), out var severity)) |
| | 87 | | { |
| 0 | 88 | | severity = LogLevel.Trace; |
| | 89 | | } |
| | 90 | |
|
| 0 | 91 | | var guid = Guid.Empty; |
| 0 | 92 | | if (!entry.IsDBNull(6) && !entry.TryGetGuid(6, out guid)) |
| | 93 | | { |
| 0 | 94 | | var id = entry.GetString(6); |
| | 95 | | // This is not a valid Guid, see if it is an internal ID from an old Emby schema |
| 0 | 96 | | _logger.LogWarning("Invalid Guid in UserId column: {Guid}", id); |
| | 97 | |
|
| 0 | 98 | | using var statement = userDbConnection.PrepareStatement("SELECT guid FROM LocalUsersv2 WHERE Id= |
| 0 | 99 | | statement.TryBind("@Id", id); |
| | 100 | |
|
| 0 | 101 | | using var reader = statement.ExecuteReader(); |
| 0 | 102 | | if (reader.HasRows && reader.Read() && reader.TryGetGuid(0, out guid)) |
| | 103 | | { |
| | 104 | | // Successfully parsed a Guid from the user table. |
| 0 | 105 | | break; |
| | 106 | | } |
| | 107 | | } |
| | 108 | |
|
| 0 | 109 | | var newEntry = new ActivityLog(entry.GetString(1), entry.GetString(4), guid) |
| 0 | 110 | | { |
| 0 | 111 | | DateCreated = entry.GetDateTime(7), |
| 0 | 112 | | LogSeverity = severity |
| 0 | 113 | | }; |
| | 114 | |
|
| 0 | 115 | | if (entry.TryGetString(2, out var result)) |
| | 116 | | { |
| 0 | 117 | | newEntry.Overview = result; |
| | 118 | | } |
| | 119 | |
|
| 0 | 120 | | if (entry.TryGetString(3, out result)) |
| | 121 | | { |
| 0 | 122 | | newEntry.ShortOverview = result; |
| | 123 | | } |
| | 124 | |
|
| 0 | 125 | | if (entry.TryGetString(5, out result)) |
| | 126 | | { |
| 0 | 127 | | newEntry.ItemId = result; |
| | 128 | | } |
| | 129 | |
|
| 0 | 130 | | newEntries.Add(newEntry); |
| | 131 | | } |
| | 132 | |
|
| 0 | 133 | | dbContext.ActivityLogs.AddRange(newEntries); |
| 0 | 134 | | dbContext.SaveChanges(); |
| | 135 | | } |
| | 136 | |
|
| | 137 | | try |
| | 138 | | { |
| 0 | 139 | | File.Move(Path.Combine(dataPath, DbFilename), Path.Combine(dataPath, DbFilename + ".old")); |
| | 140 | |
|
| 0 | 141 | | var journalPath = Path.Combine(dataPath, DbFilename + "-journal"); |
| 0 | 142 | | if (File.Exists(journalPath)) |
| | 143 | | { |
| 0 | 144 | | File.Move(journalPath, Path.Combine(dataPath, DbFilename + ".old-journal")); |
| | 145 | | } |
| 0 | 146 | | } |
| 0 | 147 | | catch (IOException e) |
| | 148 | | { |
| 0 | 149 | | _logger.LogError(e, "Error renaming legacy activity log database to 'activitylog.db.old'"); |
| 0 | 150 | | } |
| 0 | 151 | | } |
| | 152 | | } |
| | 153 | | } |