mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 20:24:27 -04:00
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using API.Data;
|
|
using API.Entities;
|
|
using Kavita.Common;
|
|
|
|
namespace API.Helpers.Builders;
|
|
|
|
public class AppUserBuilder : IEntityBuilder<AppUser>
|
|
{
|
|
private readonly AppUser _appUser;
|
|
public AppUser Build() => _appUser;
|
|
|
|
public AppUserBuilder(string username, string email, SiteTheme? theme = null)
|
|
{
|
|
_appUser = new AppUser()
|
|
{
|
|
UserName = username,
|
|
Email = email,
|
|
ApiKey = HashUtil.ApiKey(),
|
|
UserPreferences = new AppUserPreferences
|
|
{
|
|
Theme = theme ?? Seed.DefaultThemes.First()
|
|
},
|
|
ReadingLists = new List<ReadingList>(),
|
|
Bookmarks = new List<AppUserBookmark>(),
|
|
Libraries = new List<Library>(),
|
|
Ratings = new List<AppUserRating>(),
|
|
Progresses = new List<AppUserProgress>(),
|
|
Devices = new List<Device>(),
|
|
Id = 0,
|
|
DashboardStreams = new List<AppUserDashboardStream>()
|
|
};
|
|
foreach (var s in Seed.DefaultStreams)
|
|
{
|
|
_appUser.DashboardStreams.Add(s);
|
|
}
|
|
}
|
|
|
|
public AppUserBuilder WithLibrary(Library library)
|
|
{
|
|
_appUser.Libraries.Add(library);
|
|
return this;
|
|
}
|
|
|
|
public AppUserBuilder WithLocale(string locale)
|
|
{
|
|
_appUser.UserPreferences.Locale = locale;
|
|
return this;
|
|
}
|
|
|
|
}
|