mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
70 lines
2.1 KiB
C#
70 lines
2.1 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using API.Data;
|
|
using API.DTOs;
|
|
using API.Entities;
|
|
using API.Extensions;
|
|
using API.Interfaces;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace API.Controllers
|
|
{
|
|
public class UsersController : BaseApiController
|
|
{
|
|
private readonly DataContext _context;
|
|
private readonly IUserRepository _userRepository;
|
|
private readonly ILibraryRepository _libraryRepository;
|
|
|
|
public UsersController(DataContext context, IUserRepository userRepository, ILibraryRepository libraryRepository)
|
|
{
|
|
_context = context;
|
|
_userRepository = userRepository;
|
|
_libraryRepository = libraryRepository;
|
|
}
|
|
|
|
[HttpGet]
|
|
public async Task<ActionResult<IEnumerable<MemberDto>>> GetUsers()
|
|
{
|
|
return Ok(await _userRepository.GetMembersAsync());
|
|
}
|
|
|
|
[HttpPost("add-library")]
|
|
public async Task<ActionResult> AddLibrary(CreateLibraryDto createLibraryDto)
|
|
{
|
|
//_logger.Log(LogLevel.Debug, "Creating a new " + createLibraryDto.Type + " library");
|
|
var user = await _userRepository.GetUserByUsernameAsync(User.GetUsername());
|
|
|
|
|
|
if (await _libraryRepository.LibraryExists(createLibraryDto.Name))
|
|
{
|
|
return BadRequest("Library name already exists. Please choose a unique name to the server.");
|
|
}
|
|
|
|
// TODO: We probably need to clean the folders before we insert
|
|
var library = new Library()
|
|
{
|
|
Name = createLibraryDto.Name,
|
|
Type = createLibraryDto.Type,
|
|
//Folders = createLibraryDto.Folders
|
|
};
|
|
|
|
|
|
user.Libraries.Add(library);
|
|
_userRepository.Update(user);
|
|
|
|
if (await _userRepository.SaveAllAsync())
|
|
{
|
|
return Ok();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return BadRequest("Not implemented");
|
|
}
|
|
}
|
|
} |