mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
73 lines
2.7 KiB
C#
73 lines
2.7 KiB
C#
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Kavita.Models.DTOs;
|
|
using Kavita.Models.Entities.User;
|
|
|
|
namespace Kavita.API.Repositories;
|
|
|
|
public interface IAppUserReadingProfileRepository
|
|
{
|
|
/// <summary>
|
|
/// Returns the reading profile to use for the given series
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="libraryId"></param>
|
|
/// <param name="seriesId"></param>
|
|
/// <param name="activeDeviceId"></param>
|
|
/// <param name="skipImplicit"></param>
|
|
/// <param name="ct"></param>
|
|
/// <returns></returns>
|
|
Task<AppUserReadingProfile> GetProfileForSeries(int userId, int libraryId, int seriesId, int? activeDeviceId = null, bool skipImplicit = false, CancellationToken ct = default);
|
|
|
|
/// <summary>
|
|
/// Get all profiles assigned to a library
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="libraryId"></param>
|
|
/// <param name="ct"></param>
|
|
/// <returns></returns>
|
|
Task<List<AppUserReadingProfile>> GetProfilesForLibrary(int userId, int libraryId, CancellationToken ct = default);
|
|
|
|
/// <summary>
|
|
/// Return the profile if it belongs to the user
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="profileId"></param>
|
|
/// <param name="ct"></param>
|
|
/// <returns></returns>
|
|
Task<AppUserReadingProfile?> GetUserProfile(int userId, int profileId, CancellationToken ct = default);
|
|
|
|
/// <summary>
|
|
/// Returns all reading profiles for the user
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="skipImplicit"></param>
|
|
/// <param name="ct"></param>
|
|
/// <returns></returns>
|
|
Task<IList<AppUserReadingProfile>> GetProfilesForUser(int userId, bool skipImplicit = false, CancellationToken ct = default);
|
|
|
|
/// <summary>
|
|
/// Returns all reading profiles for the user
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="skipImplicit"></param>
|
|
/// <param name="ct"></param>
|
|
/// <returns></returns>
|
|
Task<IList<UserReadingProfileDto>> GetProfilesDtoForUser(int userId, bool skipImplicit = false, CancellationToken ct = default);
|
|
|
|
/// <summary>
|
|
/// Is there a user reading profile with this name (normalized)?
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="name"></param>
|
|
/// <param name="ct"></param>
|
|
/// <returns></returns>
|
|
Task<bool> IsProfileNameInUse(int userId, string name, CancellationToken ct = default);
|
|
|
|
void Add(AppUserReadingProfile readingProfile);
|
|
void Update(AppUserReadingProfile readingProfile);
|
|
void Remove(AppUserReadingProfile readingProfile);
|
|
void RemoveRange(IEnumerable<AppUserReadingProfile> readingProfiles);
|
|
}
|