using NetinaShop.Domain.Entities.Brands; namespace NetinaShop.Api.Controller; public class BrandController : ICarterModule { public virtual void AddRoutes(IEndpointRouteBuilder app) { var group = app.NewVersionedApi("Brand") .MapGroup($"api/brand"); group.MapGet("", GetAllAsync) .WithDisplayName("GetAllBrands") .HasApiVersion(1.0); group.MapGet("{id}", GetAsync) .WithDisplayName("GetBlogBrand") .HasApiVersion(1.0); group.MapPost("", Post) .HasApiVersion(1.0) .RequireAuthorization(builder => builder.AddAuthenticationSchemes("Bearer").RequireAuthenticatedUser().RequireClaim(CustomClaimType.Permission, ApplicationPermission.ManageBrands)); group.MapPut("", Put) .HasApiVersion(1.0) .RequireAuthorization(builder => builder.AddAuthenticationSchemes("Bearer").RequireAuthenticatedUser().RequireClaim(CustomClaimType.Permission, ApplicationPermission.ManageBrands)); group.MapDelete("{id}", Delete) .HasApiVersion(1.0) .RequireAuthorization(builder => builder.AddAuthenticationSchemes("Bearer").RequireAuthenticatedUser().RequireClaim(CustomClaimType.Permission, ApplicationPermission.ManageBrands)); } // GET:Get All Entity public async Task GetAllAsync([FromQuery] int? page, [FromQuery]string? brandName, [FromQuery]Guid? categoryId, IMediator mediator, CancellationToken cancellationToken) { return TypedResults.Ok(await mediator.Send(new GetBrandsQuery(Page: page, BrandName: brandName, CategoryId : categoryId ?? default),cancellationToken)); } // GET:Get An Entity By Id public async Task GetAsync(Guid id, IRepositoryWrapper repositoryWrapper, CancellationToken cancellationToken) => TypedResults.Ok(await repositoryWrapper.SetRepository() .TableNoTracking.Where(b => b.Id == id) .Select(BrandMapper.ProjectToLDto) .FirstOrDefaultAsync(cancellationToken)); // POST:Create Entity public async Task Post([FromBody] CreateBrandCommand request, IMediator mediator, CancellationToken cancellationToken) => TypedResults.Ok(await mediator.Send(request, cancellationToken)); // PUT:Update Entity public async Task Put([FromBody] UpdateBrandCommand request, IMediator mediator, CancellationToken cancellationToken) => TypedResults.Ok(await mediator.Send(request, cancellationToken)); // DELETE:Delete Entity public async Task Delete(Guid id, IMediator mediator, CancellationToken cancellationToken) => TypedResults.Ok(await mediator.Send(new DeleteBrandCommand(id), cancellationToken)); }