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.
77 lines
3.1 KiB
77 lines
3.1 KiB
using Ardalis.ApiEndpoints;
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.eShopWeb.ApplicationCore.Entities;
|
|
using Microsoft.eShopWeb.ApplicationCore.Interfaces;
|
|
using Swashbuckle.AspNetCore.Annotations;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.eShopWeb.PublicApi.CatalogItemEndpoints
|
|
{
|
|
[Authorize(Roles = BlazorShared.Authorization.Constants.Roles.ADMINISTRATORS, AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
|
|
public class Update : BaseAsyncEndpoint
|
|
.WithRequest<UpdateCatalogItemRequest>
|
|
.WithResponse<UpdateCatalogItemResponse>
|
|
{
|
|
private readonly IAsyncRepository<CatalogItem> _itemRepository;
|
|
private readonly IUriComposer _uriComposer;
|
|
private readonly IFileSystem _webFileSystem;
|
|
|
|
public Update(IAsyncRepository<CatalogItem> itemRepository, IUriComposer uriComposer, IFileSystem webFileSystem)
|
|
{
|
|
_itemRepository = itemRepository;
|
|
_uriComposer = uriComposer;
|
|
_webFileSystem = webFileSystem;
|
|
|
|
}
|
|
|
|
[HttpPut("api/catalog-items")]
|
|
[SwaggerOperation(
|
|
Summary = "Updates a Catalog Item",
|
|
Description = "Updates a Catalog Item",
|
|
OperationId = "catalog-items.update",
|
|
Tags = new[] { "CatalogItemEndpoints" })
|
|
]
|
|
public override async Task<ActionResult<UpdateCatalogItemResponse>> HandleAsync(UpdateCatalogItemRequest request, CancellationToken cancellationToken)
|
|
{
|
|
var response = new UpdateCatalogItemResponse(request.CorrelationId());
|
|
|
|
var existingItem = await _itemRepository.GetByIdAsync(request.Id, cancellationToken);
|
|
|
|
existingItem.UpdateDetails(request.Name, request.Description, request.Price);
|
|
existingItem.UpdateBrand(request.CatalogBrandId);
|
|
existingItem.UpdateType(request.CatalogTypeId);
|
|
|
|
if (string.IsNullOrEmpty(request.PictureBase64) && string.IsNullOrEmpty(request.PictureUri))
|
|
{
|
|
existingItem.UpdatePictureUri(string.Empty);
|
|
}
|
|
else
|
|
{
|
|
var picName = $"{existingItem.Id}{Path.GetExtension(request.PictureName)}";
|
|
if (await _webFileSystem.SavePicture($"{picName}", request.PictureBase64, cancellationToken))
|
|
{
|
|
existingItem.UpdatePictureUri(picName);
|
|
}
|
|
}
|
|
|
|
await _itemRepository.UpdateAsync(existingItem, cancellationToken);
|
|
|
|
var dto = new CatalogItemDto
|
|
{
|
|
Id = existingItem.Id,
|
|
CatalogBrandId = existingItem.CatalogBrandId,
|
|
CatalogTypeId = existingItem.CatalogTypeId,
|
|
Description = existingItem.Description,
|
|
Name = existingItem.Name,
|
|
PictureUri = _uriComposer.ComposePicUri(existingItem.PictureUri),
|
|
Price = existingItem.Price
|
|
};
|
|
response.CatalogItem = dto;
|
|
return response;
|
|
}
|
|
}
|
|
}
|
|
|