93 lines
2.3 KiB
C#
93 lines
2.3 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
||
using PrecastConcretePlantContracts.BindingModels;
|
||
using PrecastConcretePlantContracts.BusinessLogicsContracts;
|
||
using PrecastConcretePlantContracts.SearchModels;
|
||
using PrecastConcretePlantContracts.ViewModels;
|
||
|
||
namespace PrecastConcretePlantRestApi.Controllers
|
||
{
|
||
[Route("api/[controller]/[action]")]
|
||
[ApiController]
|
||
public class ShopController : Controller
|
||
{
|
||
private readonly ILogger _logger;
|
||
|
||
private readonly IShopLogic _logic;
|
||
|
||
public ShopController(IShopLogic logic, ILogger<ShopController> logger)
|
||
{
|
||
_logger = logger;
|
||
_logic = logic;
|
||
}
|
||
|
||
[HttpGet]
|
||
public List<ShopViewModel>? GetShops()
|
||
{
|
||
try
|
||
{
|
||
return _logic.ReadList(null);
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка получения списка магазинов");
|
||
throw;
|
||
}
|
||
}
|
||
|
||
[HttpGet]
|
||
public Tuple<ShopViewModel, IEnumerable<ReinforcedViewModel>, IEnumerable<int>>? GetShopWithReinforcedies(int id)
|
||
{
|
||
try
|
||
{
|
||
|
||
var shop = _logic.ReadElement(new() { Id = id });
|
||
if (shop == null)
|
||
{
|
||
return null;
|
||
}
|
||
return Tuple.Create(shop,
|
||
shop.ShopReinforcedies.Select(x => new ReinforcedViewModel()
|
||
{
|
||
Id = x.Value.Item1.Id,
|
||
Price = x.Value.Item1.Price,
|
||
ReinforcedName = x.Value.Item1.ReinforcedName,
|
||
}),
|
||
shop.ShopReinforcedies.Select(x => x.Value.Item2));
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка получения магазина");
|
||
throw;
|
||
}
|
||
}
|
||
|
||
[HttpPost]
|
||
public void CRUDShop(Action action)
|
||
{
|
||
try
|
||
{
|
||
action.Invoke();
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка операции CRUD - {operation} с магазином", action.Method.Name);
|
||
throw;
|
||
}
|
||
}
|
||
|
||
[HttpPost]
|
||
public void UpdateShop(ShopBindingModel model) => CRUDShop(() => _logic.Update(model));
|
||
[HttpPost]
|
||
public void CreateShop(ShopBindingModel model) => CRUDShop(() => _logic.Create(model));
|
||
[HttpPost]
|
||
public void DeleteShop(ShopBindingModel model) => CRUDShop(() => _logic.Delete(model));
|
||
|
||
[HttpPost]
|
||
public void AddReinforcedInShop(Tuple<ShopSearchModel, ReinforcedViewModel, int> countReinforcedForShop)
|
||
{
|
||
CRUDShop(() => _logic.AddReinforced(countReinforcedForShop.Item1, countReinforcedForShop.Item2, countReinforcedForShop.Item3));
|
||
}
|
||
}
|
||
}
|
||
|