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.
iot/projects/IoTCenter/Api/ProductController.cs

76 lines
2.3 KiB

using Application.Domain.Entities;
using Infrastructure.Data;
using Infrastructure.Extensions;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations;
using System.Linq;
namespace IoTCenter.Api.Controllers
{
[ApiVersion("1.0")]
[Route("api/v{version:apiVersion}/[controller]/[action]")]
[ApiController]
public class ProductController : ControllerBase
{
private readonly IRepository<Product> _productRepo;
private readonly IRepository<Device> _deviceRepo;
public ProductController(IRepository<Product> productRepo,
IRepository<Device> deviceRepo)
{
this._productRepo = productRepo;
this._deviceRepo = deviceRepo;
}
[HttpPost]
public ActionResult GetProducts()
{
try
{
var model = this._productRepo.ReadOnlyTable()
.OrderBy(o => o.DisplayOrder)
.ThenBy(o => o.Name)
.ToList()
.Select(o => new
{
o.Id,
o.Name,
o.Number,
o.Image,
o.DisplayOrder,
Count = _deviceRepo.ReadOnlyTable().Count(d => d.ProductId == o.Id)
});
return Ok(model);
}
catch (Exception ex)
{
ex.PrintStack();
return Problem(ex.Message);
}
}
[HttpPost]
public ActionResult GetProduct([Required]string number)
{
try
{
var model = this._productRepo.ReadOnlyTable()
.Include(o => o.Devices)
.ThenInclude(o => o.Data)
.Include(o => o.Devices)
.ThenInclude(o => o.Node)
.Where(o => o.Number == number)
.FirstOrDefault();
model.Devices = model.Devices.OrderBy(o => o.NodeId).ToList();
return Ok(model);
}
catch (Exception ex)
{
ex.PrintStack();
return Problem(ex.Message);
}
}
}
}