2016-10-25 18:47:33 +08:00
using Longbow ;
using Longbow.Caching ;
using Longbow.Caching.Configuration ;
2016-10-26 21:32:54 +08:00
using Longbow.Data ;
2016-10-25 18:47:33 +08:00
using Longbow.ExceptionManagement ;
using System ;
using System.Collections.Generic ;
using System.Data ;
using System.Data.Common ;
2016-10-26 21:32:54 +08:00
using System.Data.SqlClient ;
2016-10-25 18:47:33 +08:00
using System.Globalization ;
using System.Linq ;
namespace Bootstrap.DataAccess
{
2016-10-28 13:36:43 +08:00
/// <summary>
///
/// </summary>
2016-10-25 18:47:33 +08:00
public class RoleHelper
{
private const string RoleDataKey = "RoleData-CodeRoleHelper" ;
2016-10-26 21:32:54 +08:00
private const string RoleUserIDDataKey = "RoleData-CodeRoleHelper-" ;
2016-10-28 14:45:09 +08:00
private const string RoleNavigationIDDataKey = "RoleData-CodeRoleHelper-Navigation-" ;
2016-10-25 18:47:33 +08:00
/// <summary>
/// 查询所有角色
/// </summary>
/// <param name="tId"></param>
/// <returns></returns>
public static IEnumerable < Role > RetrieveRoles ( string tId = null )
{
string sql = "select * from Roles" ;
var ret = CacheManager . GetOrAdd ( RoleDataKey , CacheSection . RetrieveIntervalByKey ( RoleDataKey ) , key = >
{
List < Role > roles = new List < Role > ( ) ;
DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) ;
try
{
using ( DbDataReader reader = DBAccessManager . SqlDBAccess . ExecuteReader ( cmd ) )
{
while ( reader . Read ( ) )
{
roles . Add ( new Role ( )
{
ID = ( int ) reader [ 0 ] ,
RoleName = LgbConvert . ReadValue ( reader [ 1 ] , string . Empty ) ,
Description = LgbConvert . ReadValue ( reader [ 2 ] , string . Empty )
} ) ;
}
}
}
catch ( Exception ex ) { ExceptionManager . Publish ( ex ) ; }
return roles ;
} , CacheSection . RetrieveDescByKey ( RoleDataKey ) ) ;
return string . IsNullOrEmpty ( tId ) ? ret : ret . Where ( t = > tId . Equals ( t . ID . ToString ( ) , StringComparison . OrdinalIgnoreCase ) ) ;
}
/// <summary>
2016-10-26 21:32:54 +08:00
/// 保存用户角色关系
2016-10-25 18:47:33 +08:00
/// </summary>
/// <param name="id"></param>
2016-10-28 13:36:43 +08:00
/// <param name="roleIds"></param>
2016-10-25 18:47:33 +08:00
/// <returns></returns>
2016-10-28 13:36:43 +08:00
public static bool SaveRolesByUserId ( int id , string roleIds )
2016-10-25 18:47:33 +08:00
{
2016-10-28 13:36:43 +08:00
var ret = false ;
2016-10-26 21:32:54 +08:00
DataTable dt = new DataTable ( ) ;
dt . Columns . Add ( "UserID" , typeof ( int ) ) ;
dt . Columns . Add ( "RoleID" , typeof ( int ) ) ;
//判断用户是否选定角色
2016-10-28 13:36:43 +08:00
if ( ! string . IsNullOrEmpty ( roleIds ) )
2016-10-26 21:32:54 +08:00
{
2016-10-28 13:36:43 +08:00
roleIds . Split ( ',' ) . ToList ( ) . ForEach ( roleId = >
2016-10-26 21:32:54 +08:00
{
DataRow row = dt . NewRow ( ) ;
2016-10-28 13:36:43 +08:00
dt . Rows . Add ( id , roleId ) ;
} ) ;
2016-10-26 21:32:54 +08:00
}
2016-10-28 13:36:43 +08:00
using ( TransactionPackage transaction = DBAccessManager . SqlDBAccess . BeginTransaction ( ) )
2016-10-26 21:32:54 +08:00
{
2016-10-28 13:36:43 +08:00
try
2016-10-26 21:32:54 +08:00
{
2016-10-28 13:36:43 +08:00
// delete user from config table
string sql = "delete from UserRole where UserID = @UserID;" ;
using ( DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) )
2016-10-26 21:32:54 +08:00
{
2016-10-28 13:36:43 +08:00
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@UserID" , id , ParameterDirection . Input ) ) ;
DBAccessManager . SqlDBAccess . ExecuteNonQuery ( cmd , transaction ) ;
2016-10-25 18:47:33 +08:00
2016-10-28 13:36:43 +08:00
// insert batch data into config table
using ( SqlBulkCopy bulk = new SqlBulkCopy ( ( SqlConnection ) transaction . Transaction . Connection , SqlBulkCopyOptions . Default , ( SqlTransaction ) transaction . Transaction ) )
2016-10-26 21:32:54 +08:00
{
2016-10-28 13:36:43 +08:00
bulk . BatchSize = 1000 ;
bulk . DestinationTableName = "UserRole" ;
bulk . ColumnMappings . Add ( "UserID" , "UserID" ) ;
bulk . ColumnMappings . Add ( "RoleID" , "RoleID" ) ;
2016-10-26 21:32:54 +08:00
bulk . WriteToServer ( dt ) ;
transaction . CommitTransaction ( ) ;
}
}
2016-10-28 13:36:43 +08:00
ret = true ;
ClearCache ( ) ;
}
catch ( Exception ex )
{
ExceptionManager . Publish ( ex ) ;
transaction . RollbackTransaction ( ) ;
2016-10-26 21:32:54 +08:00
}
}
2016-10-28 13:36:43 +08:00
return ret ;
}
2016-10-29 09:24:55 +08:00
2016-10-25 18:47:33 +08:00
/// <summary>
2016-10-26 21:32:54 +08:00
/// 查询某个用户所拥有的角色
2016-10-25 18:47:33 +08:00
/// </summary>
/// <returns></returns>
2016-10-28 13:36:43 +08:00
public static IEnumerable < Role > RetrieveRolesByUserId ( int userId )
2016-10-25 18:47:33 +08:00
{
2016-10-26 21:32:54 +08:00
string k = string . Format ( "{0}{1}" , RoleUserIDDataKey , userId ) ;
2016-10-28 13:36:43 +08:00
return CacheManager . GetOrAdd ( k , CacheSection . RetrieveIntervalByKey ( RoleUserIDDataKey ) , key = >
2016-10-26 21:32:54 +08:00
{
List < Role > Roles = new List < Role > ( ) ;
2016-10-28 13:36:43 +08:00
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" ;
2016-10-26 21:32:54 +08:00
try
{
2016-10-28 13:36:43 +08:00
DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) ;
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@UserID" , userId , ParameterDirection . Input ) ) ;
2016-10-26 21:32:54 +08:00
using ( DbDataReader reader = DBAccessManager . SqlDBAccess . ExecuteReader ( cmd ) )
{
while ( reader . Read ( ) )
{
Roles . Add ( new Role ( )
{
ID = ( int ) reader [ 0 ] ,
RoleName = ( string ) reader [ 1 ] ,
Description = ( string ) reader [ 2 ] ,
2016-10-28 13:36:43 +08:00
Checked = ( string ) reader [ 3 ]
2016-10-26 21:32:54 +08:00
} ) ;
}
}
}
catch ( Exception ex ) { ExceptionManager . Publish ( ex ) ; }
return Roles ;
} , CacheSection . RetrieveDescByKey ( RoleUserIDDataKey ) ) ;
2016-10-28 13:36:43 +08:00
}
2016-10-29 09:24:55 +08:00
2016-10-25 18:47:33 +08:00
/// <summary>
/// 删除角色表
/// </summary>
/// <param name="IDs"></param>
public static bool DeleteRole ( string IDs )
{
bool ret = false ;
if ( string . IsNullOrEmpty ( IDs ) | | IDs . Contains ( "'" ) ) return ret ;
try
{
string sql = string . Format ( CultureInfo . InvariantCulture , "Delete from Roles where ID in ({0})" , IDs ) ;
using ( DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) )
{
DBAccessManager . SqlDBAccess . ExecuteNonQuery ( cmd ) ;
ClearCache ( ) ;
ret = true ;
}
}
catch ( Exception ex )
{
ExceptionManager . Publish ( ex ) ;
}
return ret ;
}
/// <summary>
/// 保存新建/更新的角色信息
/// </summary>
/// <param name="p"></param>
/// <returns></returns>
public static bool SaveRole ( Role p )
{
if ( p = = null ) throw new ArgumentNullException ( "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" ;
try
{
using ( DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) )
{
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@ID" , p . ID , ParameterDirection . Input ) ) ;
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@RoleName" , p . RoleName , ParameterDirection . Input ) ) ;
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@Description" , p . Description , ParameterDirection . Input ) ) ;
DBAccessManager . SqlDBAccess . ExecuteNonQuery ( cmd ) ;
}
ret = true ;
ClearCache ( ) ;
}
catch ( DbException ex )
{
ExceptionManager . Publish ( ex ) ;
}
return ret ;
}
2016-10-28 11:12:25 +08:00
/// <summary>
/// 查询某个菜单所拥有的角色
/// </summary>
/// <param name="menuId"></param>
/// <returns></returns>
2016-10-28 14:45:09 +08:00
public static IEnumerable < Role > RetrieveRolesByMenuId ( int menuId )
2016-10-28 11:12:25 +08:00
{
string k = string . Format ( "{0}{1}" , RoleNavigationIDDataKey , menuId ) ;
2016-10-28 14:45:09 +08:00
return CacheManager . GetOrAdd ( k , CacheSection . RetrieveIntervalByKey ( RoleUserIDDataKey ) , key = >
2016-10-28 11:12:25 +08:00
{
List < Role > Roles = new List < Role > ( ) ;
2016-10-28 14:45:09 +08:00
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" ;
2016-10-28 11:12:25 +08:00
try
{
2016-10-28 14:45:09 +08:00
DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) ;
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@NavigationID" , menuId , ParameterDirection . Input ) ) ;
2016-10-28 11:12:25 +08:00
using ( DbDataReader reader = DBAccessManager . SqlDBAccess . ExecuteReader ( cmd ) )
{
while ( reader . Read ( ) )
{
Roles . Add ( new Role ( )
{
ID = ( int ) reader [ 0 ] ,
RoleName = ( string ) reader [ 1 ] ,
Description = ( string ) reader [ 2 ] ,
2016-10-28 14:45:09 +08:00
Checked = ( string ) reader [ 3 ]
2016-10-28 11:12:25 +08:00
} ) ;
}
}
}
catch ( Exception ex ) { ExceptionManager . Publish ( ex ) ; }
return Roles ;
2016-10-28 14:45:09 +08:00
} , CacheSection . RetrieveDescByKey ( RoleUserIDDataKey ) ) ;
2016-10-28 11:12:25 +08:00
}
/// <summary>
/// 保存菜单角色关系
/// </summary>
/// <param name="id"></param>
/// <param name="value"></param>
/// <returns></returns>
public static bool SavaRolesByMenuId ( int id , string value )
{
DataTable dt = new DataTable ( ) ;
dt . Columns . Add ( "NavigationID" , typeof ( int ) ) ;
dt . Columns . Add ( "RoleID" , typeof ( int ) ) ;
//判断用户是否选定角色
if ( ! string . IsNullOrEmpty ( value ) )
{
string [ ] roleIDs = value . Split ( ',' ) ;
foreach ( string roleID in roleIDs )
{
DataRow row = dt . NewRow ( ) ;
row [ "NavigationID" ] = id ;
row [ "RoleID" ] = roleID ;
dt . Rows . Add ( row ) ;
}
}
string sql = "delete from NavigationRole where NavigationID=@NavigationID;" ;
using ( DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) )
{
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@NavigationID" , id , ParameterDirection . Input ) ) ;
using ( TransactionPackage transaction = DBAccessManager . SqlDBAccess . BeginTransaction ( ) )
{
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" ) ;
bool ret = true ;
try
{
DBAccessManager . SqlDBAccess . ExecuteNonQuery ( cmd , transaction ) ;
bulk . WriteToServer ( dt ) ;
transaction . CommitTransaction ( ) ;
ClearCache ( ) ;
}
catch ( Exception ex )
{
ret = false ;
transaction . RollbackTransaction ( ) ;
}
return ret ;
}
}
}
}
2016-10-25 18:47:33 +08:00
// 更新缓存
2016-10-28 13:36:43 +08:00
private static void ClearCache ( string cacheKey = null )
2016-10-25 18:47:33 +08:00
{
2016-10-28 13:36:43 +08:00
CacheManager . Clear ( key = > string . IsNullOrEmpty ( cacheKey ) | | key = = cacheKey ) ;
2016-10-25 18:47:33 +08:00
}
}
}