mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
* Implemented methods to parse out the whole ComicInfo file and a mock ComicInfo from epub files. * Removed unused imports. ScanSeries needs to cleanup deleted chapters and call RefreshMetadata. Ensure after scan we cleanup tags without any series. * Random cleanup * Added some comments about data getting stale and not updating. * Removed old Summary methods in favor of the ComicInfo versions * Added a missing property * Fixed unit test
94 lines
3.5 KiB
C#
94 lines
3.5 KiB
C#
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using API.Interfaces;
|
|
using API.Interfaces.Services;
|
|
using Hangfire;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace API.Services.Tasks
|
|
{
|
|
/// <summary>
|
|
/// Cleans up after operations on reoccurring basis
|
|
/// </summary>
|
|
public class CleanupService : ICleanupService
|
|
{
|
|
private readonly ICacheService _cacheService;
|
|
private readonly ILogger<CleanupService> _logger;
|
|
private readonly IBackupService _backupService;
|
|
private readonly IUnitOfWork _unitOfWork;
|
|
private readonly IDirectoryService _directoryService;
|
|
|
|
public CleanupService(ICacheService cacheService, ILogger<CleanupService> logger,
|
|
IBackupService backupService, IUnitOfWork unitOfWork, IDirectoryService directoryService)
|
|
{
|
|
_cacheService = cacheService;
|
|
_logger = logger;
|
|
_backupService = backupService;
|
|
_unitOfWork = unitOfWork;
|
|
_directoryService = directoryService;
|
|
}
|
|
|
|
public void CleanupCacheDirectory()
|
|
{
|
|
_logger.LogInformation("Cleaning cache directory");
|
|
_cacheService.Cleanup();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Cleans up Temp, cache, deleted cover images, and old database backups
|
|
/// </summary>
|
|
[AutomaticRetry(Attempts = 3, LogEvents = false, OnAttemptsExceeded = AttemptsExceededAction.Fail)]
|
|
public async Task Cleanup()
|
|
{
|
|
_logger.LogInformation("Starting Cleanup");
|
|
_logger.LogInformation("Cleaning temp directory");
|
|
var tempDirectory = Path.Join(Directory.GetCurrentDirectory(), "temp");
|
|
DirectoryService.ClearDirectory(tempDirectory);
|
|
CleanupCacheDirectory();
|
|
_logger.LogInformation("Cleaning old database backups");
|
|
_backupService.CleanupBackups();
|
|
_logger.LogInformation("Cleaning deleted cover images");
|
|
await DeleteSeriesCoverImages();
|
|
await DeleteChapterCoverImages();
|
|
await DeleteTagCoverImages();
|
|
_logger.LogInformation("Cleanup finished");
|
|
}
|
|
|
|
private async Task DeleteSeriesCoverImages()
|
|
{
|
|
var images = await _unitOfWork.SeriesRepository.GetAllCoverImagesAsync();
|
|
var files = _directoryService.GetFiles(DirectoryService.CoverImageDirectory, ImageService.SeriesCoverImageRegex);
|
|
foreach (var file in files)
|
|
{
|
|
if (images.Contains(Path.GetFileName(file))) continue;
|
|
File.Delete(file);
|
|
|
|
}
|
|
}
|
|
|
|
private async Task DeleteChapterCoverImages()
|
|
{
|
|
var images = await _unitOfWork.ChapterRepository.GetAllCoverImagesAsync();
|
|
var files = _directoryService.GetFiles(DirectoryService.CoverImageDirectory, ImageService.ChapterCoverImageRegex);
|
|
foreach (var file in files)
|
|
{
|
|
if (images.Contains(Path.GetFileName(file))) continue;
|
|
File.Delete(file);
|
|
|
|
}
|
|
}
|
|
|
|
private async Task DeleteTagCoverImages()
|
|
{
|
|
var images = await _unitOfWork.CollectionTagRepository.GetAllCoverImagesAsync();
|
|
var files = _directoryService.GetFiles(DirectoryService.CoverImageDirectory, ImageService.CollectionTagCoverImageRegex);
|
|
foreach (var file in files)
|
|
{
|
|
if (images.Contains(Path.GetFileName(file))) continue;
|
|
File.Delete(file);
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|