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.
87 lines
3.8 KiB
87 lines
3.8 KiB
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<IoTApi, EditPlatformIoTApiModel>
|
|
{
|
|
private readonly AjaxController _ajax;
|
|
private readonly IRepository<IoTProductCategory> _categoryRepo;
|
|
|
|
public IoTApiController(IRepository<IoTApi> repo, AjaxController ajax, IRepository<IoTProductCategory> categoryRepo) : base(repo)
|
|
{
|
|
this._ajax = ajax;
|
|
this._categoryRepo = categoryRepo;
|
|
}
|
|
|
|
public override IQueryable<IoTApi> Include(IQueryable<IoTApi> query)
|
|
{
|
|
return query.Include(o => o.Product).ThenInclude(o => o.IoTProductCategory);
|
|
}
|
|
|
|
public override IQueryable<IoTApi> Query(PagedListModel<EditPlatformIoTApiModel> model, IQueryable<IoTApi> 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);
|
|
}
|
|
}
|
|
}
|
|
}
|