using Infrastructure.Application; using Infrastructure.Data; using Infrastructure.Extensions; using Infrastructure.Web.Mvc; using Application.Domain.Entities; using IoT.Shared.Application.Models; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Platform.Application.Models.IoTCenter; using Platform.Areas.IoTCenter.Controllers; using System; using System.Linq; namespace IoT.Shared.Areas.IoTCenter.Controlls { [Authorize] [ApiController] [Route("IoTCenter/[controller]/[action]")] [Area("IoTCenter")] [ControllerScope(ControllerScopeType.Platform)] public class IoTApiController : CrudController { private readonly AjaxController _ajax; private readonly IRepository _categoryRepo; public IoTApiController(IRepository repo, AjaxController ajax, IRepository categoryRepo) : base(repo) { this._ajax = ajax; this._categoryRepo = categoryRepo; } public override IQueryable Include(IQueryable query) { return query.Include(o => o.Product).ThenInclude(o => o.IoTProductCategory); } public override IQueryable Query(PagedListModel model, IQueryable query) { ViewData.SelectList(o => model.Query.IoTProductId, () => this._ajax.GetIoTProduct(model.Query.IoTProductId).SelectList()); return query .WhereIf(model.Query.IoTProductCategoryId.HasValue, o => o.Product.IoTProductCategoryId == model.Query.IoTProductCategoryId.Value) .WhereIf(model.Query.IoTProductId.HasValue, o => o.IoTProductId == model.Query.IoTProductId.Value) .WhereIf(!string.IsNullOrEmpty(model.Query.Name), o => o.Name.Contains(model.Query.Name)) .WhereIf(!string.IsNullOrEmpty(model.Query.Path), o => o.Path.Contains(model.Query.Path)) .WhereIf(!string.IsNullOrEmpty(model.Query.Command), o => o.Command.Contains(model.Query.Command)) .WhereIf(!string.IsNullOrEmpty(model.Query.Method), o => o.Method.Contains(model.Query.Method)); } public override void EntityToModel(IoTApi entity, EditPlatformIoTApiModel model) { model.IoTProductCategoryId = entity?.Product?.IoTProductCategoryId; } public override void ToDisplayModel(IoTApi entity, EditPlatformIoTApiModel model) { if (entity != null) { ViewData.Add(model.IoTProductId.Value, entity.Product?.Name); } if (model.IoTProductCategoryId.HasValue) { var name = this._categoryRepo.ReadOnlyTable() .Where(o => o.ParentId != null) .Where(o => o.Left <= entity.Product.IoTProductCategory.Left && o.Right >= entity.Product.IoTProductCategory.Right) .ToList() .ToTree() .FirstOrDefault(o => o.Id == model.IoTProductCategoryId.Value)?.GetDisplayName(); ViewData.Add(model.IoTProductCategoryId.Value, name); } } public override void ToEditModel(IoTApi entity, EditPlatformIoTApiModel model) { ViewData.SelectList(o => model.IoTProductCategoryId, () => this._ajax.GetIoTProductCategory(model.IoTProductCategoryId).SelectList()); if (model.IoTProductCategoryId.HasValue) { ViewData.SelectList(o => model.IoTProductId, () => this._ajax.GetIoTProductByCategory(model.IoTProductCategoryId.Value, model.IoTProductId).SelectList()); } else { ViewData.Add(model.IoTProductId, entity?.Product?.Name); } } } }