mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-02 13:14:28 -04:00
* Fixed a bug where when clicking on a series rating for first time, the rating wasn't populating in the modal. * Fixed a bug on Scroll mode with immersive mode, the bottom bar could clip with the book body. * Cleanup some uses of var * Refactored text as json into a type so I don't have to copy/paste everywhere * Theme styles now override the defaults and theme owners no longer need to maintain all the variables themselves. Themes can now override the color of the header on mobile devices via --theme-color and Kavita will now update both theme color as well as color scheme. * Fixed a bug where last active on user stats wasn't for the particular user. * Added a more accurate word count calculation and the ability to see the word counts year over year. * Added a new table for long term statistics, like number of files over the years. No views are present for this data, I will add them later.
169 lines
5.5 KiB
C#
169 lines
5.5 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using API.Entities;
|
|
using API.Entities.Enums.UserPreferences;
|
|
using API.Entities.Interfaces;
|
|
using API.Entities.Metadata;
|
|
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; }
|
|
public DbSet<ReadingList> ReadingList { get; set; }
|
|
public DbSet<ReadingListItem> ReadingListItem { get; set; }
|
|
public DbSet<Person> Person { get; set; }
|
|
public DbSet<Genre> Genre { get; set; }
|
|
public DbSet<Tag> Tag { get; set; }
|
|
public DbSet<SiteTheme> SiteTheme { get; set; }
|
|
public DbSet<SeriesRelation> SeriesRelation { get; set; }
|
|
public DbSet<FolderPath> FolderPath { get; set; }
|
|
public DbSet<Device> Device { get; set; }
|
|
public DbSet<ServerStatistics> ServerStatistics { 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();
|
|
|
|
builder.Entity<SeriesRelation>()
|
|
.HasOne(pt => pt.Series)
|
|
.WithMany(p => p.Relations)
|
|
.HasForeignKey(pt => pt.SeriesId)
|
|
.OnDelete(DeleteBehavior.Cascade);
|
|
|
|
|
|
builder.Entity<SeriesRelation>()
|
|
.HasOne(pt => pt.TargetSeries)
|
|
.WithMany(t => t.RelationOf)
|
|
.HasForeignKey(pt => pt.TargetSeriesId)
|
|
.OnDelete(DeleteBehavior.Cascade);
|
|
|
|
|
|
|
|
builder.Entity<AppUserPreferences>()
|
|
.Property(b => b.BookThemeName)
|
|
.HasDefaultValue("Dark");
|
|
builder.Entity<AppUserPreferences>()
|
|
.Property(b => b.BackgroundColor)
|
|
.HasDefaultValue("#000000");
|
|
|
|
builder.Entity<AppUserPreferences>()
|
|
.Property(b => b.GlobalPageLayoutMode)
|
|
.HasDefaultValue(PageLayoutMode.Cards);
|
|
|
|
|
|
builder.Entity<Library>()
|
|
.Property(b => b.FolderWatching)
|
|
.HasDefaultValue(true);
|
|
builder.Entity<Library>()
|
|
.Property(b => b.IncludeInDashboard)
|
|
.HasDefaultValue(true);
|
|
builder.Entity<Library>()
|
|
.Property(b => b.IncludeInRecommended)
|
|
.HasDefaultValue(true);
|
|
builder.Entity<Library>()
|
|
.Property(b => b.IncludeInSearch)
|
|
.HasDefaultValue(true);
|
|
}
|
|
|
|
|
|
private static 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;
|
|
}
|
|
|
|
}
|
|
|
|
private static 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
|
|
}
|