using Base;
using Infrastructure;
using Model;
using SqlSugar.IOC;
using Util;
namespace SqlSugar
{
public enum DataPermiEnum
{
None = 0,
///
/// 全部数据权限
///
All = 1,
///
/// 仅本人数据权限
///
SELF = 5,
///
/// 部门数据权限
///
DEPT = 3,
///
/// 自定数据权限
///
CUSTOM = 2,
///
/// 部门及以下数据权限
///
DEPT_CHILD = 4
}
///
/// 数据权限
///
public class DataPermi
{
///
/// 数据过滤
///
/// 多库id
public static void FilterData(int configId)
{
//获取当前用户的信息
var user = JwtUtil.GetLoginUser(App.HttpContext);
if (user == null) return;
//管理员不过滤
// if (user.RoleIds.Any(f => f.Equals(GlobalConstant.AdminRole))) return;
var db = DbScoped.SugarScope.GetConnectionScope(configId);
// var expUser = Expressionable.Create();
// var expRole = Expressionable.Create();
// foreach (var role in user.Roles.OrderBy(f => f.DataScope))
// {
// var dataScope = (DataPermiEnum)role.DataScope;
// if (DataPermiEnum.All.Equals(dataScope))//所有权限
// {
// break;
// }
// else if (DataPermiEnum.DEPT.Equals(dataScope))//本部门数据
// {
// expUser.Or(it => it.DeptId == user.DeptId);
// }
// else if (DataPermiEnum.SELF.Equals(dataScope))//仅本人数据
// {
// expUser.Or(it => it.UserId == user.UserId);
// expRole.Or(it => user.RoleIds.Contains(it.RoleKey));
// }
// }
// db.QueryFilter.AddTableFilter(expUser.ToExpression());
// db.QueryFilter.AddTableFilter(expRole.ToExpression());
}
}
}