using System; using System.Collections.Generic; using System.Linq; using Znyc.Recruitment.Admin.Commons.Core.App; using Znyc.Recruitment.Admin.Commons.Json; using Znyc.Recruitment.Admin.Commons.Log; using Znyc.Recruitment.Admin.Commons.Mapping; using Znyc.Recruitment.Admin.Commons.Tree; using Znyc.Recruitment.Admin.Security.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; using Znyc.Recruitment.Admin.Security.IServices; namespace Znyc.Recruitment.Admin.Security.Application { /// /// public class MenuApp { private readonly IMenuService service = App.GetService(); private readonly IAdminUserService serviceUser = App.GetService(); private readonly ISystemTypeService systemservice = App.GetService(); /// /// 获取菜单树JsTree模式 /// /// public List MenuFuntionJsTree() { List list = new List(); List listMenu = service.GetAllByIsNotDeleteAndEnabledMark().OrderBy(t => t.SortCode).ToList(); foreach (MenuEntity item in listMenu) { JsTreeModel jsTreeModel = new JsTreeModel { id = item.Id, text = item.FullName, icon = item.Icon, parent = item.ParentId }; JsTreeStateModel jsTreeStateModel = new JsTreeStateModel { disabled = false, selected = true, opened = true }; jsTreeModel.state = jsTreeStateModel; list.Add(jsTreeModel); } return list.JsTreeJson(); } /// /// /// /// public List GetMenu(long ParentId) { List list = new List(); return list; } /// /// 获取菜单树TreeView模式 /// /// public List MenuFuntionTreeViewJson() { List list = new List(); List listMenu = service.GetAll().OrderBy(t => t.SortCode).ToList(); list = JsTreeJson(listMenu, 0, "").ToList(); return list; } /// /// /// /// /// /// private static string JsTreeJson(List data, long ParentId, string blank) { List list = new List(); TreeViewModel jsTreeModel = new TreeViewModel(); List ChildNodeList = data.FindAll(t => t.ParentId == ParentId); string tabline = ""; if (ChildNodeList.Count > 0) { tabline = tabline + blank; } foreach (MenuEntity entity in ChildNodeList) { jsTreeModel.text = entity.FullName; jsTreeModel.icon = entity.Icon; //list.Add(jsTreeModel); jsTreeModel.nodes = JsTreeJson(data, entity.Id, tabline).ToList(); list.Add(jsTreeModel); } return list.ToJson(); } /// /// 根据用户角色获取菜单树VuexMenusTree模式 /// /// 角色ID /// 系统类型代码子系统代码 /// public List GetMenuFuntionJson(long roleIds, string systemCode) { List list = new List(); try { SystemTypeEntity systemType = systemservice.GetByCode(systemCode); list = GetMenusByRole(roleIds, systemType.Id.ToString()).OrderBy(t => t.SortCode) .MapTo(); } catch (Exception ex) { Log4NetHelper.Error("根据用户角色和子系统代码获取菜单异常", ex); } return list; } /// /// 根据用户角色获取菜单树VuexMenusTree模式 /// /// 系统类型代码子系统代码 /// public List GetMenuFuntionJson(string systemCode) { List list = new List(); try { SystemTypeEntity systemType = systemservice.GetByCode(systemCode); List listMenu = GetMenusByRole(systemType.Id).OrderBy(t => t.SortCode).ToList(); list = listMenu.MapTo(); } catch (Exception ex) { Log4NetHelper.Error("根据用户角色和子系统代码获取菜单异常", ex); } return list; } /// /// 构建菜单树 /// /// 菜单列表 /// 父级Id /// public List BuildTreeMenus(List menus, long ParentId = 0) { List resultList = new List(); List childNodeList = menus.FindAll(t => t.ParentId == ParentId); foreach (MenuEntity menu in childNodeList) { MenuOutputDto menuOutputDto = new MenuOutputDto(); menuOutputDto = menu.MapTo(); List subChildNodeList = menus.FindAll(t => t.ParentId == menu.Id); if (subChildNodeList.Count > 0) { menuOutputDto.SubMenu = BuildTreeMenus(menus, menu.Id); } resultList.Add(menuOutputDto); } return resultList; } /// /// 根据用户获取功能菜单 /// /// 用户角色ID /// 系统类型ID/子系统ID /// public List GetMenusByRole(long roleIds, string systemId) { List menuListResult = new List(); if (roleIds == 0) { menuListResult = service.GetFunctions("", systemId, true); } else { // string roleIDsStr = string.Format("'{0}'", roleIds.Replace(",", "','")); string roleIDsStr = ""; menuListResult = service.GetFunctions(roleIDsStr, systemId, true); } return menuListResult; } /// /// 根据用户获取功能菜单 /// /// 系统类型ID/子系统ID /// public List GetMenusByRole(long systemId) { List menuListResult = service .GetAllByIsNotDeleteAndEnabledMark("MenuType in ('M','C') and SystemTypeId='" + systemId + "'") .ToList(); return menuListResult; } /// /// 根据用户ID,获取对应的功能列表 /// /// 用户ID /// 系统类别ID /// public List GetFunctionsByUser(long userId, string typeID) { string roleId = serviceUser.Get(userId).RoleId.ToString(); List functions = new List(); string roleIDsStr = string.Format("'{0}'", roleId.Replace(",", "','")); if (roleIDsStr != "") { functions = service.GetFunctions(roleIDsStr, typeID).ToList().MapTo(); } return functions; } /// /// 根据用户角色IDs,获取对应的功能列表 /// /// 用户角色ID /// 系统类型ID/子系统ID /// public List GetFunctionsByRole(string roleIds, string systemId) { List functions = new List(); string roleIDsStr = string.Format("'{0}'", roleIds.Replace(",", "','")); if (roleIDsStr != "") { functions = service.GetFunctions(roleIDsStr, systemId).ToList().MapTo(); } return functions; } /// /// 根据用户角色IDs,获取对应的功能列表 /// /// 系统类型ID/子系统ID /// public List GetFunctionsBySystem(string systemId) { List functions = new List(); functions = service.GetFunctions(systemId).ToList().MapTo(); return functions; } #region 获取 Vue Router /// /// 根据用户角色获取菜单树VueRouter模式 /// /// 角色ID /// 系统类型代码子系统代码 /// public List GetVueRouter(long roleIds, string systemCode) { List list = new List(); try { SystemTypeEntity systemType = systemservice.GetByCode(systemCode); List listMenu = GetMenusByRole(roleIds, systemType.Id.ToString()).OrderBy(t => t.SortCode).ToList(); List listTree = BuildTreeMenus(listMenu); list = BuildMenus(listTree); } catch (Exception ex) { Log4NetHelper.Error("根据用户角色和子系统代码获取菜单异常", ex); } return list; } /// /// 构建前端路由所需要的菜单 /// /// 菜单列表 /// public List BuildMenus(List menus) { List routers = new List(); foreach (MenuOutputDto menu in menus) { VueRouterModel router = new VueRouterModel { hidden = menu.IsShow ? false : true, name = GetRouteName(menu), path = GetRouterPath(menu), component = GetComponent(menu) }; Meta meta = new Meta(menu.FullName, menu.Icon == null ? "" : menu.Icon, menu.IsCache); if (!menu.IsShow && menu.MenuType.Contains("M")) { meta.activeMenu = menu.ActiveMenu; } router.meta = meta; List cMenus = menu.SubMenu; if (cMenus != null && menu.MenuType == "C") { router.alwaysShow = true; router.redirect = "noRedirect"; router.children = BuildMenus(cMenus); } else if (IsMeunDoc(menu)) { List childrenList = new List(); VueRouterModel childrenRouter = new VueRouterModel { path = menu.UrlAddress, component = menu.Component, name = menu.EnCode, meta = new Meta(menu.FullName, menu.Icon == null ? "" : menu.Icon, menu.IsCache) }; childrenRouter.meta = meta; childrenList.Add(childrenRouter); router.children = childrenList; } else if (IsMeunFrame(menu) && cMenus != null) { if (!menu.IsShow) { router.hidden = true; } router.children = BuildMenus(cMenus); } routers.Add(router); } return routers; } /// /// 获取路由名称 /// /// 菜单信息 /// public string GetRouteName(MenuOutputDto menu) { string routerName = menu.EnCode; // 非外链并且是一级目录(类型为目录) if (IsMeunDoc(menu)) { routerName = ""; } return routerName; } /// /// 获取路由地址 /// /// 菜单信息 /// public string GetRouterPath(MenuOutputDto menu) { string routerPath = menu.UrlAddress; // 非外链并且是一级目录(类型为目录) if (0 == menu.ParentId && menu.MenuType == "C" && !menu.IsFrame) { routerPath = menu.UrlAddress; // "/" + menu.EnCode; } // 非外链并且是一级目录(类型为菜单) else if (IsMeunDoc(menu)) { routerPath = "/"; } return routerPath; } /// /// 获取组件信息 /// /// 菜单信息 /// public string GetComponent(MenuOutputDto menu) { string component = "Layout"; if (!string.IsNullOrEmpty(menu.Component) && IsMeunFrame(menu) && !IsMeunDoc(menu)) { component = menu.Component; } else if (string.IsNullOrEmpty(menu.Component) && IsParentView(menu)) { component = "ParentView"; } return component; } /// /// 是否为菜单内部跳转,并且是一级目录 /// /// 菜单信息 /// public bool IsMeunDoc(MenuOutputDto menu) { return menu.ParentId == 0 && menu.MenuType == "M" && !menu.IsFrame; } /// /// 是否为菜单内部跳转 /// /// 菜单信息 /// public bool IsMeunFrame(MenuOutputDto menu) { return menu.MenuType == "M" && !menu.IsFrame; } /// /// 是否为parent_view组件 /// /// 菜单信息 /// public bool IsParentView(MenuOutputDto menu) { return menu.ParentId != 0 && menu.MenuType == "C"; } #endregion 获取 Vue Router } }