using ce.autofac.extension;
using learun.iapplication;
using learun.util;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace learun.application
{
///
/// 版 本 EasyCode EC管理后台
/// Copyright (c) 2019-present EC管理有限公司
/// 创建人:tobin
/// 日 期:2019.09.10
/// 描 述:功能模块
///
public class ModuleBLL : BLLBase, ModuleIBLL, BLL
{
private readonly ModuleService moduleService = new ModuleService();
private readonly AuthorizeIBLL _authorizeIBLL;
private readonly UserRelationIBLL _userRelationIBLL;
///
///
///
///
///
public ModuleBLL(AuthorizeIBLL authorizeIBLL, UserRelationIBLL userRelationIBLL)
{
_authorizeIBLL = authorizeIBLL;
_userRelationIBLL = userRelationIBLL;
}
#region 功能模块
///
/// 功能列表
///
///
public async Task> GetModuleList()
{
List list = (List)await moduleService.GetList();
var userInfo = await this.CurrentUser();
/*关联权限*/
if (userInfo.F_SecurityLevel != 1)// 不是系统管理员
{
string roleIds = await _userRelationIBLL.GetObjectIds(userInfo.F_UserId, 1);
string objectIds = userInfo.F_UserId + (string.IsNullOrEmpty(roleIds) ? "" : ("," + roleIds));
List itemIdList = (List)await _authorizeIBLL.GetItemIdListByobjectIds(objectIds, 1);
list = list.FindAll(t => itemIdList.IndexOf(t.F_ModuleId) >= 0);
}
return list;
}
///
/// 功能列表
///
/// 对应的角色或用户
///
public async Task> GetModuleList(string objectId)
{
List list = (List)await moduleService.GetList();
List itemIdList = (List)await _authorizeIBLL.GetItemIdListByobjectIds(objectId, 1);
list = list.FindAll(t => itemIdList.IndexOf(t.F_ModuleId) >= 0);
return list;
}
///
/// 功能列表
///
///
public Task GetModuleByUrl(string url)
{
return moduleService.GetEntityByUrl(url);
}
///
/// 功能列表(code)
///
/// 编码
///
public Task GetEntityByCode(string code)
{
return moduleService.GetEntityByCode(code);
}
///
/// 获取功能列表的树形数据
///
///
public async Task> GetModuleTree()
{
List modulelist = (List)await GetModuleList();
List treeList = new List();
foreach (var item in modulelist)
{
TreeModel node = new TreeModel();
node.id = item.F_ModuleId;
node.text = item.F_FullName;
node.value = item.F_EnCode;
node.showcheck = false;
node.checkstate = 0;
node.isexpand = (item.F_AllowExpand == 1);
node.icon = item.F_Icon;
node.parentId = item.F_ParentId;
treeList.Add(node);
}
return treeList.ToTree();
}
///
/// 获取功能列表的树形数据(带勾选框)
///
///
public async Task> GetModuleCheckTree()
{
List modulelist = (List)await GetModuleList();
List treeList = new List();
foreach (var item in modulelist)
{
TreeModel node = new TreeModel();
node.id = item.F_ModuleId;
node.text = item.F_FullName;
node.value = item.F_EnCode;
node.showcheck = true;
node.checkstate = 0;
node.isexpand = false;
node.icon = item.F_Icon;
node.parentId = item.F_ParentId;
treeList.Add(node);
}
return treeList.ToTree();
}
///
/// 获取功能列表的树形数据(只有展开项)
///
///
public async Task> GetExpendModuleTree()
{
List modulelist = (List)await GetModuleList();
List treeList = new List();
foreach (var item in modulelist)
{
if (item.F_Target == "expand")
{
TreeModel node = new TreeModel();
node.id = item.F_ModuleId;
node.text = item.F_FullName;
node.value = item.F_EnCode;
node.showcheck = false;
node.checkstate = 0;
node.isexpand = true;
node.icon = item.F_Icon;
node.parentId = item.F_ParentId;
treeList.Add(node);
}
}
return treeList.ToTree();
}
///
/// 根据父级主键获取数据
///
/// 关键字
/// 父级主键
///
public async Task> GetModuleListByParentId(string keyword, string parentId)
{
List list = (List)await GetModuleList();
list = list.FindAll(t => t.F_ParentId == parentId);
if (!string.IsNullOrEmpty(keyword))
{
list = list.FindAll(t => t.F_FullName.Contains(keyword) || t.F_EnCode.Contains(keyword));
}
return list;
}
///
/// 功能实体
///
/// 主键值
///
public Task GetModuleEntity(string keyValue)
{
return moduleService.GetEntity(keyValue);
}
#endregion 功能模块
#region 模块按钮
///
/// 获取按钮列表数据
///
/// 模块Id
///
public async Task> GetButtonListNoAuthorize(string moduleId)
{
List list = (List)await moduleService.GetButtonList(moduleId);
return list;
}
///
/// 获取按钮列表数据
///
/// 模块Id
///
public async Task> GetButtonList(string moduleId)
{
List list = (List)await moduleService.GetButtonList(moduleId);
var userInfo = await this.CurrentUser();
/*关联权限*/
if (userInfo.F_SecurityLevel != 1)// 不是系统管理员
{
string roleIds = await _userRelationIBLL.GetObjectIds(userInfo.F_UserId, 1);
string objectIds = userInfo.F_UserId + (string.IsNullOrEmpty(roleIds) ? "" : ("," + roleIds));
List itemIdList = (List)await _authorizeIBLL.GetItemIdListByobjectIds(objectIds, 2);
list = list.FindAll(t => itemIdList.IndexOf(t.F_ModuleButtonId) >= 0);
}
return list;
}
///
/// 获取按钮列表数据
///
///
public async Task> GetButtonList()
{
List list = (List)await moduleService.GetButtonList();
var userInfo = await this.CurrentUser();
/*关联权限*/
if (userInfo.F_SecurityLevel != 1)// 不是系统管理员
{
string roleIds = await _userRelationIBLL.GetObjectIds(userInfo.F_UserId, 1);
string objectIds = userInfo.F_UserId + (string.IsNullOrEmpty(roleIds) ? "" : ("," + roleIds));
List itemIdList = (List)await _authorizeIBLL.GetItemIdListByobjectIds(objectIds, 2);
list = list.FindAll(t => itemIdList.IndexOf(t.F_ModuleButtonId) >= 0);
}
return list;
}
///
/// 获取按钮列表数据
///
/// 功能模块地址
///
public async Task> GetButtonListByUrl(string url)
{
ModuleEntity moduleEntity = await GetModuleByUrl(url);
if (moduleEntity == null)
{
return new List();
}
return await GetButtonList(moduleEntity.F_ModuleId);
}
///
/// 获取按钮列表树形数据(基于功能模块)
///
/// 需要设置的角色对象
///
public async Task> GetButtonCheckTree(string objectId)
{
List modulelist = (List)await GetModuleList(objectId);
List treeList = new List();
List buttonAllList = (List)await GetButtonList();
foreach (var module in modulelist)
{
TreeModel node = new TreeModel();
node.id = module.F_ModuleId + "_learun_moduleId";
node.text = module.F_FullName;
node.value = module.F_EnCode;
node.showcheck = true;
node.checkstate = 0;
node.isexpand = true;
node.icon = module.F_Icon;
node.parentId = module.F_ParentId + "_learun_moduleId";
if (module.F_Target != "expand")
{
List buttonList = buttonAllList.FindAll(t => t.F_ModuleId == module.F_ModuleId);
if (buttonList.Count > 0)
{
treeList.Add(node);
}
foreach (var button in buttonList)
{
TreeModel buttonNode = new TreeModel();
buttonNode.id = button.F_ModuleButtonId;
buttonNode.text = button.F_FullName;
buttonNode.value = button.F_EnCode;
buttonNode.showcheck = true;
buttonNode.checkstate = 0;
buttonNode.isexpand = true;
buttonNode.icon = "fa fa-wrench";
buttonNode.parentId = (button.F_ParentId == "0" ? button.F_ModuleId + "_learun_moduleId" : button.F_ParentId);
treeList.Add(buttonNode);
}
}
else
{
node.isexpand = false;
treeList.Add(node);
}
}
return treeList.ToTree();
}
#endregion 模块按钮
#region 模块视图
///
/// 获取视图列表数据
///
/// 模块Id
///
public async Task> GetColumnList(string moduleId)
{
List list = (List)await moduleService.GetColumnList(moduleId);
var userInfo = await this.CurrentUser();
/*关联权限*/
if (userInfo.F_SecurityLevel != 1)// 不是系统管理员
{
string roleIds = await _userRelationIBLL.GetObjectIds(userInfo.F_UserId, 1);
string objectIds = userInfo.F_UserId + (string.IsNullOrEmpty(roleIds) ? "" : ("," + roleIds));
List itemIdList = (List)await _authorizeIBLL.GetItemIdListByobjectIds(objectIds, 3);
list = list.FindAll(t => itemIdList.IndexOf(t.F_ModuleColumnId) >= 0);
}
return list;
}
///
/// 获取视图列表数据
///
///
public async Task> GetColumnList()
{
List list = (List)await moduleService.GetColumnList();
var userInfo = await this.CurrentUser();
/*关联权限*/
if (userInfo.F_SecurityLevel != 1)// 不是系统管理员
{
string roleIds = await _userRelationIBLL.GetObjectIds(userInfo.F_UserId, 1);
string objectIds = userInfo.F_UserId + (string.IsNullOrEmpty(roleIds) ? "" : ("," + roleIds));
List itemIdList = (List)await _authorizeIBLL.GetItemIdListByobjectIds(objectIds, 3);
list = list.FindAll(t => itemIdList.IndexOf(t.F_ModuleColumnId) >= 0);
}
return list;
}
///
/// 获取视图列表数据
///
/// 功能模块地址
///
public async Task> GetColumnListByUrl(string url)
{
ModuleEntity moduleEntity = await GetModuleByUrl(url);
if (moduleEntity == null)
{
return new List();
}
return await GetColumnList(moduleEntity.F_ModuleId);
}
///
/// 获取按钮列表树形数据(基于功能模块)
///
/// 需要设置的角色对象
///
public async Task> GetColumnCheckTree(string objectId)
{
List modulelist = (List)await GetModuleList(objectId);
List treeList = new List();
List columnAllList = (List)await GetColumnList();
foreach (var module in modulelist)
{
TreeModel node = new TreeModel();
node.id = module.F_ModuleId + "_learun_moduleId";
node.text = module.F_FullName;
node.value = module.F_EnCode;
node.showcheck = true;
node.checkstate = 0;
node.isexpand = false;
node.icon = module.F_Icon;
node.parentId = module.F_ParentId + "_learun_moduleId";
if (module.F_Target != "expand")
{
List columnList = columnAllList.FindAll(t => t.F_ModuleId == module.F_ModuleId);
if (columnList.Count > 0)
{
treeList.Add(node);
}
foreach (var column in columnList)
{
TreeModel columnNode = new TreeModel();
columnNode.id = column.F_ModuleColumnId;
columnNode.text = column.F_FullName;
columnNode.value = column.F_EnCode;
columnNode.showcheck = true;
columnNode.checkstate = 0;
columnNode.isexpand = true;
columnNode.icon = "fa fa-filter";
columnNode.parentId = column.F_ModuleId + "_learun_moduleId";
treeList.Add(columnNode);
}
}
else
{
treeList.Add(node);
}
}
return treeList.ToTree();
}
#endregion 模块视图
#region 模块表单
///
/// 获取表单字段数据
///
/// 模块Id
///
public async Task> GetFormList(string moduleId)
{
List list = (List)await moduleService.GetFormList(moduleId);
var userInfo = await this.CurrentUser();
/*关联权限*/
if (userInfo.F_SecurityLevel != 1)// 不是系统管理员
{
string roleIds = await _userRelationIBLL.GetObjectIds(userInfo.F_UserId, 1);
string objectIds = userInfo.F_UserId + (string.IsNullOrEmpty(roleIds) ? "" : ("," + roleIds));
List itemIdList = (List)await _authorizeIBLL.GetItemIdListByobjectIds(objectIds, 4);
list = list.FindAll(t => itemIdList.IndexOf(t.F_ModuleFormId) >= 0);
}
return list;
}
///
/// 获取表单字段数据
///
///
public async Task> GetFormList()
{
List list = (List)await moduleService.GetFormList();
var userInfo = await this.CurrentUser();
/*关联权限*/
if (userInfo.F_SecurityLevel != 1)// 不是系统管理员
{
string roleIds = await _userRelationIBLL.GetObjectIds(userInfo.F_UserId, 1);
string objectIds = userInfo.F_UserId + (string.IsNullOrEmpty(roleIds) ? "" : ("," + roleIds));
List itemIdList = (List)await _authorizeIBLL.GetItemIdListByobjectIds(objectIds, 4);
list = list.FindAll(t => itemIdList.IndexOf(t.F_ModuleFormId) >= 0);
}
return list;
}
///
/// 获取表单字段数据
///
/// 功能模块地址
///
public async Task> GetFormListByUrl(string url)
{
ModuleEntity moduleEntity = await GetModuleByUrl(url);
if (moduleEntity == null)
{
return new List();
}
return await GetFormList(moduleEntity.F_ModuleId);
}
///
/// 获取表单字段树形数据(基于功能模块)
///
/// 需要设置的角色对象
///
public async Task> GetFormCheckTree(string objectId)
{
List modulelist = (List)await GetModuleList(objectId);
List treeList = new List();
List columnAllList = (List)await GetFormList();
foreach (var module in modulelist)
{
TreeModel node = new TreeModel();
node.id = module.F_ModuleId + "_learun_moduleId";
node.text = module.F_FullName;
node.value = module.F_EnCode;
node.showcheck = true;
node.checkstate = 0;
node.isexpand = false;
node.icon = module.F_Icon;
node.parentId = module.F_ParentId + "_learun_moduleId";
if (module.F_Target != "expand")
{
List columnList = columnAllList.FindAll(t => t.F_ModuleId == module.F_ModuleId);
if (columnList.Count > 0)
{
treeList.Add(node);
}
foreach (var column in columnList)
{
TreeModel columnNode = new TreeModel();
columnNode.id = column.F_ModuleFormId;
columnNode.text = column.F_FullName;
columnNode.value = column.F_EnCode;
columnNode.showcheck = true;
columnNode.checkstate = 0;
columnNode.isexpand = true;
columnNode.icon = "fa fa-filter";
columnNode.parentId = column.F_ModuleId + "_learun_moduleId";
treeList.Add(columnNode);
}
}
else
{
treeList.Add(node);
}
}
return treeList.ToTree();
}
#endregion 模块表单
#region 提交数据
///
/// 虚拟删除模块功能
///
/// 主键值
public async Task Delete(string keyValue)
{
List list = (List)await GetModuleListByParentId("", keyValue);
if (list.Count > 0)
{
return false;
}
await moduleService.Delete(keyValue);
return true;
}
///
/// 保存模块功能实体(新增、修改)
///
/// 主键值
/// 实体
/// 按钮列表
/// 视图列集合
/// 表单字段集合
public async Task SaveEntity(string keyValue, ModuleEntity moduleEntity, List moduleButtonEntitys, List moduleColumnEntitys, List moduleFormEntitys)
{
await moduleService.SaveEntity(keyValue, moduleEntity, moduleButtonEntitys, moduleColumnEntitys, moduleFormEntitys);
}
#endregion 提交数据
}
}