mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 18:47:05 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			124 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Globalization;
 | |
| using System.IO;
 | |
| using System.Linq;
 | |
| using System.Threading.Tasks;
 | |
| using API.Entities;
 | |
| using API.Services;
 | |
| using CsvHelper;
 | |
| using CsvHelper.Configuration.Attributes;
 | |
| using Kavita.Common.EnvironmentInfo;
 | |
| using Microsoft.EntityFrameworkCore;
 | |
| using Microsoft.Extensions.Logging;
 | |
| 
 | |
| namespace API.Data.ManualMigrations;
 | |
| 
 | |
| public class ProgressExport
 | |
| {
 | |
|     [Name("Library Id")]
 | |
|     public int LibraryId { get; set; }
 | |
| 
 | |
|     [Name("Library Name")]
 | |
|     public string LibraryName { get; set; }
 | |
| 
 | |
|     [Name("Series Name")]
 | |
|     public string SeriesName { get; set; }
 | |
| 
 | |
|     [Name("Volume Number")]
 | |
|     public string VolumeRange { get; set; }
 | |
| 
 | |
|     [Name("Volume LookupName")]
 | |
|     public string VolumeLookupName { get; set; }
 | |
| 
 | |
|     [Name("Chapter Number")]
 | |
|     public string ChapterRange { get; set; }
 | |
| 
 | |
|     [Name("FileName")]
 | |
|     public string MangaFileName { get; set; }
 | |
| 
 | |
|     [Name("FilePath")]
 | |
|     public string MangaFilePath { get; set; }
 | |
| 
 | |
|     [Name("AppUser Name")]
 | |
|     public string AppUserName { get; set; }
 | |
| 
 | |
|     [Name("AppUser Id")]
 | |
|     public int AppUserId { get; set; }
 | |
| 
 | |
|     [Name("Pages Read")]
 | |
|     public int PagesRead { get; set; }
 | |
| 
 | |
|     [Name("BookScrollId")]
 | |
|     public string BookScrollId { get; set; }
 | |
| 
 | |
|     [Name("Progress Created")]
 | |
|     public DateTime Created { get; set; }
 | |
| 
 | |
|     [Name("Progress LastModified")]
 | |
|     public DateTime LastModified { get; set; }
 | |
| }
 | |
| 
 | |
| /// <summary>
 | |
| /// v0.8.0 - Progress is extracted and saved in a csv
 | |
| /// </summary>
 | |
| public static class MigrateProgressExport
 | |
| {
 | |
|     public static async Task Migrate(DataContext dataContext, IDirectoryService directoryService, ILogger<Program> logger)
 | |
|     {
 | |
|         try
 | |
|         {
 | |
|             if (await dataContext.ManualMigrationHistory.AnyAsync(m => m.Name == "MigrateProgressExport"))
 | |
|             {
 | |
|                 return;
 | |
|             }
 | |
| 
 | |
|             logger.LogCritical(
 | |
|                 "Running MigrateProgressExport migration - Please be patient, this may take some time. This is not an error");
 | |
| 
 | |
|             var data = await dataContext.AppUserProgresses
 | |
|                 .Join(dataContext.Series, progress => progress.SeriesId, series => series.Id, (progress, series) => new { progress, series })
 | |
|                 .Join(dataContext.Volume, ps => ps.progress.VolumeId, volume => volume.Id, (ps, volume) => new { ps.progress, ps.series, volume })
 | |
|                 .Join(dataContext.Chapter, psv => psv.progress.ChapterId, chapter => chapter.Id, (psv, chapter) => new { psv.progress, psv.series, psv.volume, chapter })
 | |
|                 .Join(dataContext.MangaFile, psvc => psvc.chapter.Id, mangaFile => mangaFile.ChapterId, (psvc, mangaFile) => new { psvc.progress, psvc.series, psvc.volume, psvc.chapter, mangaFile })
 | |
|                 .Join(dataContext.AppUser, psvcm => psvcm.progress.AppUserId, appUser => appUser.Id, (psvcm, appUser) => new
 | |
|                 {
 | |
|                     LibraryId = psvcm.series.LibraryId,
 | |
|                     LibraryName = psvcm.series.Library.Name,
 | |
|                     SeriesName = psvcm.series.Name,
 | |
|                     VolumeRange = psvcm.volume.MinNumber + "-" + psvcm.volume.MaxNumber,
 | |
|                     VolumeLookupName = psvcm.volume.Name,
 | |
|                     ChapterRange = psvcm.chapter.Range,
 | |
|                     MangaFileName = psvcm.mangaFile.FileName,
 | |
|                     MangaFilePath = psvcm.mangaFile.FilePath,
 | |
|                     AppUserName = appUser.UserName,
 | |
|                     AppUserId = appUser.Id,
 | |
|                     PagesRead = psvcm.progress.PagesRead,
 | |
|                     BookScrollId = psvcm.progress.BookScrollId,
 | |
|                     ProgressCreated = psvcm.progress.Created,
 | |
|                     ProgressLastModified = psvcm.progress.LastModified
 | |
|                 }).ToListAsync();
 | |
| 
 | |
| 
 | |
|             // Write the mapped data to a CSV file
 | |
|             await using var writer = new StreamWriter(Path.Join(directoryService.ConfigDirectory, "progress_export.csv"));
 | |
|             await using var csv = new CsvWriter(writer, CultureInfo.InvariantCulture);
 | |
|             await csv.WriteRecordsAsync(data);
 | |
| 
 | |
|             logger.LogCritical(
 | |
|                 "Running MigrateProgressExport migration - Completed. This is not an error");
 | |
|         }
 | |
|         catch (Exception ex)
 | |
|         {
 | |
|             // On new installs, the db isn't setup yet, so this has nothing to do
 | |
|         }
 | |
| 
 | |
|         dataContext.ManualMigrationHistory.Add(new ManualMigrationHistory()
 | |
|         {
 | |
|             Name = "MigrateProgressExport",
 | |
|             ProductVersion = BuildInfo.Version.ToString(),
 | |
|             RanAt = DateTime.UtcNow
 | |
|         });
 | |
|         await dataContext.SaveChangesAsync();
 | |
|     }
 | |
| }
 |