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.Entitys; 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] [Route("api/Security/[controller]")] public class RoleAuthorizeController : AreaApiController { private readonly IMenuService menuService; private readonly IOrganizeService organizeService; private readonly IRoleDataService roleDataService; /// /// /// /// /// /// public RoleAuthorizeController(IRoleAuthorizeService service, IMenuService _menuService, IRoleDataService _roleDataService, IOrganizeService _organizeService) : base(service) { _service = service; menuService = _menuService; roleDataService = _roleDataService; organizeService = _organizeService; } /// /// 新增前处理数据 /// /// protected override void OnBeforeInsert(RoleAuthorizeEntity info) { info.Id = 0; info.CreatedTime = DateTime.Now; info.CreatedUserId = CurrentUser.UserId; if (info.SortCode == null) { info.SortCode = 99; } } /// /// 在更新数据前对数据的修改操作 /// /// /// protected override void OnBeforeUpdate(RoleAuthorizeEntity info) { } /// /// 在软删除数据前对数据的修改操作 /// /// /// protected override void OnBeforeSoftDelete(RoleAuthorizeEntity info) { } /// /// 角色分配权限树 /// /// /// /// [HttpGet("GetRoleAuthorizeFunction")] [FunctionAuthorize("List")] public async Task GetRoleAuthorizeFunction(long roleId, string itemType) { CommonResult result = new CommonResult(); // roleId = "'" + roleId + "'"; List resultlist = new List(); IEnumerable list = _service.GetListRoleAuthorizeByRoleId(roleId.ToString(), itemType); foreach (RoleAuthorizeEntity info in list) { resultlist.Add(info.ItemId); } result.ResData = resultlist; result.ErrCode = ErrCode.successCode; return ToJsonContent(result); } /// /// 保存角色权限 /// /// 功能权限 /// [HttpPost("SaveRoleAuthorize")] [FunctionAuthorize("List")] public async Task SaveRoleAuthorize(RoleAuthorizeDataInputDto roleinfo) { CommonResult result = new CommonResult(); try { List inList = new List(); foreach (int item in roleinfo.RoleFunctios) { MenuEntity menu = menuService.Get(item); if (menu != null) { RoleAuthorizeEntity info = new RoleAuthorizeEntity { ObjectId = roleinfo.RoleId, ItemType = menu.MenuType == "C" || menu.MenuType == "M" ? 1 : 2, ObjectType = 1, ItemId = menu.Id }; OnBeforeInsert(info); inList.Add(info); } } List roleDataList = new List(); foreach (string item in roleinfo.RoleData) { RoleDataEntity info = new RoleDataEntity { RoleId = roleinfo.RoleId, AuthorizeData = item, DType = "dept" }; roleDataList.Add(info); } foreach (int item in roleinfo.RoleSystem) { RoleAuthorizeEntity info = new RoleAuthorizeEntity { ObjectId = roleinfo.RoleId, ItemType = 0, ObjectType = 1, ItemId = item }; OnBeforeInsert(info); inList.Add(info); } result.Success = await _service.SaveRoleAuthorize(roleinfo.RoleId, inList, roleDataList); if (result.Success) { result.ErrCode = ErrCode.successCode; } } catch (Exception ex) { result.ErrMsg = ex.Message; } return ToJsonContent(result); } private List SubFunction(List list, int roleId) { List inList = new List(); foreach (ModuleFunctionOutputDto item in list) { RoleAuthorizeEntity info = new RoleAuthorizeEntity { ObjectId = roleId, ItemType = 1, ObjectType = 1, ItemId = item.Id }; OnBeforeInsert(info); inList.Add(info); inList.Concat(SubFunction(item.Children, roleId)); } return inList; } /// /// 获取功能菜单适用于Vue Tree树形 /// /// [HttpGet("GetAllFunctionTree")] [FunctionAuthorize("List")] public async Task GetAllFunctionTree() { CommonResult result = new CommonResult(); try { List list = await _service.GetAllFunctionTree(); result.Success = true; result.ErrCode = ErrCode.successCode; result.ResData = list; } catch (Exception ex) { Log4NetHelper.Error("获取菜单异常", ex); result.ErrMsg = ErrCode.err40110; result.ErrCode = "40110"; } return ToJsonContent(result); } /// /// 获取功能菜单适用于Vue 树形列表 /// /// 子系统Id /// //[HttpGet("GetAllFunctionTreeTable")] //[FunctionAuthorize("List")] //public async Task GetAllFunctionTreeTable(string systemTypeId) //{ // CommonResult result = new CommonResult(); // try // { // List list = await menuService.GetAllFunctionTreeTable(systemTypeId); // result.Success = true; // result.ErrCode = ErrCode.successCode; // result.ResData = list; // } // catch (Exception ex) // { // Log4NetHelper.Error("获取菜单异常", ex); // result.ErrMsg = ErrCode.err40110; // result.ErrCode = "40110"; // } // return ToJsonContent(result); //} } }