148 lines
6.2 KiB
C#
148 lines
6.2 KiB
C#
using Infrastructure;
|
||
using Infrastructure.Helper;
|
||
using SqlSugar;
|
||
using SqlSugar.IOC;
|
||
using System.Reflection;
|
||
using ZR.Admin.WebApi.Framework;
|
||
using ZR.Model.System;
|
||
|
||
namespace ZR.Admin.WebApi.Extensions
|
||
{
|
||
public static class DbExtension
|
||
{
|
||
private static NLog.Logger logger = NLog.LogManager.GetCurrentClassLogger();
|
||
//全部数据权限
|
||
public static string DATA_SCOPE_ALL = "1";
|
||
//自定数据权限
|
||
public static string DATA_SCOPE_CUSTOM = "2";
|
||
//部门数据权限
|
||
public static string DATA_SCOPE_DEPT = "3";
|
||
//部门及以下数据权限
|
||
public static string DATA_SCOPE_DEPT_AND_CHILD = "4";
|
||
//仅本人数据权限
|
||
public static string DATA_SCOPE_SELF = "5";
|
||
|
||
public static void AddDb(IConfiguration Configuration)
|
||
{
|
||
string connStr = Configuration.GetConnectionString("conn_db");
|
||
int dbType = Convert.ToInt32(Configuration.GetConnectionString("conn_db_type"));
|
||
|
||
var iocList = new List<IocConfig>() {
|
||
new IocConfig() {
|
||
ConfigId = "0",//默认db
|
||
ConnectionString = connStr,
|
||
DbType = (IocDbType)dbType,
|
||
IsAutoCloseConnection = true
|
||
},
|
||
new IocConfig() {
|
||
ConfigId = "1",
|
||
ConnectionString = connStr,
|
||
DbType = (IocDbType)dbType,
|
||
IsAutoCloseConnection = true
|
||
}
|
||
//...增加其他数据库
|
||
};
|
||
SugarIocServices.AddSqlSugar(iocList);
|
||
SugarIocServices.ConfigurationSugar(db =>
|
||
{
|
||
//db0数据过滤
|
||
FilterData(0);
|
||
|
||
iocList.ForEach(iocConfig =>
|
||
{
|
||
SetSugarAop(db, iocConfig);
|
||
});
|
||
});
|
||
}
|
||
|
||
private static void SetSugarAop(SqlSugarClient db, IocConfig iocConfig)
|
||
{
|
||
var config = db.GetConnection(iocConfig.ConfigId).CurrentConnectionConfig;
|
||
|
||
string configId = config.ConfigId;
|
||
db.GetConnectionScope(configId).Aop.OnLogExecuting = (sql, pars) =>
|
||
{
|
||
string log = $"【db{configId} SQL语句】{UtilMethods.GetSqlString(config.DbType, sql, pars)}\n";
|
||
if (sql.StartsWith("SELECT", StringComparison.OrdinalIgnoreCase))
|
||
logger.Info(log);
|
||
if (sql.StartsWith("UPDATE", StringComparison.OrdinalIgnoreCase) || sql.StartsWith("INSERT", StringComparison.OrdinalIgnoreCase))
|
||
logger.Warn(log);
|
||
if (sql.StartsWith("DELETE", StringComparison.OrdinalIgnoreCase) || sql.StartsWith("TRUNCATE", StringComparison.OrdinalIgnoreCase))
|
||
logger.Error(log);
|
||
};
|
||
|
||
db.GetConnectionScope(configId).Aop.OnError = (e) =>
|
||
{
|
||
Console.ForegroundColor = ConsoleColor.Red;
|
||
logger.Error(e, $"执行SQL出错:{e.Message}");
|
||
};
|
||
}
|
||
|
||
/// <summary>
|
||
/// 初始化db
|
||
/// </summary>
|
||
/// <param name="service"></param>
|
||
public static void InitDb(this IServiceProvider service)
|
||
{
|
||
var db = DbScoped.SugarScope;
|
||
db.DbMaintenance.CreateDatabase();
|
||
//db.CodeFirst.
|
||
|
||
var baseType = typeof(SysBase);
|
||
var entityes = AssemblyUtils.GetAllTypes().Where(p => !p.IsAbstract && p != baseType && /*p.IsAssignableTo(baseType) && */p.GetCustomAttribute<SugarTable>() != null).ToArray();
|
||
db.CodeFirst.SetStringDefaultLength(512).InitTables(entityes);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 数据过滤
|
||
/// </summary>
|
||
/// <param name="configId">多库id</param>
|
||
private static void FilterData(int configId)
|
||
{
|
||
var u = App.User;
|
||
if (u == null) return;
|
||
//获取当前用户的信息
|
||
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);
|
||
foreach (var role in user.Roles.OrderBy(f => f.DataScope))
|
||
{
|
||
string dataScope = role.DataScope;
|
||
if (DATA_SCOPE_ALL.Equals(dataScope))//所有权限
|
||
{
|
||
break;
|
||
}
|
||
else if (DATA_SCOPE_CUSTOM.Equals(dataScope))//自定数据权限
|
||
{
|
||
//" OR {}.dept_id IN ( SELECT dept_id FROM sys_role_dept WHERE role_id = {} ) ", deptAlias, role.getRoleId()));
|
||
var filter1 = new TableFilterItem<SysUser>(it => SqlFunc.Subqueryable<SysRoleDept>().Where(f => f.DeptId == it.DeptId && f.RoleId == role.RoleId).Any());
|
||
db.QueryFilter.Add(filter1);
|
||
}
|
||
else if (DATA_SCOPE_DEPT.Equals(dataScope))//本部门数据
|
||
{
|
||
var filter1 = new TableFilterItem<SysUser>(it => it.DeptId == user.DeptId);
|
||
db.QueryFilter.Add(filter1);
|
||
}
|
||
else if (DATA_SCOPE_DEPT_AND_CHILD.Equals(dataScope))//本部门及以下数据
|
||
{
|
||
//SQl OR {}.dept_id IN ( SELECT dept_id FROM sys_dept WHERE dept_id = {} or find_in_set( {} , ancestors ) )
|
||
var allChildDepts = db.Queryable<SysDept>().ToChildList(it => it.ParentId, user.DeptId);
|
||
|
||
var filter1 = new TableFilterItem<SysUser>(it => allChildDepts.Select(f => f.DeptId).ToList().Contains(it.DeptId));
|
||
db.QueryFilter.Add(filter1);
|
||
|
||
var filter2 = new TableFilterItem<SysDept>(it => allChildDepts.Select(f => f.DeptId).ToList().Contains(it.DeptId));
|
||
db.QueryFilter.Add(filter2);
|
||
}
|
||
else if (DATA_SCOPE_SELF.Equals(dataScope))//仅本人数据
|
||
{
|
||
var filter1 = new TableFilterItem<SysUser>(it => it.UserId == user.UserId, true);
|
||
db.QueryFilter.Add(filter1);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|