mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 02:27:04 -04:00 
			
		
		
		
	* Removed some extra spam for the console * Implemented the code to update RowVersion, which is our concurrency check * Fixed a critical issue where more than one bookmark could occur for a given chapter due to a race condition. Now we use concurrency checks and we also gracefully allow more than one row, by only grabbing first. * Cleaned up the logic for IHasConcurencyToken and updated the setters to be private. * Lots of comments and when deleting a library, remove any user progress items for which chapters don't exist. * When deleting a Series, cleanup user progress rows. * Now after a scan of library, if a series is removed, collection tags are pruned as well if there are no longer any series bound to it. * Updated the image on the Readme to show a better picture * Small code cleanup to remove null check modifier as I check for null just before then * Fixed images loading multiple times due to using function in binding with random. You can now click chapter images to read that chapter specifically. * Fixed cards being different sizes when read vs unread * Moved over Robbie's workflow changes from notifier. Commented out activity indicators as that is not shipping with this release. * Remove code that isn't needed * Reverted GA * Changed GA to trigger only when HEAD is updated
		
			
				
	
	
		
			118 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Linq;
 | |
| using System.Threading;
 | |
| using System.Threading.Tasks;
 | |
| using API.Entities;
 | |
| using API.Entities.Interfaces;
 | |
| using Microsoft.AspNetCore.Identity;
 | |
| using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
 | |
| using Microsoft.EntityFrameworkCore;
 | |
| using Microsoft.EntityFrameworkCore.ChangeTracking;
 | |
| 
 | |
| namespace API.Data
 | |
| {
 | |
|     public sealed class DataContext : IdentityDbContext<AppUser, AppRole, int,
 | |
|         IdentityUserClaim<int>, AppUserRole, IdentityUserLogin<int>,
 | |
|         IdentityRoleClaim<int>, IdentityUserToken<int>>
 | |
|     {
 | |
|         public DataContext(DbContextOptions options) : base(options)
 | |
|         {
 | |
|             ChangeTracker.Tracked += OnEntityTracked;
 | |
|             ChangeTracker.StateChanged += OnEntityStateChanged;
 | |
|         }
 | |
| 
 | |
|         public DbSet<Library> Library { get; set; }
 | |
|         public DbSet<Series> Series { get; set; }
 | |
| 
 | |
|         public DbSet<Chapter> Chapter { get; set; }
 | |
|         public DbSet<Volume> Volume { get; set; }
 | |
|         public DbSet<AppUser> AppUser { get; set; }
 | |
|         public DbSet<MangaFile> MangaFile { get; set; }
 | |
|         public DbSet<AppUserProgress> AppUserProgresses { get; set; }
 | |
|         public DbSet<AppUserRating> AppUserRating { get; set; }
 | |
|         public DbSet<ServerSetting> ServerSetting { get; set; }
 | |
|         public DbSet<AppUserPreferences> AppUserPreferences { get; set; }
 | |
|         public DbSet<SeriesMetadata> SeriesMetadata { get; set; }
 | |
|         public DbSet<CollectionTag> CollectionTag { get; set; }
 | |
|         public DbSet<AppUserBookmark> AppUserBookmark { get; set; }
 | |
| 
 | |
|         protected override void OnModelCreating(ModelBuilder builder)
 | |
|         {
 | |
|             base.OnModelCreating(builder);
 | |
| 
 | |
| 
 | |
|             builder.Entity<AppUser>()
 | |
|                 .HasMany(ur => ur.UserRoles)
 | |
|                 .WithOne(u => u.User)
 | |
|                 .HasForeignKey(ur => ur.UserId)
 | |
|                 .IsRequired();
 | |
| 
 | |
|             builder.Entity<AppRole>()
 | |
|                 .HasMany(ur => ur.UserRoles)
 | |
|                 .WithOne(u => u.Role)
 | |
|                 .HasForeignKey(ur => ur.RoleId)
 | |
|                 .IsRequired();
 | |
|         }
 | |
| 
 | |
| 
 | |
|         void OnEntityTracked(object sender, EntityTrackedEventArgs e)
 | |
|         {
 | |
|             if (!e.FromQuery && e.Entry.State == EntityState.Added && e.Entry.Entity is IEntityDate entity)
 | |
|             {
 | |
|                 entity.Created = DateTime.Now;
 | |
|                 entity.LastModified = DateTime.Now;
 | |
|             }
 | |
| 
 | |
|         }
 | |
| 
 | |
|         void OnEntityStateChanged(object sender, EntityStateChangedEventArgs e)
 | |
|         {
 | |
|             if (e.NewState == EntityState.Modified && e.Entry.Entity is IEntityDate entity)
 | |
|                 entity.LastModified = DateTime.Now;
 | |
|         }
 | |
| 
 | |
|         private void OnSaveChanges()
 | |
|         {
 | |
|             foreach (var saveEntity in ChangeTracker.Entries()
 | |
|                 .Where(e => e.State == EntityState.Modified)
 | |
|                 .Select(entry => entry.Entity)
 | |
|                 .OfType<IHasConcurrencyToken>())
 | |
|             {
 | |
|                 saveEntity.OnSavingChanges();
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         #region SaveChanges overrides
 | |
| 
 | |
|         public override int SaveChanges()
 | |
|         {
 | |
|             this.OnSaveChanges();
 | |
| 
 | |
|             return base.SaveChanges();
 | |
|         }
 | |
| 
 | |
|         public override int SaveChanges(bool acceptAllChangesOnSuccess)
 | |
|         {
 | |
|             this.OnSaveChanges();
 | |
| 
 | |
|             return base.SaveChanges(acceptAllChangesOnSuccess);
 | |
|         }
 | |
| 
 | |
|         public override Task<int> SaveChangesAsync(bool acceptAllChangesOnSuccess, CancellationToken cancellationToken = default(CancellationToken))
 | |
|         {
 | |
|             this.OnSaveChanges();
 | |
| 
 | |
|             return base.SaveChangesAsync(acceptAllChangesOnSuccess, cancellationToken);
 | |
|         }
 | |
| 
 | |
|         public override Task<int> SaveChangesAsync(CancellationToken cancellationToken = default(CancellationToken))
 | |
|         {
 | |
|             this.OnSaveChanges();
 | |
| 
 | |
|             return base.SaveChangesAsync(cancellationToken);
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
|     }
 | |
| }
 |