2016-10-22 16:58:31 +08:00
using Longbow.Caching ;
using Longbow.Caching.Configuration ;
2016-10-28 21:46:48 +08:00
using Longbow.Data ;
2016-10-22 16:58:31 +08:00
using Longbow.ExceptionManagement ;
using System ;
using System.Collections.Generic ;
using System.Data ;
using System.Data.Common ;
2016-10-28 21:46:48 +08:00
using System.Data.SqlClient ;
2016-10-22 16:58:31 +08:00
using System.Globalization ;
using System.Linq ;
namespace Bootstrap.DataAccess
{
/// <summary>
/// author:liuchun
/// date:2016.10.22
/// </summary>
public static class GroupHelper
{
private const string GroupDataKey = "GroupData-CodeGroupHelper" ;
2016-10-28 21:46:48 +08:00
private const string GroupUserIDDataKey = "GroupData-CodeGroupHelper-" ;
2016-10-31 15:55:31 +08:00
private const string GroupRoleIDDataKey = "GroupData-CodeGroupHelper-Role-" ;
2016-10-22 16:58:31 +08:00
/// <summary>
/// 查询所有群组信息
/// </summary>
/// <param name="tId"></param>
/// <returns></returns>
public static IEnumerable < Group > RetrieveGroups ( string tId = null )
{
string sql = "select * from Groups" ;
var ret = CacheManager . GetOrAdd ( GroupDataKey , CacheSection . RetrieveIntervalByKey ( GroupDataKey ) , key = >
{
List < Group > Groups = new List < Group > ( ) ;
DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) ;
try
{
using ( DbDataReader reader = DBAccessManager . SqlDBAccess . ExecuteReader ( cmd ) )
{
while ( reader . Read ( ) )
{
Groups . Add ( new Group ( )
{
ID = ( int ) reader [ 0 ] ,
GroupName = ( string ) reader [ 1 ] ,
Description = ( string ) reader [ 2 ]
} ) ;
}
}
}
catch ( Exception ex ) { ExceptionManager . Publish ( ex ) ; }
return Groups ;
} , CacheSection . RetrieveDescByKey ( GroupDataKey ) ) ;
return string . IsNullOrEmpty ( tId ) ? ret : ret . Where ( t = > tId . Equals ( t . ID . ToString ( ) , StringComparison . OrdinalIgnoreCase ) ) ;
}
/// <summary>
/// 删除群组信息
/// </summary>
/// <param name="ids"></param>
2016-10-24 20:53:05 +08:00
public static bool DeleteGroup ( string ids )
2016-10-22 16:58:31 +08:00
{
2016-10-24 20:53:05 +08:00
var ret = false ;
if ( string . IsNullOrEmpty ( ids ) | | ids . Contains ( "'" ) ) return ret ;
try
{
string sql = string . Format ( CultureInfo . InvariantCulture , "Delete from Groups where ID in ({0})" , ids ) ;
using ( DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) )
{
DBAccessManager . SqlDBAccess . ExecuteNonQuery ( cmd ) ;
ClearCache ( ) ;
ret = true ;
}
}
catch ( Exception ex )
2016-10-22 16:58:31 +08:00
{
2016-10-24 20:53:05 +08:00
ExceptionManager . Publish ( ex ) ;
2016-10-22 16:58:31 +08:00
}
2016-10-24 20:53:05 +08:00
return ret ;
2016-10-22 16:58:31 +08:00
}
/// <summary>
/// 保存新建/更新的群组信息
/// </summary>
/// <param name="p"></param>
/// <returns></returns>
public static bool SaveGroup ( Group p )
{
if ( p = = null ) throw new ArgumentNullException ( "p" ) ;
bool ret = false ;
if ( p . GroupName . Length > 50 ) p . GroupName . Substring ( 0 , 50 ) ;
if ( p . Description . Length > 500 ) p . Description . Substring ( 0 , 500 ) ;
string sql = p . ID = = 0 ?
"Insert Into Groups (GroupName, Description) Values (@GroupName, @Description)" :
"Update Groups set GroupName = @GroupName, 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 ( "@GroupName" , p . GroupName , 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 21:46:48 +08:00
/// <summary>
/// 根据用户查询部门信息
/// </summary>
/// <param name="userId"></param>
/// <returns></returns>
public static IEnumerable < Group > RetrieveGroupsByUserId ( int userId )
{
string sql = "select g.ID,g.GroupName,g.[Description],case ug.GroupID when g.ID then 'checked' else '' end [status] from Groups g left join UserGroup ug on g.ID=ug.GroupID and UserID=@UserID" ;
string k = string . Format ( "{0}{1}" , GroupUserIDDataKey , userId ) ;
var ret = CacheManager . GetOrAdd ( k , CacheSection . RetrieveIntervalByKey ( GroupUserIDDataKey ) , key = >
{
List < Group > Groups = new List < Group > ( ) ;
DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) ;
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@UserID" , userId , ParameterDirection . Input ) ) ;
try
{
using ( DbDataReader reader = DBAccessManager . SqlDBAccess . ExecuteReader ( cmd ) )
{
while ( reader . Read ( ) )
{
Groups . Add ( new Group ( )
{
ID = ( int ) reader [ 0 ] ,
GroupName = ( string ) reader [ 1 ] ,
Description = ( string ) reader [ 2 ] ,
Checked = ( string ) reader [ 3 ]
} ) ;
}
}
}
catch ( Exception ex ) { ExceptionManager . Publish ( ex ) ; }
return Groups ;
} , CacheSection . RetrieveDescByKey ( GroupUserIDDataKey ) ) ;
return ret ;
}
/// <summary>
/// 保存用户部门关系
/// </summary>
/// <param name="id"></param>
/// <param name="value"></param>
/// <returns></returns>
2016-10-31 15:55:31 +08:00
public static bool SaveGroupsByUserId ( int id , string groupIds )
2016-10-28 21:46:48 +08:00
{
2016-10-31 15:55:31 +08:00
var ret = false ;
2016-10-28 21:46:48 +08:00
DataTable dt = new DataTable ( ) ;
dt . Columns . Add ( "UserID" , typeof ( int ) ) ;
dt . Columns . Add ( "GroupID" , typeof ( int ) ) ;
//判断用户是否选定角色
2016-11-02 12:12:34 +08:00
if ( ! string . IsNullOrEmpty ( groupIds ) ) groupIds . Split ( ',' ) . ToList ( ) . ForEach ( groupId = > dt . Rows . Add ( id , groupId ) ) ;
2016-10-31 15:55:31 +08:00
using ( TransactionPackage transaction = DBAccessManager . SqlDBAccess . BeginTransaction ( ) )
2016-10-28 21:46:48 +08:00
{
2016-10-31 15:55:31 +08:00
try
2016-10-28 21:46:48 +08:00
{
2016-10-31 15:55:31 +08:00
//删除用户部门表中该用户所有的部门关系
string sql = "delete from UserGroup where UserID=@UserID;" ;
using ( DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) )
2016-10-28 21:46:48 +08:00
{
2016-10-31 15:55:31 +08:00
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@UserID" , id , ParameterDirection . Input ) ) ;
DBAccessManager . SqlDBAccess . ExecuteNonQuery ( cmd , transaction ) ;
2016-10-28 21:46:48 +08:00
2016-10-31 15:55:31 +08:00
// insert batch data into config table
using ( SqlBulkCopy bulk = new SqlBulkCopy ( ( SqlConnection ) transaction . Transaction . Connection , SqlBulkCopyOptions . Default , ( SqlTransaction ) transaction . Transaction ) )
2016-10-28 21:46:48 +08:00
{
2016-10-31 15:55:31 +08:00
bulk . BatchSize = 1000 ;
bulk . DestinationTableName = "UserGroup" ;
bulk . ColumnMappings . Add ( "UserID" , "UserID" ) ;
bulk . ColumnMappings . Add ( "GroupID" , "GroupID" ) ;
2016-10-28 21:46:48 +08:00
bulk . WriteToServer ( dt ) ;
transaction . CommitTransaction ( ) ;
}
}
2016-10-31 15:55:31 +08:00
ret = true ;
ClearCache ( ) ;
}
catch ( Exception ex )
{
ExceptionManager . Publish ( ex ) ;
transaction . RollbackTransaction ( ) ;
2016-10-28 21:46:48 +08:00
}
}
2016-10-31 15:55:31 +08:00
return ret ;
2016-10-28 21:46:48 +08:00
}
2016-10-22 16:58:31 +08:00
// 更新缓存
2016-10-31 15:55:31 +08:00
private static void ClearCache ( string cacheKey = null )
2016-10-22 16:58:31 +08:00
{
2016-10-31 15:55:31 +08:00
CacheManager . Clear ( key = > string . IsNullOrEmpty ( cacheKey ) | | key = = cacheKey ) ;
2016-10-29 09:24:55 +08:00
}
2016-10-31 15:55:31 +08:00
/// <summary>
2016-10-29 09:24:55 +08:00
/// 根据角色ID指派部门
/// </summary>
/// <param name="roleId"></param>
/// <returns></returns>
public static IEnumerable < Group > RetrieveGroupsByRoleId ( int roleId )
{
string k = string . Format ( "{0}{1}" , GroupRoleIDDataKey , roleId ) ;
return CacheManager . GetOrAdd ( k , CacheSection . RetrieveIntervalByKey ( GroupRoleIDDataKey ) , key = >
{
List < Group > Groups = new List < Group > ( ) ;
string sql = "select g.ID,g.GroupName,g.[Description],case rg.GroupID when g.ID then 'checked' else '' end [status] from Groups g left join RoleGroup rg on g.ID=rg.GroupID and RoleID=@RoleID" ;
DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) ;
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@RoleID" , roleId , ParameterDirection . Input ) ) ;
try
{
using ( DbDataReader reader = DBAccessManager . SqlDBAccess . ExecuteReader ( cmd ) )
{
while ( reader . Read ( ) )
{
Groups . Add ( new Group ( )
{
2016-10-31 15:55:31 +08:00
ID = ( int ) reader [ 0 ] ,
GroupName = ( string ) reader [ 1 ] ,
Description = ( string ) reader [ 2 ] ,
2016-10-29 09:24:55 +08:00
Checked = ( string ) reader [ 3 ]
} ) ;
}
}
}
catch ( Exception ex ) { ExceptionManager . Publish ( ex ) ; }
return Groups ;
2016-10-31 15:55:31 +08:00
} , CacheSection . RetrieveDescByKey ( GroupRoleIDDataKey ) ) ;
2016-10-29 09:24:55 +08:00
}
/// <summary>
/// 根据角色ID以及选定的部门ID, 保到角色部门表
/// </summary>
/// <param name="roleId"></param>
/// <param name="value"></param>
/// <returns></returns>
public static bool SaveGroupsByRoleId ( int id , string groupIds )
{
bool ret = false ;
DataTable dt = new DataTable ( ) ;
dt . Columns . Add ( "GroupID" , typeof ( int ) ) ;
dt . Columns . Add ( "RoleID" , typeof ( int ) ) ;
2016-11-02 12:12:34 +08:00
if ( ! string . IsNullOrEmpty ( groupIds ) ) groupIds . Split ( ',' ) . ToList ( ) . ForEach ( groupId = > dt . Rows . Add ( groupId , id ) ) ;
2016-10-31 15:55:31 +08:00
using ( TransactionPackage transaction = DBAccessManager . SqlDBAccess . BeginTransaction ( ) )
{
2016-10-29 09:24:55 +08:00
try
{
//删除角色部门表该角色所有的部门
string sql = "delete from RoleGroup where RoleID=@RoleID" ;
2016-10-31 15:55:31 +08:00
using ( DbCommand cmd = DBAccessManager . SqlDBAccess . CreateCommand ( CommandType . Text , sql ) )
2016-10-29 09:24:55 +08:00
{
cmd . Parameters . Add ( DBAccessManager . SqlDBAccess . CreateParameter ( "@RoleID" , id , ParameterDirection . Input ) ) ;
DBAccessManager . SqlDBAccess . ExecuteNonQuery ( cmd , transaction ) ;
//批插入角色部门表
using ( SqlBulkCopy bulk = new SqlBulkCopy ( ( SqlConnection ) transaction . Transaction . Connection , SqlBulkCopyOptions . Default , ( SqlTransaction ) transaction . Transaction ) )
{
2016-10-31 15:55:31 +08:00
bulk . BatchSize = 1000 ;
bulk . ColumnMappings . Add ( "GroupID" , "GroupID" ) ;
bulk . ColumnMappings . Add ( "RoleID" , "RoleID" ) ;
2016-10-29 09:24:55 +08:00
bulk . DestinationTableName = "RoleGroup" ;
bulk . WriteToServer ( dt ) ;
transaction . CommitTransaction ( ) ;
}
}
ret = true ;
ClearCache ( ) ;
}
2016-10-31 15:55:31 +08:00
catch ( Exception ex )
{
2016-10-29 09:24:55 +08:00
ExceptionManager . Publish ( ex ) ;
transaction . RollbackTransaction ( ) ;
}
}
return ret ;
2016-10-22 16:58:31 +08:00
}
}
}