source: ChapterX.Application/Comment/Commands/UpdateHandler.cs@ b373fea

main
Last change on this file since b373fea was b373fea, checked in by kikisrbinoska <srbinoskakristina07@…>, 12 days ago

Fixes for authentication and auhtorization\

  • Property mode set to 100644
File size: 1.2 KB
Line 
1using ChapterX.Domain.Repositories;
2using MediatR;
3using Microsoft.Extensions.Logging;
4
5namespace ChapterX.Application.Comment.Commands
6{
7 public class UpdateHandler : IRequestHandler<UpdateRequest, UpdateResponse>
8 {
9 private readonly ICommentRepository _commentRepository;
10 private readonly ILogger<UpdateHandler> _logger;
11
12 public UpdateHandler(ICommentRepository commentRepository, ILogger<UpdateHandler> logger)
13 {
14 _commentRepository = commentRepository;
15 _logger = logger;
16 }
17
18 public async Task<UpdateResponse> Handle(UpdateRequest request, CancellationToken cancellationToken)
19 {
20 var comment = await _commentRepository.GetByIdAsync(request.Id, cancellationToken);
21 if (comment is null)
22 return new UpdateResponse(false);
23
24 if (comment.UserId != request.CallerId)
25 throw new UnauthorizedAccessException("You do not own this comment.");
26
27 comment.Content = request.Content;
28 comment.UpdatedAt = DateTime.UtcNow;
29
30 await _commentRepository.UpdateAsync(comment, cancellationToken);
31
32 return new UpdateResponse(true);
33 }
34 }
35}
Note: See TracBrowser for help on using the repository browser.