using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using AutoMapper;
using AutoMapper.QueryableExtensions;
using Kavita.API.Repositories;
using Kavita.Common.Constants;
using Kavita.Database.Extensions;
using Kavita.Models.Constants;
using Kavita.Models.DTOs.Progress;
using Kavita.Models.Entities.Enums;
using Kavita.Models.Entities.Progress;
using Microsoft.EntityFrameworkCore;
namespace Kavita.Database.Repositories;
public class AppUserProgressRepository(DataContext context, IMapper mapper) : IAppUserProgressRepository
{
public void Update(AppUserProgress userProgress)
{
context.Entry(userProgress).State = EntityState.Modified;
}
public void Remove(AppUserProgress userProgress)
{
context.Remove(userProgress);
}
///
/// This will remove any entries that have chapterIds that no longer exists. This will execute the save as well.
///
///
public async Task CleanupAbandonedChapters(CancellationToken ct = default)
{
var chapterIds = context.Chapter.Select(c => c.Id);
var rowsToRemove = await context.AppUserProgresses
.Where(progress => !chapterIds.Contains(progress.ChapterId))
.ToListAsync(ct);
var rowsToRemoveBookmarks = await context.AppUserBookmark
.Where(progress => !chapterIds.Contains(progress.ChapterId))
.ToListAsync(ct);
var rowsToRemoveReadingLists = await context.ReadingListItem
.Where(item => !chapterIds.Contains(item.ChapterId))
.ToListAsync(ct);
context.RemoveRange(rowsToRemove);
context.RemoveRange(rowsToRemoveBookmarks);
context.RemoveRange(rowsToRemoveReadingLists);
return await context.SaveChangesAsync(ct) > 0 ? rowsToRemove.Count : 0;
}
///
/// Checks if a user has any progress against a library of a passed type
///
///
///
///
///
public async Task UserHasProgress(LibraryType libraryType, int userId, CancellationToken ct = default)
{
var seriesIds = await context.AppUserProgresses
.Where(aup => aup.PagesRead > 0 && aup.AppUserId == userId)
.AsNoTracking()
.Select(aup => aup.SeriesId)
.ToListAsync(ct);
if (seriesIds.Count == 0) return false;
return await context.Series
.Include(s => s.Library)
.Where(s => seriesIds.Contains(s.Id) && s.Library.Type == libraryType)
.AsNoTracking()
.AnyAsync(ct);
}
public async Task HasAnyProgressOnSeriesAsync(int seriesId, int userId, CancellationToken ct = default)
{
return await context.AppUserProgresses
.AnyAsync(aup => aup.PagesRead > 0 && aup.AppUserId == userId && aup.SeriesId == seriesId, ct);
}
///
/// This will return any user progress. This filters out progress rows that have no pages read.
///
///
///
///
///
public async Task> GetUserProgressForSeriesAsync(int seriesId, int userId,
CancellationToken ct = default)
{
return await context.AppUserProgresses
.Where(p => p.SeriesId == seriesId && p.AppUserId == userId && p.PagesRead > 0)
.ToListAsync(ct);
}
public async Task> GetAllProgress(CancellationToken ct = default)
{
return await context.AppUserProgresses.ToListAsync(ct);
}
///
/// Returns the latest progress in UTC
///
///
///
public async Task GetLatestProgress(CancellationToken ct = default)
{
return await context.AppUserProgresses
.Select(d => d.LastModifiedUtc)
.OrderByDescending(d => d)
.FirstOrDefaultAsync(ct);
}
public async Task GetUserProgressDtoAsync(int chapterId, int userId, CancellationToken ct = default)
{
return await context.AppUserProgresses
.Where(p => p.AppUserId == userId && p.ChapterId == chapterId)
.ProjectTo(mapper.ConfigurationProvider)
.FirstOrDefaultAsync(ct);
}
public async Task AnyUserProgressForSeriesAsync(int seriesId, int userId, CancellationToken ct = default)
{
return await context.AppUserProgresses
.Where(p => p.SeriesId == seriesId && p.AppUserId == userId && p.PagesRead > 0)
.AnyAsync(ct);
}
public async Task GetHighestFullyReadChapterForSeries(int seriesId, int userId, CancellationToken ct = default)
{
var list = await context.AppUserProgresses
.Join(context.Chapter, appUserProgresses => appUserProgresses.ChapterId, chapter => chapter.Id,
(appUserProgresses, chapter) => new {appUserProgresses, chapter})
.Where(p => p.appUserProgresses.SeriesId == seriesId && p.appUserProgresses.AppUserId == userId &&
p.appUserProgresses.PagesRead >= p.chapter.Pages)
.Where(p => p.chapter.MaxNumber != ParserConstants.SpecialVolumeNumber)
.Select(p => p.chapter.MaxNumber)
.ToListAsync(ct);
return list.Count == 0 ? 0 : (int) list.DefaultIfEmpty().Max(d => d);
}
public async Task GetHighestFullyReadVolumeForSeries(int seriesId, int userId, CancellationToken ct = default)
{
var list = await context.AppUserProgresses
.Join(context.Chapter, appUserProgresses => appUserProgresses.ChapterId, chapter => chapter.Id,
(appUserProgresses, chapter) => new {appUserProgresses, chapter})
.Where(p => p.appUserProgresses.SeriesId == seriesId && p.appUserProgresses.AppUserId == userId &&
p.appUserProgresses.PagesRead >= p.chapter.Pages)
.Where(p => p.chapter.MaxNumber != ParserConstants.SpecialVolumeNumber)
.Select(p => p.chapter.Volume.MaxNumber)
.ToListAsync(ct);
return list.Count == 0 ? 0 : list.DefaultIfEmpty().Max();
}
public async Task GetLatestProgressForSeries(int seriesId, int userId, CancellationToken ct = default)
{
var list = await context.AppUserProgresses.Where(p => p.AppUserId == userId && p.SeriesId == seriesId)
.Select(p => p.LastModifiedUtc)
.ToListAsync(ct);
return list.Count == 0 ? null : list.DefaultIfEmpty().Max();
}
public async Task GetLatestProgressForVolume(int volumeId, int userId, CancellationToken ct = default)
{
var list = await context.AppUserProgresses.Where(p => p.AppUserId == userId && p.VolumeId == volumeId)
.Select(p => p.LastModifiedUtc)
.ToListAsync(ct);
return list.Count == 0 ? null : list.DefaultIfEmpty().Max();
}
public async Task GetLatestProgressForChapter(int chapterId, int userId, CancellationToken ct = default)
{
return await context.AppUserProgresses
.Where(p => p.AppUserId == userId && p.ChapterId == chapterId)
.Select(p => p.LastModifiedUtc)
.FirstOrDefaultAsync(ct);
}
public async Task GetFirstProgressForSeries(int seriesId, int userId, CancellationToken ct = default)
{
var list = await context.AppUserProgresses.Where(p => p.AppUserId == userId && p.SeriesId == seriesId)
.Select(p => p.LastModifiedUtc)
.ToListAsync(ct);
return list.Count == 0 ? null : list.DefaultIfEmpty().Min();
}
public async Task GetFirstProgressForUser(int userId, CancellationToken ct = default)
{
return await context.AppUserProgresses
.Where(p => p.AppUserId == userId)
.OrderBy(p => p.CreatedUtc)
.Select(p => p.CreatedUtc)
.FirstOrDefaultAsync(ct);
}
public async Task UpdateAllProgressThatAreMoreThanChapterPages(CancellationToken ct = default)
{
var updates = context.AppUserProgresses
.Join(context.Chapter,
progress => progress.ChapterId,
chapter => chapter.Id,
(progress, chapter) => new
{
Progress = progress,
Chapter = chapter
})
.Where(joinResult => joinResult.Progress.PagesRead > joinResult.Chapter.Pages)
.Select(result => new
{
ProgressId = result.Progress.Id,
NewPagesRead = Math.Min(result.Progress.PagesRead, result.Chapter.Pages)
})
.AsEnumerable();
// Need to run this Raw because DataContext will update LastModified on the entity which breaks ordering for progress
var sqlBuilder = new StringBuilder();
foreach (var update in updates)
{
sqlBuilder.Append($"UPDATE AppUserProgresses SET PagesRead = {update.NewPagesRead} WHERE Id = {update.ProgressId};");
}
// Execute the batch SQL
var batchSql = sqlBuilder.ToString();
await context.Database.ExecuteSqlRawAsync(batchSql, ct);
}
///
///
///
///
/// If 0, will pull all records
///
///
public async Task> GetUserProgressForChapter(int chapterId, int userId = 0,
CancellationToken ct = default)
{
return await context.AppUserProgresses
.WhereIf(userId > 0, p => p.AppUserId == userId)
.Where(p => p.ChapterId == chapterId)
.Include(p => p.AppUser)
.Select(p => new FullProgressDto()
{
AppUserId = p.AppUserId,
ChapterId = p.ChapterId,
PagesRead = p.PagesRead,
Id = p.Id,
Created = p.Created,
CreatedUtc = p.CreatedUtc,
LastModified = p.LastModified,
LastModifiedUtc = p.LastModifiedUtc,
UserName = p.AppUser.UserName
})
.ToListAsync(ct);
}
public async Task GetUserProgressAsync(int chapterId, int userId, CancellationToken ct = default)
{
return await context.AppUserProgresses
.Where(p => p.ChapterId == chapterId && p.AppUserId == userId)
.FirstOrDefaultAsync(ct);
}
}