Newer
Older
CRUDTask / Catalog / Products / AvailableForSale.cs
@Derek Comartin Derek Comartin on 29 Dec 2021 1 KB Init
using System.Threading.Tasks;
using Catalog;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Swashbuckle.AspNetCore.Annotations;

namespace Sales.Products
{
    public class AvailableForSaleController : ControllerBase
    {
        private readonly CatalogDbContext _db;
        private readonly IUrlHelper _urlHelper;

        public AvailableForSaleController(CatalogDbContext db, IUrlHelper urlHelper)
        {
            _db = db;
            _urlHelper = urlHelper;
        }

        [SwaggerOperation(
            OperationId = "AvailableForSale",
            Tags = new[] { "Sales" })]
        [HttpPost("/sales/products/{sku}/availableForSale")]
        public async Task<IActionResult> AvailableForSale([FromRoute] string sku)
        {
            var product = await _db.Products.SingleOrDefaultAsync(x => x.Sku == sku);
            if (product == null)
            {
                return NotFound();
            }

            if (product.CanSetAvailable() == false)
            {
                return BadRequest(new ProblemDetails
                {
                    Detail = product.ValidationError()
                });
            }

            product.SetAvailable();
            await _db.SaveChangesAsync();

            return Created(_urlHelper.Action("GetSalesProduct", "GetSalesProduct", new { sku }), null);
        }
    }
}