|
@@ -9,6 +9,8 @@ using GxPress.Result.Web;
|
|
|
using Microsoft.Extensions.Caching.Distributed;
|
|
|
using Microsoft.Extensions.Options;
|
|
|
using System.Transactions;
|
|
|
+using Dapper;
|
|
|
+
|
|
|
namespace GxPress.Repository.Implement.Group
|
|
|
{
|
|
|
/// <summary>
|
|
@@ -17,15 +19,21 @@ namespace GxPress.Repository.Implement.Group
|
|
|
public class GroupCategroyRepository : IGroupCategroyRepository
|
|
|
{
|
|
|
private readonly Repository<Entity.tede2.Group.GroupCategroy> _repository;
|
|
|
+ private readonly Repository<Entity.tede2.Group.UserGroupCategory> userGroupCategoryRepository;
|
|
|
private readonly IMapper _mapper;
|
|
|
private readonly IDistributedCache _cache;
|
|
|
+ private readonly string _connectionString;
|
|
|
+ private readonly string _databaseTypestr;
|
|
|
public GroupCategroyRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper, IDistributedCache cache)
|
|
|
{
|
|
|
+ _databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
|
|
|
+ _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
|
|
|
_mapper = mapper;
|
|
|
_cache = cache;
|
|
|
_repository = new Repository<Entity.tede2.Group.GroupCategroy>(database);
|
|
|
+ userGroupCategoryRepository = new Repository<Entity.tede2.Group.UserGroupCategory>(database);
|
|
|
}
|
|
|
|
|
|
public IDatabase Database => _repository.Database;
|
|
@@ -43,6 +51,7 @@ namespace GxPress.Repository.Implement.Group
|
|
|
return await _repository.InsertAsync(groupCategroy);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
public async Task<bool> UpdateAsync(Entity.tede2.Group.GroupCategroy groupCategroy)
|
|
|
{
|
|
|
if (groupCategroy.Id > 0)
|
|
@@ -89,10 +98,32 @@ namespace GxPress.Repository.Implement.Group
|
|
|
{
|
|
|
var result = await _repository.GetAllAsync<GroupCategoryResult>(Q.Where(nameof(Entity.tede2.Group.GroupCategroy.ParentId), parentId));
|
|
|
foreach (var item in result)
|
|
|
+ {
|
|
|
item.IsChildren = await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.Group.GroupCategroy.ParentId), item.Id));
|
|
|
+ item.ImageUrls = StringUtils.AddDomain(item.ImageUrls);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ public async Task<IEnumerable<GroupCategoryResult>> GetUserGroupCategroyResult(int userId)
|
|
|
+ {
|
|
|
+ string sql = $@"SELECT
|
|
|
+ a.*
|
|
|
+ FROM
|
|
|
+ tede_group_piazza a
|
|
|
+ INNER JOIN
|
|
|
+ tede_user_group_category b ON a.id = b.GroupCategroyId
|
|
|
+ WHERE
|
|
|
+ b.UserId = {userId}
|
|
|
+ ORDER BY b.CreatedDate";
|
|
|
+ var databaseType = _databaseTypestr.ToEnum<DatabaseType>(DatabaseType.MySql);
|
|
|
+ var database = new Database(databaseType, _connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ var result = await connection.QueryAsync<GroupCategoryResult>(sql);
|
|
|
foreach (var item in result)
|
|
|
{
|
|
|
- item.ImageUrls = StringUtils.AddDomain(item.ImageUrls);
|
|
|
+ item.ImageUrls = StringUtils.AddDomainMin(item.ImageUrls);
|
|
|
+ item.IsChildren = await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.Group.GroupCategroy.ParentId), item.Id));
|
|
|
}
|
|
|
return result;
|
|
|
}
|