123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- #pragma warning disable CS1591
- using System;
- using System.IO;
- using Emby.Server.Implementations.Data;
- using Jellyfin.Data.Entities;
- using Jellyfin.Server.Implementations;
- using MediaBrowser.Controller;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.Extensions.Logging;
- using SQLitePCL.pretty;
- namespace Jellyfin.Server.Migrations.Routines
- {
- public class MigrateActivityLogDb : IMigrationRoutine
- {
- private const string DbFilename = "activitylog.db";
- private readonly ILogger<MigrateActivityLogDb> _logger;
- private readonly JellyfinDbProvider _provider;
- private readonly IServerApplicationPaths _paths;
- public MigrateActivityLogDb(ILogger<MigrateActivityLogDb> logger, IServerApplicationPaths paths, JellyfinDbProvider provider)
- {
- _logger = logger;
- _provider = provider;
- _paths = paths;
- }
- public Guid Id => Guid.Parse("3793eb59-bc8c-456c-8b9f-bd5a62a42978");
- public string Name => "MigrateActivityLogDatabase";
- public void Perform()
- {
- var dataPath = _paths.DataPath;
- using (var connection = SQLite3.Open(
- Path.Combine(dataPath, DbFilename),
- ConnectionFlags.ReadOnly,
- null))
- {
- _logger.LogInformation("Migrating the database may take a while, do not stop Jellyfin.");
- using var dbContext = _provider.CreateContext();
- var queryResult = connection.Query("SELECT * FROM ActivityLog ORDER BY Id ASC");
- // Make sure that the database is empty in case of failed migration due to power outages, etc.
- dbContext.ActivityLogs.RemoveRange(dbContext.ActivityLogs);
- dbContext.SaveChanges();
- // Reset the autoincrement counter
- dbContext.Database.ExecuteSqlRaw("UPDATE sqlite_sequence SET seq = 0 WHERE name = 'ActivityLog';");
- dbContext.SaveChanges();
- foreach (var entry in queryResult)
- {
- var newEntry = new ActivityLog(
- entry[1].ToString(),
- entry[4].ToString(),
- entry[6].SQLiteType == SQLiteType.Null ? Guid.Empty : Guid.Parse(entry[6].ToString()),
- entry[7].ReadDateTime(),
- ParseLogLevel(entry[8].ToString()));
- if (entry[2].SQLiteType != SQLiteType.Null)
- {
- newEntry.Overview = entry[2].ToString();
- }
- if (entry[3].SQLiteType != SQLiteType.Null)
- {
- newEntry.ShortOverview = entry[3].ToString();
- }
- if (entry[5].SQLiteType != SQLiteType.Null)
- {
- newEntry.ItemId = entry[5].ToString();
- }
- dbContext.ActivityLogs.Add(newEntry);
- dbContext.SaveChanges();
- }
- }
- try
- {
- File.Move(Path.Combine(dataPath, DbFilename), Path.Combine(dataPath, DbFilename + ".old"));
- }
- catch (IOException e)
- {
- _logger.LogError(e, "Error renaming legacy activity log database to 'activitylog.db.old'");
- }
- }
- private LogLevel ParseLogLevel(string entry)
- {
- if (string.Equals(entry, "Debug", StringComparison.OrdinalIgnoreCase))
- {
- return LogLevel.Debug;
- }
- if (string.Equals(entry, "Information", StringComparison.OrdinalIgnoreCase)
- || string.Equals(entry, "Info", StringComparison.OrdinalIgnoreCase))
- {
- return LogLevel.Information;
- }
- if (string.Equals(entry, "Warning", StringComparison.OrdinalIgnoreCase)
- || string.Equals(entry, "Warn", StringComparison.OrdinalIgnoreCase))
- {
- return LogLevel.Warning;
- }
- if (string.Equals(entry, "Error", StringComparison.OrdinalIgnoreCase))
- {
- return LogLevel.Error;
- }
- return LogLevel.Trace;
- }
- }
- }
|