mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-09-21 03:46:06 -04:00
Records every successful audiobook download in the library database (a new DownloadHistory table) and, when the user opts in, stops downloading once the rolling 24 hour window is full. The history lives in the database rather than a file under LibationFiles because in Docker only the database is on a volume; a file there is discarded on every container restart. The limit is checked immediately before each book downloads, never at queueing time, so a full queue stays full and the user can raise or disable the limit mid-run. When nothing in the queue can proceed the queue pauses and re-checks every 15 seconds, recomputing settings, history and clock from scratch, so a queue left running for days drip-feeds itself as downloads age out. The CLI never waits: it skips covered titles and reports a count. Co-authored-by: rmcrackan <rmcrackan@gmail.com>
66 lines
2.8 KiB
C#
66 lines
2.8 KiB
C#
using DataLayer.Configurations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataLayer;
|
|
|
|
public class LibationContext : DbContext, INotifyDisposed
|
|
{
|
|
// IMPORTANT: USING DbSet<>
|
|
// ========================
|
|
// these run against the db. linq queries against these MUST be translatable to sql. primatives only. no POCOs or this error occurs:
|
|
// Unable to create a constant value of type 'DataLayer.Contributor'. Only primitive types or enumeration types are supported in this context.
|
|
// to use full object-linq, load and use Local. HOWEVER, Local is only hashed/indexed on PK. All other searches are very slow
|
|
// load full table:
|
|
// List<Contributor> contributors = ...;
|
|
// Contributors.Load();
|
|
// Contributors.Local.Where(a => contributors.Contains(a));
|
|
// load only those in object:
|
|
// // overwrite collection
|
|
// Entry(product).Collection(x => x.Narrators).Load();
|
|
// product.Narrators = narrators;
|
|
public DbSet<LibraryBook> LibraryBooks { get; private set; }
|
|
public DbSet<Book> Books { get; private set; }
|
|
public DbSet<Contributor> Contributors { get; private set; }
|
|
public DbSet<Series> Series { get; private set; }
|
|
public DbSet<Category> Categories { get; private set; }
|
|
public DbSet<CategoryLadder> CategoryLadders { get; private set; }
|
|
public DbSet<DownloadHistory> DownloadHistory { get; private set; }
|
|
|
|
public event EventHandler? ObjectDisposed;
|
|
public override void Dispose()
|
|
{
|
|
base.Dispose();
|
|
ObjectDisposed?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
public override async ValueTask DisposeAsync()
|
|
{
|
|
await base.DisposeAsync();
|
|
ObjectDisposed?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
|
|
// see DesignTimeDbContextFactoryBase for info about ctors and connection strings/OnConfiguring()
|
|
public LibationContext(DbContextOptions options) : base(options) { }
|
|
|
|
// typically only called once per execution; NOT once per instantiation
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
base.OnModelCreating(modelBuilder);
|
|
|
|
modelBuilder.ApplyConfiguration(new BookConfig());
|
|
modelBuilder.ApplyConfiguration(new ContributorConfig());
|
|
modelBuilder.ApplyConfiguration(new BookContributorConfig());
|
|
modelBuilder.ApplyConfiguration(new LibraryBookConfig());
|
|
modelBuilder.ApplyConfiguration(new SeriesConfig());
|
|
modelBuilder.ApplyConfiguration(new SeriesBookConfig());
|
|
modelBuilder.ApplyConfiguration(new CategoryConfig());
|
|
modelBuilder.ApplyConfiguration(new CategoryLadderConfig());
|
|
modelBuilder.ApplyConfiguration(new BookCategoryConfig());
|
|
modelBuilder.ApplyConfiguration(new DownloadHistoryConfig());
|
|
|
|
// views are now supported via "keyless entity types" (instead of "entity types" or the prev "query types"):
|
|
// https://docs.microsoft.com/en-us/ef/core/modeling/keyless-entity-types
|
|
}
|
|
}
|