You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.2 KiB
55 lines
2.2 KiB
using Ardalis.ApiEndpoints;
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.eShopWeb.ApplicationCore.Constants;
|
|
using Microsoft.eShopWeb.ApplicationCore.Entities;
|
|
using Microsoft.eShopWeb.ApplicationCore.Interfaces;
|
|
using Swashbuckle.AspNetCore.Annotations;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.eShopWeb.PublicApi.CatalogItemEndpoints
|
|
{
|
|
|
|
[Authorize(Roles = AuthorizationConstants.Roles.ADMINISTRATORS, AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
|
|
public class Create : BaseAsyncEndpoint<CreateCatalogItemRequest, CreateCatalogItemResponse>
|
|
{
|
|
private readonly IAsyncRepository<CatalogItem> _itemRepository;
|
|
private readonly IUriComposer _uriComposer;
|
|
|
|
public Create(IAsyncRepository<CatalogItem> itemRepository, IUriComposer uriComposer)
|
|
{
|
|
_itemRepository = itemRepository;
|
|
_uriComposer = uriComposer;
|
|
}
|
|
|
|
[HttpPost("api/catalog-items")]
|
|
[SwaggerOperation(
|
|
Summary = "Creates a new Catalog Item",
|
|
Description = "Creates a new Catalog Item",
|
|
OperationId = "catalog-items.create",
|
|
Tags = new[] { "CatalogItemEndpoints" })
|
|
]
|
|
public override async Task<ActionResult<CreateCatalogItemResponse>> HandleAsync(CreateCatalogItemRequest request)
|
|
{
|
|
var response = new CreateCatalogItemResponse(request.CorrelationId());
|
|
|
|
CatalogItem newItem = new CatalogItem(request.CatalogTypeId, request.CatalogBrandId, request.Description, request.Name, request.Price, request.PictureUri);
|
|
|
|
newItem = await _itemRepository.AddAsync(newItem);
|
|
|
|
var dto = new CatalogItemDto
|
|
{
|
|
Id = newItem.Id,
|
|
CatalogBrandId = newItem.CatalogBrandId,
|
|
CatalogTypeId = newItem.CatalogTypeId,
|
|
Description = newItem.Description,
|
|
Name = newItem.Name,
|
|
PictureUri = _uriComposer.ComposePicUri(newItem.PictureUri),
|
|
Price = newItem.Price
|
|
};
|
|
response.CatalogItem = dto;
|
|
return response;
|
|
}
|
|
}
|
|
}
|
|
|