| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System.Security.Claims;
- using Domain.Entities.Forum.ValueObject;
- using MediatR;
- using Web.Api.Common;
- using Web.Api.Extensions;
- namespace Web.Api.Endpoints.Forum.Post;
- internal sealed class Report : IEndpoint
- {
- public sealed record Request(
- ReportType Type,
- string? Reason
- );
- public void MapEndpoint(IEndpointRouteBuilder app)
- {
- app.MapPost("api/forum/posts/{id}/report", async (
- int id,
- ClaimsPrincipal user,
- Request request,
- ISender sender,
- CancellationToken ct
- ) => {
- var memberID = user.GetMemberID();
- if (memberID is null)
- {
- return ApiResponse.Fail(StatusCodes.Status401Unauthorized, "Invalid token");
- }
- var command = new Application.Features.Api.Forum.PostReport.Create.Command(
- memberID.Value,
- id,
- request.Type,
- request.Reason
- );
- var result = await sender.Send(command, ct);
- return result.Match(
- () => ApiResponse.Ok(),
- CustomResults.Problem
- );
- })
- .WithTags("Forum")
- .RequireAuthorization();
- }
- }
|