|
@@ -217,7 +217,7 @@ namespace GxPress.Repository.Implement
|
|
|
var topicConst = AllTypeConst.Topic.GetHashCode();
|
|
|
var result = new PagedList<TopicListPageResult>();
|
|
|
var sqlStr = "";
|
|
|
- if (request.GroupId == 0)
|
|
|
+ if (request.GroupIds.Count() == 0)
|
|
|
{
|
|
|
sqlStr += $@" AND a.GroupId IN (SELECT
|
|
|
GroupId
|
|
@@ -226,14 +226,33 @@ namespace GxPress.Repository.Implement
|
|
|
WHERE
|
|
|
UserId ={request.UserId})";
|
|
|
}
|
|
|
- if (request.GroupId > 0)
|
|
|
+ if (request.GroupIds.Count > 0)
|
|
|
{
|
|
|
- sqlStr += $@" AND a.GroupId IN (SELECT
|
|
|
+ var groupIds = new List<int>();
|
|
|
+ foreach (var item in request.GroupIds)
|
|
|
+ {
|
|
|
+ if (item > 0)
|
|
|
+ groupIds.Add(item);
|
|
|
+ //全网
|
|
|
+ if (item == -1)
|
|
|
+ groupIds.AddRange(await GetPublicGroupAsync());
|
|
|
+ //我的小组
|
|
|
+ if (item == -2)
|
|
|
+ groupIds.AddRange(await GetIntoGroupAsync(request.UserId));
|
|
|
+ }
|
|
|
+ var groupIdStr = string.Empty;
|
|
|
+ foreach (var item in groupIds)
|
|
|
+ groupIdStr += $"{item},";
|
|
|
+ if (!string.IsNullOrEmpty(groupIdStr))
|
|
|
+ {
|
|
|
+ groupIdStr = groupIdStr.Remove(groupIdStr.Length - 1, 1);
|
|
|
+ sqlStr += $@" AND a.GroupId IN (SELECT
|
|
|
GroupId
|
|
|
FROM
|
|
|
tede_group_user
|
|
|
WHERE
|
|
|
- UserId ={request.UserId} AND GroupId = {request.GroupId} )";
|
|
|
+ UserId ={request.UserId} AND GroupId In ({groupIdStr}))";
|
|
|
+ }
|
|
|
}
|
|
|
if (!string.IsNullOrEmpty(request.Key))
|
|
|
{
|
|
@@ -352,7 +371,32 @@ namespace GxPress.Repository.Implement
|
|
|
result.Total = await connection.ExecuteScalarAsync<int>(countSql);
|
|
|
return result;
|
|
|
}
|
|
|
-
|
|
|
+ /// <summary>
|
|
|
+ /// 获取共享小组
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<IEnumerable<int>> GetPublicGroupAsync()
|
|
|
+ {
|
|
|
+ string sql = @"select Id from tede_group where IsShow=1";
|
|
|
+ var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
+ var database = new Database(databaseType, _connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ var result = await connection.QueryAsync<int>(sql);
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 我加入的小组
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="userId"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<IEnumerable<int>> GetIntoGroupAsync(int userId)
|
|
|
+ {
|
|
|
+ string sql = $"select a.Id from tede_group a inner join tede_group_user b on a.Id=b.GroupId where b.UserId={userId}";
|
|
|
+ var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
+ var database = new Database(databaseType, _connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ return await connection.QueryAsync<int>(sql);
|
|
|
+ }
|
|
|
/// <summary>
|
|
|
/// 根据小组ID获取话题数量
|
|
|
/// </summary>
|