mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
* Added an id for komf userscript to help it inject into Kavita's UI without relying on strings, given localization. * Still working the filter fields, there is a bug with selecting an input and it setting undefined like crazy. Path is coded but not tested or validated. * Stashing changed. Really not sure what's happening. I'm seeing 2 constructor calls for one row. I'm seeing a field change trigger 400 events. Values aren't getting set correctly on default string. I've made a ton of changes, when resuming this work, look at the diff. All of this can be reset excluding the Path work. * Lots of comments but the double instantiation is due to the mobile drawer. Added an ngIf which seems to work. * Fixed dropdown options triggering a ton of looped calls. Default limitTo to 0 when user empties blank or negative. * Removed a ton of UserId db calls from a ton of apis. Added a new API to allow UI to query a specific role to lessen load on UI. * Optimized the code on new filtering to only load people by a given role. This should speed up heavily tagged libraries. Commented out a bunch of code that's no longer used. Will be cleaned up later. * Fixed support so that library filter can handle multiple selections. * Fixed a bug when hitting enter in an input, the statement would be removed. * Fixed multi-select not resuming from url correctly. * Restored the series/all api for Tachiyomi to continue using until I'm motivated enough to update the extension. * Fixed some resuming of state with dropdowns, not always setting values in correct order. * Added FilePath Filter which lets a user search on individual files (slow, may need index) * Added a full filepath for new filtering.
155 lines
7.0 KiB
C#
155 lines
7.0 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using API.Data;
|
|
using API.Data.Repositories;
|
|
using API.DTOs;
|
|
using API.Extensions;
|
|
using API.Services;
|
|
using API.SignalR;
|
|
using AutoMapper;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace API.Controllers;
|
|
|
|
[Authorize]
|
|
public class UsersController : BaseApiController
|
|
{
|
|
private readonly IUnitOfWork _unitOfWork;
|
|
private readonly IMapper _mapper;
|
|
private readonly IEventHub _eventHub;
|
|
private readonly ILocalizationService _localizationService;
|
|
|
|
public UsersController(IUnitOfWork unitOfWork, IMapper mapper, IEventHub eventHub,
|
|
ILocalizationService localizationService)
|
|
{
|
|
_unitOfWork = unitOfWork;
|
|
_mapper = mapper;
|
|
_eventHub = eventHub;
|
|
_localizationService = localizationService;
|
|
}
|
|
|
|
[Authorize(Policy = "RequireAdminRole")]
|
|
[HttpDelete("delete-user")]
|
|
public async Task<ActionResult> DeleteUser(string username)
|
|
{
|
|
var user = await _unitOfWork.UserRepository.GetUserByUsernameAsync(username);
|
|
_unitOfWork.UserRepository.Delete(user);
|
|
|
|
//(TODO: After updating a role or removing a user, delete their token)
|
|
// await _userManager.RemoveAuthenticationTokenAsync(user, TokenOptions.DefaultProvider, RefreshTokenName);
|
|
|
|
if (await _unitOfWork.CommitAsync()) return Ok();
|
|
|
|
return BadRequest(await _localizationService.Translate(User.GetUserId(), "generic-user-delete"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns all users of this server
|
|
/// </summary>
|
|
/// <param name="includePending">This will include pending members</param>
|
|
/// <returns></returns>
|
|
[Authorize(Policy = "RequireAdminRole")]
|
|
[HttpGet]
|
|
public async Task<ActionResult<IEnumerable<MemberDto>>> GetUsers(bool includePending = false)
|
|
{
|
|
return Ok(await _unitOfWork.UserRepository.GetEmailConfirmedMemberDtosAsync(!includePending));
|
|
}
|
|
|
|
[HttpGet("myself")]
|
|
public async Task<ActionResult<IEnumerable<MemberDto>>> GetMyself()
|
|
{
|
|
var users = await _unitOfWork.UserRepository.GetAllUsersAsync();
|
|
return Ok(users.Where(u => u.UserName == User.GetUsername()).DefaultIfEmpty().Select(u => _mapper.Map<MemberDto>(u)).SingleOrDefault());
|
|
}
|
|
|
|
|
|
[HttpGet("has-reading-progress")]
|
|
public async Task<ActionResult<bool>> HasReadingProgress(int libraryId)
|
|
{
|
|
var library = await _unitOfWork.LibraryRepository.GetLibraryForIdAsync(libraryId);
|
|
if (library == null) return BadRequest(await _localizationService.Translate(User.GetUserId(), "library-doesnt-exist"));
|
|
return Ok(await _unitOfWork.AppUserProgressRepository.UserHasProgress(library.Type, User.GetUserId()));
|
|
}
|
|
|
|
[HttpGet("has-library-access")]
|
|
public ActionResult<bool> HasLibraryAccess(int libraryId)
|
|
{
|
|
var libs = _unitOfWork.LibraryRepository.GetLibraryDtosForUsernameAsync(User.GetUsername());
|
|
return Ok(libs.Any(x => x.Id == libraryId));
|
|
}
|
|
|
|
[HttpPost("update-preferences")]
|
|
public async Task<ActionResult<UserPreferencesDto>> UpdatePreferences(UserPreferencesDto preferencesDto)
|
|
{
|
|
var user = await _unitOfWork.UserRepository.GetUserByUsernameAsync(User.GetUsername(),
|
|
AppUserIncludes.UserPreferences);
|
|
if (user == null) return Unauthorized();
|
|
var existingPreferences = user!.UserPreferences;
|
|
|
|
existingPreferences.ReadingDirection = preferencesDto.ReadingDirection;
|
|
existingPreferences.ScalingOption = preferencesDto.ScalingOption;
|
|
existingPreferences.PageSplitOption = preferencesDto.PageSplitOption;
|
|
existingPreferences.AutoCloseMenu = preferencesDto.AutoCloseMenu;
|
|
existingPreferences.ShowScreenHints = preferencesDto.ShowScreenHints;
|
|
existingPreferences.EmulateBook = preferencesDto.EmulateBook;
|
|
existingPreferences.ReaderMode = preferencesDto.ReaderMode;
|
|
existingPreferences.LayoutMode = preferencesDto.LayoutMode;
|
|
existingPreferences.BackgroundColor = string.IsNullOrEmpty(preferencesDto.BackgroundColor) ? "#000000" : preferencesDto.BackgroundColor;
|
|
existingPreferences.BookReaderMargin = preferencesDto.BookReaderMargin;
|
|
existingPreferences.BookReaderLineSpacing = preferencesDto.BookReaderLineSpacing;
|
|
existingPreferences.BookReaderFontFamily = preferencesDto.BookReaderFontFamily;
|
|
existingPreferences.BookReaderFontSize = preferencesDto.BookReaderFontSize;
|
|
existingPreferences.BookReaderTapToPaginate = preferencesDto.BookReaderTapToPaginate;
|
|
existingPreferences.BookReaderReadingDirection = preferencesDto.BookReaderReadingDirection;
|
|
existingPreferences.BookReaderWritingStyle = preferencesDto.BookReaderWritingStyle;
|
|
existingPreferences.BookThemeName = preferencesDto.BookReaderThemeName;
|
|
existingPreferences.BookReaderLayoutMode = preferencesDto.BookReaderLayoutMode;
|
|
existingPreferences.BookReaderImmersiveMode = preferencesDto.BookReaderImmersiveMode;
|
|
existingPreferences.GlobalPageLayoutMode = preferencesDto.GlobalPageLayoutMode;
|
|
existingPreferences.BlurUnreadSummaries = preferencesDto.BlurUnreadSummaries;
|
|
existingPreferences.LayoutMode = preferencesDto.LayoutMode;
|
|
existingPreferences.Theme = preferencesDto.Theme ?? await _unitOfWork.SiteThemeRepository.GetDefaultTheme();
|
|
existingPreferences.PromptForDownloadSize = preferencesDto.PromptForDownloadSize;
|
|
existingPreferences.NoTransitions = preferencesDto.NoTransitions;
|
|
existingPreferences.SwipeToPaginate = preferencesDto.SwipeToPaginate;
|
|
existingPreferences.CollapseSeriesRelationships = preferencesDto.CollapseSeriesRelationships;
|
|
existingPreferences.ShareReviews = preferencesDto.ShareReviews;
|
|
if (_localizationService.GetLocales().Contains(preferencesDto.Locale))
|
|
{
|
|
existingPreferences.Locale = preferencesDto.Locale;
|
|
}
|
|
|
|
_unitOfWork.UserRepository.Update(existingPreferences);
|
|
|
|
if (!await _unitOfWork.CommitAsync()) return BadRequest(await _localizationService.Translate(User.GetUserId(), "generic-user-pref"));
|
|
|
|
await _eventHub.SendMessageToAsync(MessageFactory.UserUpdate, MessageFactory.UserUpdateEvent(user.Id, user.UserName!), user.Id);
|
|
return Ok(preferencesDto);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the preferences of the user
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet("get-preferences")]
|
|
public async Task<ActionResult<UserPreferencesDto>> GetPreferences()
|
|
{
|
|
return _mapper.Map<UserPreferencesDto>(
|
|
await _unitOfWork.UserRepository.GetPreferencesAsync(User.GetUsername()));
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a list of the user names within the system
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[Authorize(Policy = "RequireAdminRole")]
|
|
[HttpGet("names")]
|
|
public async Task<ActionResult<IEnumerable<string>>> GetUserNames()
|
|
{
|
|
return Ok((await _unitOfWork.UserRepository.GetAllUsersAsync()).Select(u => u.UserName));
|
|
}
|
|
}
|