mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
Removed manual Migrate Series Relations migration from v0.7 release (5 releases ago). (#2158)
Don't try to backup the DB if it doesn't exist. This will stop errors in log on first start.
This commit is contained in:
parent
1fbb9d0f52
commit
c343764913
@ -1,103 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using API.Entities.Enums;
|
|
||||||
using CsvHelper;
|
|
||||||
using Kavita.Common.EnvironmentInfo;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
|
|
||||||
namespace API.Data.ManualMigrations;
|
|
||||||
|
|
||||||
internal sealed class SeriesRelationMigrationOutput
|
|
||||||
{
|
|
||||||
public required string SeriesName { get; set; }
|
|
||||||
public int SeriesId { get; set; }
|
|
||||||
public required string TargetSeriesName { get; set; }
|
|
||||||
public int TargetId { get; set; }
|
|
||||||
public RelationKind Relationship { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Introduced in v0.6.1.2 and v0.7, this exports to a temp file the existing series relationships. It is a 3 part migration.
|
|
||||||
/// This will run first, to export the data, then the DB migration will change the way the DB is constructed, then the last migration
|
|
||||||
/// will import said file and re-construct the relationships.
|
|
||||||
/// </summary>
|
|
||||||
public static class MigrateSeriesRelationsExport
|
|
||||||
{
|
|
||||||
private const string OutputFile = "config/relations.csv";
|
|
||||||
private const string CompleteOutputFile = "config/relations-imported.csv";
|
|
||||||
public static async Task Migrate(DataContext dataContext, ILogger<Program> logger)
|
|
||||||
{
|
|
||||||
logger.LogCritical("Running MigrateSeriesRelationsExport migration - Please be patient, this may take some time. This is not an error");
|
|
||||||
if (BuildInfo.Version > new Version(0, 6, 1, 3)
|
|
||||||
|| new FileInfo(OutputFile).Exists
|
|
||||||
|| new FileInfo(CompleteOutputFile).Exists)
|
|
||||||
{
|
|
||||||
logger.LogCritical("Running MigrateSeriesRelationsExport migration - complete. Nothing to do");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var seriesWithRelationships = await dataContext.Series
|
|
||||||
.Where(s => s.Relations.Any())
|
|
||||||
.Include(s => s.Relations)
|
|
||||||
.ThenInclude(r => r.TargetSeries)
|
|
||||||
.ToListAsync();
|
|
||||||
|
|
||||||
var records = new List<SeriesRelationMigrationOutput>();
|
|
||||||
var excludedRelationships = new List<RelationKind>()
|
|
||||||
{
|
|
||||||
RelationKind.Parent,
|
|
||||||
};
|
|
||||||
foreach (var series in seriesWithRelationships)
|
|
||||||
{
|
|
||||||
foreach (var relationship in series.Relations.Where(r => !excludedRelationships.Contains(r.RelationKind)))
|
|
||||||
{
|
|
||||||
records.Add(new SeriesRelationMigrationOutput()
|
|
||||||
{
|
|
||||||
SeriesId = series.Id,
|
|
||||||
SeriesName = series.Name,
|
|
||||||
Relationship = relationship.RelationKind,
|
|
||||||
TargetId = relationship.TargetSeriesId,
|
|
||||||
TargetSeriesName = relationship.TargetSeries.Name
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
await using var writer = new StreamWriter(OutputFile);
|
|
||||||
await using (var csv = new CsvWriter(writer, CultureInfo.InvariantCulture))
|
|
||||||
{
|
|
||||||
await csv.WriteRecordsAsync(records);
|
|
||||||
}
|
|
||||||
|
|
||||||
await writer.DisposeAsync();
|
|
||||||
|
|
||||||
logger.LogCritical("{OutputFile} has a backup of all data", OutputFile);
|
|
||||||
|
|
||||||
logger.LogCritical("Deleting all relationships in the DB. This is not an error");
|
|
||||||
var entities = await dataContext.SeriesRelation
|
|
||||||
.Include(s => s.Series)
|
|
||||||
.Include(s => s.TargetSeries)
|
|
||||||
.Select(s => s)
|
|
||||||
.ToListAsync();
|
|
||||||
|
|
||||||
foreach (var seriesWithRelationship in entities)
|
|
||||||
{
|
|
||||||
logger.LogCritical("Deleting {SeriesName} --{RelationshipKind}--> {TargetSeriesName}",
|
|
||||||
seriesWithRelationship.Series.Name, seriesWithRelationship.RelationKind, seriesWithRelationship.TargetSeries.Name);
|
|
||||||
dataContext.SeriesRelation.Remove(seriesWithRelationship);
|
|
||||||
|
|
||||||
await dataContext.SaveChangesAsync();
|
|
||||||
}
|
|
||||||
|
|
||||||
// In case of corrupted entities (where series were deleted but their Id still existed, we delete the rest of the table)
|
|
||||||
dataContext.SeriesRelation.RemoveRange(dataContext.SeriesRelation);
|
|
||||||
await dataContext.SaveChangesAsync();
|
|
||||||
|
|
||||||
|
|
||||||
logger.LogCritical("Running MigrateSeriesRelationsExport migration - Completed. This is not an error");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,62 +0,0 @@
|
|||||||
using System.Collections.Generic;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using API.Entities.Metadata;
|
|
||||||
using CsvHelper;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
|
|
||||||
namespace API.Data.ManualMigrations;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Introduced in v0.6.1.2 and v0.7, this imports to a temp file the existing series relationships. It is a 3 part migration.
|
|
||||||
/// This will run last, to import the data and re-construct the relationships.
|
|
||||||
/// </summary>
|
|
||||||
public static class MigrateSeriesRelationsImport
|
|
||||||
{
|
|
||||||
private const string OutputFile = "config/relations.csv";
|
|
||||||
private const string CompleteOutputFile = "config/relations-imported.csv";
|
|
||||||
public static async Task Migrate(DataContext dataContext, ILogger<Program> logger)
|
|
||||||
{
|
|
||||||
logger.LogCritical("Running MigrateSeriesRelationsImport migration - Please be patient, this may take some time. This is not an error");
|
|
||||||
if (!new FileInfo(OutputFile).Exists)
|
|
||||||
{
|
|
||||||
logger.LogCritical("Running MigrateSeriesRelationsImport migration - complete. Nothing to do");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.LogCritical("Loading backed up relationships into the DB");
|
|
||||||
List<SeriesRelationMigrationOutput> records;
|
|
||||||
using var reader = new StreamReader(OutputFile);
|
|
||||||
using (var csv = new CsvReader(reader, CultureInfo.InvariantCulture))
|
|
||||||
{
|
|
||||||
records = csv.GetRecords<SeriesRelationMigrationOutput>().ToList();
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach (var relation in records)
|
|
||||||
{
|
|
||||||
logger.LogCritical("Importing {SeriesName} --{RelationshipKind}--> {TargetSeriesName}",
|
|
||||||
relation.SeriesName, relation.Relationship, relation.TargetSeriesName);
|
|
||||||
|
|
||||||
// Filter out series that don't exist
|
|
||||||
if (!await dataContext.Series.AnyAsync(s => s.Id == relation.SeriesId) ||
|
|
||||||
!await dataContext.Series.AnyAsync(s => s.Id == relation.TargetId))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
await dataContext.SeriesRelation.AddAsync(new SeriesRelation()
|
|
||||||
{
|
|
||||||
SeriesId = relation.SeriesId,
|
|
||||||
TargetSeriesId = relation.TargetId,
|
|
||||||
RelationKind = relation.Relationship
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
await dataContext.SaveChangesAsync();
|
|
||||||
|
|
||||||
File.Move(OutputFile, CompleteOutputFile);
|
|
||||||
|
|
||||||
logger.LogCritical("Running MigrateSeriesRelationsImport migration - Completed. This is not an error");
|
|
||||||
}
|
|
||||||
}
|
|
@ -70,7 +70,8 @@ public class Program
|
|||||||
var logger = services.GetRequiredService<ILogger<Program>>();
|
var logger = services.GetRequiredService<ILogger<Program>>();
|
||||||
var context = services.GetRequiredService<DataContext>();
|
var context = services.GetRequiredService<DataContext>();
|
||||||
var pendingMigrations = await context.Database.GetPendingMigrationsAsync();
|
var pendingMigrations = await context.Database.GetPendingMigrationsAsync();
|
||||||
if (pendingMigrations.Any())
|
var isDbCreated = await context.Database.CanConnectAsync();
|
||||||
|
if (isDbCreated && pendingMigrations.Any())
|
||||||
{
|
{
|
||||||
logger.LogInformation("Performing backup as migrations are needed. Backup will be kavita.db in temp folder");
|
logger.LogInformation("Performing backup as migrations are needed. Backup will be kavita.db in temp folder");
|
||||||
var migrationDirectory = await GetMigrationDirectory(context, directoryService);
|
var migrationDirectory = await GetMigrationDirectory(context, directoryService);
|
||||||
@ -84,16 +85,6 @@ public class Program
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// This must run before the migration
|
|
||||||
try
|
|
||||||
{
|
|
||||||
await MigrateSeriesRelationsExport.Migrate(context, logger);
|
|
||||||
}
|
|
||||||
catch (Exception)
|
|
||||||
{
|
|
||||||
// If fresh install, could fail and we should just carry on as it's not applicable
|
|
||||||
}
|
|
||||||
|
|
||||||
await context.Database.MigrateAsync();
|
await context.Database.MigrateAsync();
|
||||||
|
|
||||||
await Seed.SeedRoles(services.GetRequiredService<RoleManager<AppRole>>());
|
await Seed.SeedRoles(services.GetRequiredService<RoleManager<AppRole>>());
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
"name": "GPL-3.0",
|
"name": "GPL-3.0",
|
||||||
"url": "https://github.com/Kareadita/Kavita/blob/develop/LICENSE"
|
"url": "https://github.com/Kareadita/Kavita/blob/develop/LICENSE"
|
||||||
},
|
},
|
||||||
"version": "0.7.5.4"
|
"version": "0.7.5.5"
|
||||||
},
|
},
|
||||||
"servers": [
|
"servers": [
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user