fixed errors and finish endpoints

This commit is contained in:
2026-03-09 23:24:01 +01:00
parent 679c552a3f
commit 756382a496
8 changed files with 124 additions and 12 deletions

View File

@@ -27,6 +27,12 @@ public class DeleteAuthorEndpoint(AuthorRepository authorRepository) : Endpoint<
await Send.NotFoundAsync(ct);
return;
}
if (author.Books?.Count > 0)
{
await Send.StringAsync("L'auteur possède encore des livres",409, cancellation: ct);
return;
}
await authorRepository.DeleteAsync(author, ct);
await Send.OkAsync(cancellation: ct);

View File

@@ -1,11 +1,12 @@
using BookHive.DTO.Book;
using BookHive.Models;
using BookHive.Repositories;
using BookHive.Specifications.Authors;
using FastEndpoints;
namespace BookHive.Endpoints.Books;
public class CreateBookEndpoint(BookRepository bookRepository, AutoMapper.IMapper mapper) : Endpoint<CreateBookDto>
public class CreateBookEndpoint(BookRepository bookRepository, AuthorRepository authorRepository, AutoMapper.IMapper mapper) : Endpoint<CreateBookDto>
{
public override void Configure()
{
@@ -15,6 +16,13 @@ public class CreateBookEndpoint(BookRepository bookRepository, AutoMapper.IMappe
public override async Task HandleAsync(CreateBookDto req, CancellationToken ct)
{
Author? author = await authorRepository.SingleOrDefaultAsync(new GetAuthorByIdSpec(req.AuthorId), ct);
if (author is null)
{
await Send.NotFoundAsync(ct);
return;
}
await bookRepository.AddAsync(mapper.Map<Book>(req), ct);
await Send.OkAsync(cancellation: ct);
}

View File

@@ -1,6 +1,7 @@
using BookHive.Models;
using BookHive.Repositories;
using BookHive.Specifications.Books;
using BookHive.Specifications.Loans;
using FastEndpoints;
namespace BookHive.Endpoints.Books;
@@ -10,14 +11,14 @@ public class DeleteBookRequest
public int Id { get; set; }
}
public class DeleteBookEndpoint(BookRepository bookRepository) : Endpoint<DeleteBookRequest>
public class DeleteBookEndpoint(BookRepository bookRepository, LoanRepository loanRepository) : Endpoint<DeleteBookRequest>
{
public override void Configure()
{
Delete("/books/{@Id}", x => new { x.Id });
AllowAnonymous();
}
public override async Task HandleAsync(DeleteBookRequest req, CancellationToken ct)
{
Book? book = await bookRepository.SingleOrDefaultAsync(new GetBookByIdSpec(req.Id), ct);
@@ -27,7 +28,14 @@ public class DeleteBookEndpoint(BookRepository bookRepository) : Endpoint<Delete
await Send.NotFoundAsync(ct);
return;
}
Loan? loan = await loanRepository.FirstOrDefaultAsync(new GetAvailableBookByIdSpec(req.Id), ct);
if (loan is not null)
{
await Send.StringAsync("Le livre est encore emprunté", 409, cancellation: ct);
return;
}
await bookRepository.DeleteAsync(book, ct);
await Send.OkAsync(cancellation: ct);
}

View File

@@ -1,11 +1,14 @@
using BookHive.DTO.Loan;
using BookHive.Models;
using BookHive.Repositories;
using BookHive.Specifications.Books;
using BookHive.Specifications.Loans;
using BookHive.Specifications.Members;
using FastEndpoints;
namespace BookHive.Endpoints.Loans;
public class CreateLoanEndpoint(LoanRepository loanRepository, AutoMapper.IMapper mapper) : Endpoint<CreateLoanDto>
public class CreateLoanEndpoint(LoanRepository loanRepository, BookRepository bookRepository, MemberRepository memberRepository, AutoMapper.IMapper mapper) : Endpoint<CreateLoanDto>
{
public override void Configure()
{
@@ -15,6 +18,39 @@ public class CreateLoanEndpoint(LoanRepository loanRepository, AutoMapper.IMappe
public override async Task HandleAsync(CreateLoanDto req, CancellationToken ct)
{
Book? book = await bookRepository.SingleOrDefaultAsync(new GetBookByIdSpec(req.BookId), ct);
if (book is null)
{
await Send.NotFoundAsync(ct);
return;
}
Member? member = await memberRepository.SingleOrDefaultAsync(new GetMemberByIdSpec(req.MemberId), ct);
if (member is null)
{
await Send.NotFoundAsync(ct);
return;
}
if (!member.IsActive)
{
await Send.StringAsync("Le membre est désactivé", 400, cancellation: ct);
return;
}
Loan? loan = await loanRepository.FirstOrDefaultAsync(new GetAvailableBookByIdSpec(req.BookId), ct);
if (loan is not null)
{
await Send.StringAsync("Ce livre est déjà emprunté", 400, cancellation: ct);
return;
}
if (req.DueDate < req.LoanDate || req.DueDate.DayNumber - req.LoanDate.DayNumber < 1 || req.DueDate.DayNumber - req.LoanDate.DayNumber > 30)
{
await Send.StringAsync("La date de retour estimée est incorrecte", 400, cancellation: ct);
return;
}
await loanRepository.AddAsync(mapper.Map<Loan>(req), ct);
await Send.OkAsync(cancellation: ct);
}

View File

@@ -3,6 +3,7 @@ using BookHive.Models;
using BookHive.Repositories;
using BookHive.Specifications.Books;
using BookHive.Specifications.Members;
using BookHive.Specifications.Reviews;
using FastEndpoints;
namespace BookHive.Endpoints.Reviews;
@@ -36,6 +37,19 @@ public class CreateReviewEndpoint(
return;
}
if (!member.IsActive)
{
await Send.StringAsync("Le membre est désactivé", 400, cancellation: ct);
return;
}
Review? review = await reviewRepository.SingleOrDefaultAsync(new GetReviewByCriteriaSpec(req.BookId, req.MemberId), ct);
if (review is not null)
{
await Send.StringAsync("Le membre a déjà posté un commentaire", 400, cancellation: ct);
return;
}
await reviewRepository.AddAsync(mapper.Map<Review>(req), ct);
await Send.OkAsync(cancellation: ct);
}

View File

@@ -0,0 +1,13 @@
using Ardalis.Specification;
using BookHive.Models;
namespace BookHive.Specifications.Loans;
public class GetAvailableBookByIdSpec : Specification<Loan>
{
public GetAvailableBookByIdSpec(int bookId)
{
Query
.Where(x => x.BookId == bookId && x.ReturnDate == null);
}
}

View File

@@ -0,0 +1,13 @@
using Ardalis.Specification;
using BookHive.Models;
namespace BookHive.Specifications.Reviews;
public class GetReviewByCriteriaSpec : SingleResultSpecification<Review>
{
public GetReviewByCriteriaSpec(int bookId, int memberId)
{
Query
.Where(x => x.BookId == bookId && x.MemberId == memberId);
}
}