jellyfin/Jellyfin.Server/Migrations/Routines/MigrateAuthenticationDb.cs

152 lines
5.5 KiB
C#
Raw Normal View History

2021-06-18 23:07:30 +02:00
using System;
2021-06-24 15:38:37 +02:00
using System.Collections.Generic;
2021-06-18 23:07:30 +02:00
using System.IO;
using Emby.Server.Implementations.Data;
using Jellyfin.Data.Entities.Security;
using Jellyfin.Server.Implementations;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Library;
using Microsoft.EntityFrameworkCore;
2021-06-18 23:07:30 +02:00
using Microsoft.Extensions.Logging;
using SQLitePCL.pretty;
namespace Jellyfin.Server.Migrations.Routines
{
/// <summary>
/// A migration that moves data from the authentication database into the new schema.
/// </summary>
public class MigrateAuthenticationDb : IMigrationRoutine
{
private const string DbFilename = "authentication.db";
private readonly ILogger<MigrateAuthenticationDb> _logger;
2023-01-16 18:14:44 +01:00
private readonly IDbContextFactory<JellyfinDbContext> _dbProvider;
2021-06-18 23:07:30 +02:00
private readonly IServerApplicationPaths _appPaths;
private readonly IUserManager _userManager;
2021-06-18 23:07:30 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="MigrateAuthenticationDb"/> class.
/// </summary>
/// <param name="logger">The logger.</param>
/// <param name="dbProvider">The database provider.</param>
/// <param name="appPaths">The server application paths.</param>
/// <param name="userManager">The user manager.</param>
public MigrateAuthenticationDb(
ILogger<MigrateAuthenticationDb> logger,
2023-01-16 18:14:44 +01:00
IDbContextFactory<JellyfinDbContext> dbProvider,
IServerApplicationPaths appPaths,
IUserManager userManager)
2021-06-18 23:07:30 +02:00
{
_logger = logger;
_dbProvider = dbProvider;
_appPaths = appPaths;
_userManager = userManager;
2021-06-18 23:07:30 +02:00
}
/// <inheritdoc />
public Guid Id => Guid.Parse("5BD72F41-E6F3-4F60-90AA-09869ABE0E22");
/// <inheritdoc />
public string Name => "MigrateAuthenticationDatabase";
/// <inheritdoc />
public bool PerformOnNewInstall => false;
/// <inheritdoc />
public void Perform()
{
var dataPath = _appPaths.DataPath;
using (var connection = SQLite3.Open(
Path.Combine(dataPath, DbFilename),
ConnectionFlags.ReadOnly,
null))
{
using var dbContext = _dbProvider.CreateDbContext();
2021-06-18 23:07:30 +02:00
2021-06-24 15:38:37 +02:00
var authenticatedDevices = connection.Query("SELECT * FROM Tokens");
2021-06-18 23:07:30 +02:00
2021-06-24 15:38:37 +02:00
foreach (var row in authenticatedDevices)
2021-06-18 23:07:30 +02:00
{
2022-03-01 04:44:17 +01:00
var dateCreatedStr = row[9].ToString();
_ = DateTime.TryParse(dateCreatedStr, out var dateCreated);
var dateLastActivityStr = row[10].ToString();
_ = DateTime.TryParse(dateLastActivityStr, out var dateLastActivity);
2021-06-18 23:07:30 +02:00
if (row[6].IsDbNull())
{
dbContext.ApiKeys.Add(new ApiKey(row[3].ToString())
{
2021-06-19 00:26:58 +02:00
AccessToken = row[1].ToString(),
2022-03-01 04:44:17 +01:00
DateCreated = dateCreated,
DateLastActivity = dateLastActivity
2021-06-18 23:07:30 +02:00
});
}
else
{
var userId = new Guid(row[6].ToString());
var user = _userManager.GetUserById(userId);
if (user is null)
{
// User doesn't exist, don't bring over the device.
continue;
}
2021-06-18 23:07:30 +02:00
dbContext.Devices.Add(new Device(
2021-06-22 01:06:21 +02:00
new Guid(row[6].ToString()),
2021-06-18 23:07:30 +02:00
row[3].ToString(),
row[4].ToString(),
row[5].ToString(),
row[2].ToString())
{
AccessToken = row[1].ToString(),
IsActive = row[8].ToBool(),
2022-03-01 04:44:17 +01:00
DateCreated = dateCreated,
DateLastActivity = dateLastActivity
2021-06-18 23:07:30 +02:00
});
}
}
2021-06-24 15:38:37 +02:00
var deviceOptions = connection.Query("SELECT * FROM Devices");
var deviceIds = new HashSet<string>();
foreach (var row in deviceOptions)
{
if (row[2].IsDbNull())
{
continue;
}
var deviceId = row[2].ToString();
if (deviceIds.Contains(deviceId))
{
continue;
}
deviceIds.Add(deviceId);
dbContext.DeviceOptions.Add(new DeviceOptions(deviceId)
{
CustomName = row[1].IsDbNull() ? null : row[1].ToString()
});
}
2021-06-18 23:07:30 +02:00
dbContext.SaveChanges();
}
try
{
File.Move(Path.Combine(dataPath, DbFilename), Path.Combine(dataPath, DbFilename + ".old"));
var journalPath = Path.Combine(dataPath, DbFilename + "-journal");
if (File.Exists(journalPath))
{
File.Move(journalPath, Path.Combine(dataPath, DbFilename + ".old-journal"));
}
}
catch (IOException e)
{
_logger.LogError(e, "Error renaming legacy activity log database to 'authentication.db.old'");
}
}
}
}