2025-06-06 16:00:39 +08:00

67 lines
2.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic;
using VOL.Core.Const;
using VOL.Core.Enums;
using VOL.Core.ManageUser;
using VOL.Core.UserManager;
namespace VOL.Core.Infrastructure
{
public static class DictionaryHandler
{
/*2020.05.01增加根据用户信息加载字典数据源sql*/
/// <summary>
/// 获取自定义数据源sql
/// </summary>
/// <param name="dicNo"></param>
/// <param name="originalSql"></param>
/// <returns></returns>
public static string GetCustomDBSql(string dicNo, string originalSql)
{
switch (dicNo)
{
case "roles":
//2020.05.24增加绑定table表时获取所有的角色列表
//注意如果是2020.05.24之前获取的数据库脚本
//请在菜单【下拉框绑定设置】添加一个字典编号【t_roles】,除了字典编号,其他内容随便填写
case "t_roles":
case "tree_roles":
originalSql = GetRolesSql(originalSql);
break;
default:
break;
}
return originalSql;
}
/// <summary>
/// 获取解决的数据源,只能看到自己与下级所有角色
/// </summary>
/// <param name="context"></param>
/// <param name="originalSql"></param>
/// <returns></returns>
public static string GetRolesSql(string originalSql)
{
if (UserContext.Current.IsSuperAdmin)
{
return originalSql;
}
int currnetRoleId = UserContext.Current.RoleId;
List<int> roleIds = RoleContext.GetAllChildrenIds(currnetRoleId);
roleIds.Add(currnetRoleId);
if (DBType.Name == DbCurrentType.PgSql.ToString())
{
originalSql = $"SELECT \"Role_Id\" as key,\"Role_Id\" as id,\"RoleName\" as value,\"ParentId\" AS parentId from Sys_Role"
+ $" where \"Role_Id\" in ({string.Join(',', roleIds)})";
}
else
{
originalSql = $@"SELECT Role_Id as 'key',Role_Id AS id,ParentId AS parentId,RoleName as 'value' FROM Sys_Role
WHERE Enable=1 and Role_Id in ({string.Join(',', roleIds)})";
}
return originalSql;
}
}
}