using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Znyc.Recruitment.Admin.AspNetCore.Controllers;
using Znyc.Recruitment.Admin.AspNetCore.Entitys;
using Znyc.Recruitment.Admin.AspNetCore.Mvc;
using Znyc.Recruitment.Admin.Commons.Cache;
using Znyc.Recruitment.Admin.Commons.Entitys;
using Znyc.Recruitment.Admin.Commons.Json;
using Znyc.Recruitment.Admin.Commons.Log;
using Znyc.Recruitment.Admin.Security.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
using Znyc.Recruitment.Admin.Security.IServices;
namespace Znyc.Recruitment.Admin.WebApi.Controllers
{
///
/// 功能模块接口
///
[ApiController]
[Produces("application/json")]
[Route("api/[controller]")]
public class FunctionController : AreaApiController
{
///
///
///
public FunctionController(IMenuService service) : base(service)
{
_service = service;
}
///
/// 根据父级功能编码查询所有子集功能,主要用于页面操作按钮权限
///
/// 菜单功能编码
///
[HttpGet("GetListByParentEnCode")]
[FunctionAuthorize("")]
public async Task GetListByParentEnCode(string enCode)
{
CommonResult result = new CommonResult();
try
{
if (CurrentUser != null)
{
CacheHelper cacheHelper = new CacheHelper();
List functions = new List();
functions = cacheHelper.Get("User_Function_" + CurrentUser.UserId).ToJson()
.ToObject>();
MenuOutputDto functionOutputDto = functions.Find(s => s.EnCode == enCode);
List nowFunList = new List();
if (functionOutputDto != null)
{
nowFunList = functions
.FindAll(s => s.ParentId == functionOutputDto.Id && s.IsShow && s.MenuType.Equals("F"))
.OrderBy(s => s.SortCode).ToList();
}
result.ErrCode = ErrCode.successCode;
result.ResData = nowFunList;
}
else
{
result.ErrCode = "40008";
result.ErrMsg = ErrCode.err40008;
}
}
catch (Exception ex)
{
Log4NetHelper.Error("根据父级功能编码查询所有子集功能,主要用于页面操作按钮权限,代码生成异常", ex);
result.ErrCode = ErrCode.failCode;
result.ErrMsg = "获取模块功能异常";
}
return ToJsonContent(result);
}
}
}