2018-10-19 23:09:52 +08:00
using Longbow ;
using Longbow.Cache ;
using Longbow.Data ;
using System ;
using System.Collections.Generic ;
using System.Data ;
using System.Data.Common ;
using System.Data.SqlClient ;
using System.Linq ;
namespace Bootstrap.DataAccess.SQLite
{
/// <summary>
///
/// </summary>
public class Role : DataAccess . Role
{
/// <summary>
/// 查询所有角色
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public override IEnumerable < DataAccess . Role > RetrieveRoles ( int id = 0 )
{
var ret = CacheManager . GetOrAdd ( RetrieveRolesDataKey , key = >
{
string sql = "select * from Roles" ;
var roles = new List < Role > ( ) ;
2018-10-20 22:25:53 +08:00
DbCommand cmd = DbAccessManager . DBAccess . CreateCommand ( CommandType . Text , sql ) ;
using ( DbDataReader reader = DbAccessManager . DBAccess . ExecuteReader ( cmd ) )
2018-10-19 23:09:52 +08:00
{
while ( reader . Read ( ) )
{
roles . Add ( new Role ( )
{
Id = LgbConvert . ReadValue ( reader [ 0 ] , 0 ) ,
RoleName = ( string ) reader [ 1 ] ,
Description = reader . IsDBNull ( 2 ) ? string . Empty : ( string ) reader [ 2 ]
} ) ;
}
}
return roles ;
} ) ;
return id = = 0 ? ret : ret . Where ( t = > id = = t . Id ) ;
}
/// <summary>
/// 保存用户角色关系
/// </summary>
/// <param name="id"></param>
/// <param name="roleIds"></param>
/// <returns></returns>
public override bool SaveRolesByUserId ( int id , IEnumerable < int > roleIds )
{
var ret = false ;
DataTable dt = new DataTable ( ) ;
dt . Columns . Add ( "UserID" , typeof ( int ) ) ;
dt . Columns . Add ( "RoleID" , typeof ( int ) ) ;
//判断用户是否选定角色
roleIds . ToList ( ) . ForEach ( roleId = > dt . Rows . Add ( id , roleId ) ) ;
2018-10-20 22:25:53 +08:00
using ( TransactionPackage transaction = DbAccessManager . DBAccess . BeginTransaction ( ) )
2018-10-19 23:09:52 +08:00
{
try
{
// delete user from config table
string sql = "delete from UserRole where UserID = @UserID;" ;
2018-10-20 22:25:53 +08:00
using ( DbCommand cmd = DbAccessManager . DBAccess . CreateCommand ( CommandType . Text , sql ) )
2018-10-19 23:09:52 +08:00
{
2018-10-20 22:25:53 +08:00
cmd . Parameters . Add ( DbAccessManager . DBAccess . CreateParameter ( "@UserID" , id ) ) ;
DbAccessManager . DBAccess . ExecuteNonQuery ( cmd , transaction ) ;
2018-10-19 23:09:52 +08:00
if ( dt . Rows . Count > 0 )
{
// insert batch data into config table
using ( SqlBulkCopy bulk = new SqlBulkCopy ( ( SqlConnection ) transaction . Transaction . Connection , SqlBulkCopyOptions . Default , ( SqlTransaction ) transaction . Transaction ) )
{
bulk . DestinationTableName = "UserRole" ;
bulk . ColumnMappings . Add ( "UserID" , "UserID" ) ;
bulk . ColumnMappings . Add ( "RoleID" , "RoleID" ) ;
bulk . WriteToServer ( dt ) ;
}
}
transaction . CommitTransaction ( ) ;
}
CacheCleanUtility . ClearCache ( userIds : new List < int > ( ) { id } , roleIds : roleIds ) ;
ret = true ;
}
catch ( Exception ex )
{
transaction . RollbackTransaction ( ) ;
throw ex ;
}
}
return ret ;
}
/// <summary>
/// 查询某个用户所拥有的角色
/// </summary>
/// <returns></returns>
public override IEnumerable < DataAccess . Role > RetrieveRolesByUserId ( int userId )
{
string key = string . Format ( "{0}-{1}" , RetrieveRolesByUserIdDataKey , userId ) ;
return CacheManager . GetOrAdd ( key , k = >
{
List < Role > roles = new List < Role > ( ) ;
string sql = "select r.ID, r.RoleName, r.[Description], case ur.RoleID when r.ID then 'checked' else '' end [status] from Roles r left join UserRole ur on r.ID = ur.RoleID and UserID = @UserID" ;
2018-10-20 22:25:53 +08:00
DbCommand cmd = DbAccessManager . DBAccess . CreateCommand ( CommandType . Text , sql ) ;
cmd . Parameters . Add ( DbAccessManager . DBAccess . CreateParameter ( "@UserID" , userId ) ) ;
using ( DbDataReader reader = DbAccessManager . DBAccess . ExecuteReader ( cmd ) )
2018-10-19 23:09:52 +08:00
{
while ( reader . Read ( ) )
{
roles . Add ( new Role ( )
{
Id = LgbConvert . ReadValue ( reader [ 0 ] , 0 ) ,
RoleName = ( string ) reader [ 1 ] ,
Description = reader . IsDBNull ( 2 ) ? string . Empty : ( string ) reader [ 2 ] ,
Checked = ( string ) reader [ 3 ]
} ) ;
}
}
return roles ;
} , RetrieveRolesByUserIdDataKey ) ;
}
/// <summary>
/// 删除角色表
/// </summary>
/// <param name="value"></param>
public override bool DeleteRole ( IEnumerable < int > value )
{
bool ret = false ;
var ids = string . Join ( "," , value ) ;
2018-10-20 22:25:53 +08:00
using ( DbCommand cmd = DbAccessManager . DBAccess . CreateCommand ( CommandType . StoredProcedure , "Proc_DeleteRoles" ) )
2018-10-19 23:09:52 +08:00
{
2018-10-20 22:25:53 +08:00
cmd . Parameters . Add ( DbAccessManager . DBAccess . CreateParameter ( "@ids" , ids ) ) ;
ret = DbAccessManager . DBAccess . ExecuteNonQuery ( cmd ) = = - 1 ;
2018-10-19 23:09:52 +08:00
}
CacheCleanUtility . ClearCache ( roleIds : value ) ;
return ret ;
}
/// <summary>
/// 保存新建/更新的角色信息
/// </summary>
/// <param name="p"></param>
/// <returns></returns>
public override bool SaveRole ( DataAccess . Role p )
{
bool ret = false ;
if ( ! string . IsNullOrEmpty ( p . RoleName ) & & p . RoleName . Length > 50 ) p . RoleName = p . RoleName . Substring ( 0 , 50 ) ;
if ( ! string . IsNullOrEmpty ( p . Description ) & & p . Description . Length > 50 ) p . Description = p . Description . Substring ( 0 , 500 ) ;
string sql = p . Id = = 0 ?
"Insert Into Roles (RoleName, Description) Values (@RoleName, @Description)" :
"Update Roles set RoleName = @RoleName, Description = @Description where ID = @ID" ;
2018-10-20 22:25:53 +08:00
using ( DbCommand cmd = DbAccessManager . DBAccess . CreateCommand ( CommandType . Text , sql ) )
2018-10-19 23:09:52 +08:00
{
2018-10-20 22:25:53 +08:00
cmd . Parameters . Add ( DbAccessManager . DBAccess . CreateParameter ( "@ID" , p . Id ) ) ;
cmd . Parameters . Add ( DbAccessManager . DBAccess . CreateParameter ( "@RoleName" , p . RoleName ) ) ;
cmd . Parameters . Add ( DbAccessManager . DBAccess . CreateParameter ( "@Description" , DbAccessFactory . ToDBValue ( p . Description ) ) ) ;
ret = DbAccessManager . DBAccess . ExecuteNonQuery ( cmd ) = = 1 ;
2018-10-19 23:09:52 +08:00
}
CacheCleanUtility . ClearCache ( roleIds : p . Id = = 0 ? new List < int > ( ) : new List < int > { p . Id } ) ;
return ret ;
}
/// <summary>
/// 查询某个菜单所拥有的角色
/// </summary>
/// <param name="menuId"></param>
/// <returns></returns>
public override IEnumerable < DataAccess . Role > RetrieveRolesByMenuId ( int menuId )
{
string key = string . Format ( "{0}-{1}" , RetrieveRolesByMenuIdDataKey , menuId ) ;
var ret = CacheManager . GetOrAdd ( key , k = >
{
string sql = "select r.ID, r.RoleName, r.[Description], case ur.RoleID when r.ID then 'checked' else '' end [status] from Roles r left join NavigationRole ur on r.ID = ur.RoleID and NavigationID = @NavigationID" ;
List < Role > roles = new List < Role > ( ) ;
2018-10-20 22:25:53 +08:00
DbCommand cmd = DbAccessManager . DBAccess . CreateCommand ( CommandType . Text , sql ) ;
cmd . Parameters . Add ( DbAccessManager . DBAccess . CreateParameter ( "@NavigationID" , menuId ) ) ;
using ( DbDataReader reader = DbAccessManager . DBAccess . ExecuteReader ( cmd ) )
2018-10-19 23:09:52 +08:00
{
while ( reader . Read ( ) )
{
roles . Add ( new Role ( )
{
Id = LgbConvert . ReadValue ( reader [ 0 ] , 0 ) ,
RoleName = ( string ) reader [ 1 ] ,
Description = reader . IsDBNull ( 2 ) ? string . Empty : ( string ) reader [ 2 ] ,
Checked = ( string ) reader [ 3 ]
} ) ;
}
}
return roles ;
} , RetrieveRolesByMenuIdDataKey ) ;
return ret ;
}
/// <summary>
///
/// </summary>
/// <param name="id"></param>
/// <param name="roleIds"></param>
/// <returns></returns>
public override bool SavaRolesByMenuId ( int id , IEnumerable < int > roleIds )
{
var ret = false ;
DataTable dt = new DataTable ( ) ;
dt . Columns . Add ( "NavigationID" , typeof ( int ) ) ;
dt . Columns . Add ( "RoleID" , typeof ( int ) ) ;
//判断用户是否选定角色
roleIds . ToList ( ) . ForEach ( roleId = > dt . Rows . Add ( id , roleId ) ) ;
2018-10-20 22:25:53 +08:00
using ( TransactionPackage transaction = DbAccessManager . DBAccess . BeginTransaction ( ) )
2018-10-19 23:09:52 +08:00
{
try
{
// delete role from config table
string sql = "delete from NavigationRole where NavigationID=@NavigationID;" ;
2018-10-20 22:25:53 +08:00
using ( DbCommand cmd = DbAccessManager . DBAccess . CreateCommand ( CommandType . Text , sql ) )
2018-10-19 23:09:52 +08:00
{
2018-10-20 22:25:53 +08:00
cmd . Parameters . Add ( DbAccessManager . DBAccess . CreateParameter ( "@NavigationID" , id ) ) ;
DbAccessManager . DBAccess . ExecuteNonQuery ( cmd , transaction ) ;
2018-10-19 23:09:52 +08:00
// insert batch data into config table
using ( SqlBulkCopy bulk = new SqlBulkCopy ( ( SqlConnection ) transaction . Transaction . Connection , SqlBulkCopyOptions . Default , ( SqlTransaction ) transaction . Transaction ) )
{
bulk . BatchSize = 1000 ;
bulk . DestinationTableName = "NavigationRole" ;
bulk . ColumnMappings . Add ( "NavigationID" , "NavigationID" ) ;
bulk . ColumnMappings . Add ( "RoleID" , "RoleID" ) ;
bulk . WriteToServer ( dt ) ;
transaction . CommitTransaction ( ) ;
}
}
CacheCleanUtility . ClearCache ( roleIds : roleIds , menuIds : new List < int > ( ) { id } ) ;
ret = true ;
}
catch ( Exception ex )
{
transaction . RollbackTransaction ( ) ;
throw ex ;
}
}
return ret ;
}
/// <summary>
/// 根据GroupId查询和该Group有关的所有Roles
/// </summary>
/// <param name="groupId"></param>
/// <returns></returns>
public override IEnumerable < DataAccess . Role > RetrieveRolesByGroupId ( int groupId )
{
string key = string . Format ( "{0}-{1}" , RetrieveRolesByGroupIdDataKey , groupId ) ;
return CacheManager . GetOrAdd ( key , k = >
{
List < Role > roles = new List < Role > ( ) ;
string sql = "select r.ID, r.RoleName, r.[Description], case ur.RoleID when r.ID then 'checked' else '' end [status] from Roles r left join RoleGroup ur on r.ID = ur.RoleID and GroupID = @GroupID" ;
2018-10-20 22:25:53 +08:00
DbCommand cmd = DbAccessManager . DBAccess . CreateCommand ( CommandType . Text , sql ) ;
cmd . Parameters . Add ( DbAccessManager . DBAccess . CreateParameter ( "@GroupID" , groupId ) ) ;
using ( DbDataReader reader = DbAccessManager . DBAccess . ExecuteReader ( cmd ) )
2018-10-19 23:09:52 +08:00
{
while ( reader . Read ( ) )
{
roles . Add ( new Role ( )
{
Id = LgbConvert . ReadValue ( reader [ 0 ] , 0 ) ,
RoleName = ( string ) reader [ 1 ] ,
Description = reader . IsDBNull ( 2 ) ? string . Empty : ( string ) reader [ 2 ] ,
Checked = ( string ) reader [ 3 ]
} ) ;
}
}
return roles ;
} , RetrieveRolesByGroupIdDataKey ) ;
}
/// <summary>
/// 根据GroupId更新Roles信息, 删除旧的Roles信息, 插入新的Roles信息
/// </summary>
/// <param name="id"></param>
/// <param name="roleIds"></param>
/// <returns></returns>
public override bool SaveRolesByGroupId ( int id , IEnumerable < int > roleIds )
{
var ret = false ;
//构造表格
DataTable dt = new DataTable ( ) ;
dt . Columns . Add ( "RoleID" , typeof ( int ) ) ;
dt . Columns . Add ( "GroupID" , typeof ( int ) ) ;
roleIds . ToList ( ) . ForEach ( roleId = > dt . Rows . Add ( roleId , id ) ) ;
2018-10-20 22:25:53 +08:00
using ( TransactionPackage transaction = DbAccessManager . DBAccess . BeginTransaction ( ) )
2018-10-19 23:09:52 +08:00
{
try
{
// delete user from config table
string sql = "delete from RoleGroup where GroupID=@GroupID" ;
2018-10-20 22:25:53 +08:00
using ( DbCommand cmd = DbAccessManager . DBAccess . CreateCommand ( CommandType . Text , sql ) )
2018-10-19 23:09:52 +08:00
{
2018-10-20 22:25:53 +08:00
cmd . Parameters . Add ( DbAccessManager . DBAccess . CreateParameter ( "@GroupID" , id ) ) ;
DbAccessManager . DBAccess . ExecuteNonQuery ( cmd , transaction ) ;
2018-10-19 23:09:52 +08:00
// insert batch data into config table
using ( SqlBulkCopy bulk = new SqlBulkCopy ( ( SqlConnection ) transaction . Transaction . Connection , SqlBulkCopyOptions . Default , ( SqlTransaction ) transaction . Transaction ) )
{
bulk . BatchSize = 1000 ;
bulk . DestinationTableName = "RoleGroup" ;
bulk . ColumnMappings . Add ( "RoleID" , "RoleID" ) ;
bulk . ColumnMappings . Add ( "GroupID" , "GroupID" ) ;
bulk . WriteToServer ( dt ) ;
transaction . CommitTransaction ( ) ;
}
}
CacheCleanUtility . ClearCache ( roleIds : roleIds , groupIds : new List < int > ( ) { id } ) ;
ret = true ;
}
catch ( Exception ex )
{
transaction . RollbackTransaction ( ) ;
throw ex ;
}
}
return ret ;
}
}
2016-10-25 18:47:33 +08:00
}