mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 05:34:21 -04:00
* Refactored all files to have Interfaces within the same file. Started moving over to file-scoped namespaces. * Refactored common methods for getting underlying file's cover, pages, and extracting into 1 interface. * More refactoring around removing dependence on explicit filetype testing for getting information. * Code is buildable, tests are broken. Huge refactor (not completed) which makes most of DirectoryService testable with a mock filesystem (and thus the services that utilize it). * Finished porting DirectoryService to use mocked filesystem implementation. * Added a null check * Added a null check * Finished all unit tests for DirectoryService. * Some misc cleanup on the code * Fixed up some bugs from refactoring scan loop. * Implemented CleanupService testing and refactored more of DirectoryService to be non-static. Fixed a bug where cover file cleanup wasn't properly finding files due to a regex bug. * Fixed an issue in CleanupBackup() where we weren't properly selecting database files older than 30 days. Finished CleanupService Tests. * Refactored Flatten and RemoveNonImages to directory service to allow CacheService to be testable. * Finally have CacheService tested. Rewrote GetCachedPagePath() to be much more straightforward & performant. * Updated DefaultParserTests.cs to contain all existing tests and follow new test layout format. * All tests fixed up
103 lines
3.5 KiB
C#
103 lines
3.5 KiB
C#
using System.Threading.Tasks;
|
|
using API.Data.Repositories;
|
|
using API.Entities;
|
|
using AutoMapper;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace API.Data;
|
|
|
|
public interface IUnitOfWork
|
|
{
|
|
ISeriesRepository SeriesRepository { get; }
|
|
IUserRepository UserRepository { get; }
|
|
ILibraryRepository LibraryRepository { get; }
|
|
IVolumeRepository VolumeRepository { get; }
|
|
ISettingsRepository SettingsRepository { get; }
|
|
IAppUserProgressRepository AppUserProgressRepository { get; }
|
|
ICollectionTagRepository CollectionTagRepository { get; }
|
|
IChapterRepository ChapterRepository { get; }
|
|
IReadingListRepository ReadingListRepository { get; }
|
|
ISeriesMetadataRepository SeriesMetadataRepository { get; }
|
|
IPersonRepository PersonRepository { get; }
|
|
IGenreRepository GenreRepository { get; }
|
|
bool Commit();
|
|
Task<bool> CommitAsync();
|
|
bool HasChanges();
|
|
bool Rollback();
|
|
Task<bool> RollbackAsync();
|
|
}
|
|
public class UnitOfWork : IUnitOfWork
|
|
{
|
|
private readonly DataContext _context;
|
|
private readonly IMapper _mapper;
|
|
private readonly UserManager<AppUser> _userManager;
|
|
|
|
public UnitOfWork(DataContext context, IMapper mapper, UserManager<AppUser> userManager)
|
|
{
|
|
_context = context;
|
|
_mapper = mapper;
|
|
_userManager = userManager;
|
|
}
|
|
|
|
public ISeriesRepository SeriesRepository => new SeriesRepository(_context, _mapper);
|
|
public IUserRepository UserRepository => new UserRepository(_context, _userManager, _mapper);
|
|
public ILibraryRepository LibraryRepository => new LibraryRepository(_context, _mapper);
|
|
|
|
public IVolumeRepository VolumeRepository => new VolumeRepository(_context, _mapper);
|
|
|
|
public ISettingsRepository SettingsRepository => new SettingsRepository(_context, _mapper);
|
|
|
|
public IAppUserProgressRepository AppUserProgressRepository => new AppUserProgressRepository(_context);
|
|
public ICollectionTagRepository CollectionTagRepository => new CollectionTagRepository(_context, _mapper);
|
|
public IChapterRepository ChapterRepository => new ChapterRepository(_context, _mapper);
|
|
public IReadingListRepository ReadingListRepository => new ReadingListRepository(_context, _mapper);
|
|
public ISeriesMetadataRepository SeriesMetadataRepository => new SeriesMetadataRepository(_context);
|
|
public IPersonRepository PersonRepository => new PersonRepository(_context, _mapper);
|
|
public IGenreRepository GenreRepository => new GenreRepository(_context, _mapper);
|
|
|
|
/// <summary>
|
|
/// Commits changes to the DB. Completes the open transaction.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public bool Commit()
|
|
{
|
|
return _context.SaveChanges() > 0;
|
|
}
|
|
/// <summary>
|
|
/// Commits changes to the DB. Completes the open transaction.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task<bool> CommitAsync()
|
|
{
|
|
return await _context.SaveChangesAsync() > 0;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Is the DB Context aware of Changes in loaded entities
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public bool HasChanges()
|
|
{
|
|
return _context.ChangeTracker.HasChanges();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Rollback transaction
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task<bool> RollbackAsync()
|
|
{
|
|
await _context.DisposeAsync();
|
|
return true;
|
|
}
|
|
/// <summary>
|
|
/// Rollback transaction
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public bool Rollback()
|
|
{
|
|
_context.Dispose();
|
|
return true;
|
|
}
|
|
}
|