using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Transactions;
using AutoMapper;
using GxPress.Common.Tools;
using GxPress.Entity.Topic;
using GxPress.Repository.Interface;
using GxPress.Request.App.Topic;
using GxPress.Service.Interface.Topic;
using Datory;
using GxPress.Common.Exceptions;
using GxPress.Common.Page;
using GxPress.Repository.Interface.Topic;
using GxPress.Result;
using GxPress.Result.App.Topic;
using GxPress.Service.Interface.Note;
using Newtonsoft.Json;
using GxPress.Repository.Interface.Visit;
using GxPress.Service.Interface.Visit;
using GxPress.Service.Interface.Analyze;
using GxPress.Repository.Interface.DepartmentUser;
using GxPress.EnumConst;
using GxPress.Repository.Interface.Note;
using GxPress.Result.Department;
namespace GxPress.Service.Implement.Topic
{
public partial class TopicService : ITopicService
{
private readonly ITopicRepository _topicRepository;
private readonly IUserRepository _userRepository;
private readonly IDepartmentUserRepository departmentUserRepository;
private readonly ITopicAddresseeRepository _topicAddresseeRepository;
private readonly IDepartmentRepository _departmentRepository;
private readonly ITopicGroupRepository _topicGroupRepository;
private readonly ITopicGroupUserRepository _topicGroupUserRepository;
private readonly IAnalyzeService _analyzeService;
private readonly ICommentRepository _commentRepository;
private readonly IMapper _mapper;
private readonly IGroupUserRepository _groupUserRepository;
private readonly IFolderUserRepository _folderUserRepository;
private readonly INoteService _noteService;
private readonly IMiddleRepository _middleRepository;
private readonly IVisitRepository _visitRepository;
private readonly IVisitService _visitService;
private readonly INoteRepository noteRepository;
private readonly IGroupRepository groupRepository;
public TopicService(ITopicRepository topicRepository, IUserRepository userRepository,
ITopicAddresseeRepository topicAddresseeRepository,
ITopicGroupRepository topicGroupRepository,
ITopicGroupUserRepository topicGroupUserRepository, IAnalyzeService analyzeService,
ICommentRepository commentRepository, IMapper mapper, IDepartmentRepository departmentRepository,
IGroupUserRepository groupUserRepository, IFolderUserRepository folderUserRepository,
INoteService noteService, IMiddleRepository middleRepository,
IVisitRepository visitRepository, IVisitService visitService,
IDepartmentUserRepository departmentUserRepository,
INoteRepository noteRepository,
IGroupRepository groupRepository)
{
_topicRepository = topicRepository;
_userRepository = userRepository;
_topicAddresseeRepository = topicAddresseeRepository;
_topicGroupRepository = topicGroupRepository;
_topicGroupUserRepository = topicGroupUserRepository;
_analyzeService = analyzeService;
_commentRepository = commentRepository;
_departmentRepository = departmentRepository;
_mapper = mapper;
_groupUserRepository = groupUserRepository;
_folderUserRepository = folderUserRepository;
_noteService = noteService;
_middleRepository = middleRepository;
_visitRepository = visitRepository;
_visitService = visitService;
this.departmentUserRepository = departmentUserRepository;
this.noteRepository = noteRepository;
this.groupRepository = groupRepository;
}
///
/// 根据GroupId删除
///
///
///
public async Task DeleteTopicGroupAsync(List ids)
{
try
{
using (TransactionScope transactionScope = new TransactionScope())
{
await _topicGroupRepository.DeleteAsync(ids);
await _topicGroupUserRepository.DeleteGroupIdAsync(ids);
transactionScope.Complete();
}
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}
return false;
}
///
///最新 小组话题分页列表
///
///
///
public async Task> GetGroupTopicPageAsync(TopicDetailListRequest request)
{
var result = new PagedList();
if (request.UserId <= 0)
result = await _topicRepository.GetAnonymousGroupTopicPageAsync(request);
else
result = await _topicRepository.GetGroupTopicPageAsync(request);
//判断是否小组成员
if (request.GroupIds.Count == 1)
result.IsUser = await _groupUserRepository.ExistsAsync(request.UserId, request.GroupIds[0]);
//获取数量
// result.Total = 10;
foreach (var item in result.Items)
{
if (string.IsNullOrEmpty(item.Title))
item.Title = string.Empty;
if (string.IsNullOrWhiteSpace(item.UserName))
{
item.Content = "[]";
item.Data = JsonConvert.DeserializeObject>(item.Content);
item.Content = "";
continue;
}
if (string.IsNullOrWhiteSpace(item.Content))
item.Content = "[]";
var contentJsonData = JsonConvert.DeserializeObject>(item.Content);
foreach (var contentJsonDataItem in contentJsonData)
contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
if (contentJsonData.Count == 0)
item.DataType = 1;
item.Content = "";
if (contentJsonData.Count > 0)
{
var imgData = new List();
var FileData = new List();
var forCount = 1;
var firstContent = string.Empty;
foreach (var jsonData in contentJsonData)
{
if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount == 1)
//文本
firstContent = jsonData.Text;
else if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount > 1)
//文本
continue;
//图片
else if (jsonData.Type == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
{
if (imgData.Count >= 9)
break;
imgData.Add(jsonData);
}
//附件
else
{
FileData.Add(jsonData);
break;
}
forCount++;
}
item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
else item.DataType = 1;
var contType = new List { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
}
if (item.Data == null || item.Data.Count == 0)
item.Data = new List();
}
return result;
}
///
///最新 小组话题分页列表 匿名用户
///
///
///
public async Task> GetAnonymousGroupTopicPageAsync(TopicDetailListRequest request)
{
var result = await _topicRepository.GetAnonymousGroupTopicPageAsync(request);
//获取数量
// result.Total = 10;
foreach (var item in result.Items)
{
if (string.IsNullOrEmpty(item.Title))
item.Title = string.Empty;
if (string.IsNullOrWhiteSpace(item.UserName))
{
item.Content = "[]";
item.Data = JsonConvert.DeserializeObject>(item.Content);
item.Content = "";
continue;
}
if (string.IsNullOrWhiteSpace(item.Content))
item.Content = "[]";
var contentJsonData = JsonConvert.DeserializeObject>(item.Content);
foreach (var contentJsonDataItem in contentJsonData)
contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
if (contentJsonData.Count == 0)
item.DataType = 1;
item.Content = "";
if (contentJsonData.Count > 0)
{
var imgData = new List();
var FileData = new List();
var forCount = 1;
var firstContent = string.Empty;
foreach (var jsonData in contentJsonData)
{
if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount == 1)
//文本
firstContent = jsonData.Text;
else if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount > 1)
//文本
continue;
//图片
else if (jsonData.Type == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
{
if (imgData.Count >= 9)
break;
imgData.Add(jsonData);
}
//附件
else
{
FileData.Add(jsonData);
break;
}
forCount++;
}
item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
else item.DataType = 1;
var contType = new List { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
}
if (item.Data == null || item.Data.Count == 0)
item.Data = new List();
}
return result;
}
public async Task> GetTopicByGroupAsync(TopicPageSearchRequest request)
{
var result = await _topicRepository.GetTopicByGroupAsync(request);
//获取数量
// result.Total = 10;
foreach (var item in result.Items)
{
if (string.IsNullOrWhiteSpace(item.UserName))
{
item.Content = "[]";
item.Data = JsonConvert.DeserializeObject>(item.Content);
item.Content = "";
continue;
}
if (string.IsNullOrWhiteSpace(item.Content))
item.Content = "[]";
var contentJsonData = JsonConvert.DeserializeObject>(item.Content);
foreach (var contentJsonDataItem in contentJsonData)
contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
if (contentJsonData.Count == 0)
item.DataType = 1;
item.Content = "";
if (contentJsonData.Count > 0)
{
var imgData = new List();
var FileData = new List();
var forCount = 1;
var firstContent = string.Empty;
foreach (var jsonData in contentJsonData)
{
if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount == 1)
//文本
firstContent = jsonData.Text;
else if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount > 1)
//文本
continue;
//图片
else if (jsonData.Type == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
{
if (imgData.Count > 9)
break;
imgData.Add(jsonData);
}
//附件
else
{
FileData.Add(jsonData);
break;
}
forCount++;
}
item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
else item.DataType = 1;
var contType = new List { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
}
if (item.Data == null || item.Data.Count == 0)
item.Data = new List();
}
return result;
}
public async Task GetTopicPageSqlAsync(TopicPageSearchRequest request)
{
var topicTypeValue = GxPress.EnumConst.AllTypeConst.TopicNote.GetHashCode();
var sql = $@"SELECT
a.Id,a.Title,a.UserId,a.Content,a.CreatedDate,a.IsTopic,a.ReadCount,c.ParentId,
(SELECT
FolderName
FROM
tede_middle
WHERE
id = c.ParentId and IsDelete=0) AS FolderName,
(SELECT
COUNT(1)
FROM
tede_analyze
WHERE
TypeValue = {topicTypeValue}
AND SourceId = a.Id
AND AnalyzeType = 1) AS PraiseCount,
(SELECT
COUNT(1)
FROM
tede_analyze
WHERE
UserId = {request.UserId} AND TypeValue = {topicTypeValue}
AND SourceId = a.Id
AND AnalyzeType = 1
LIMIT 0 , 1) AS IsPraise,
(SELECT
COUNT(1)
FROM
tede_comment
WHERE
ArticleId = a.Id AND TypeValue = {topicTypeValue}
AND Pid = 0) AS CommentCount,
(SELECT
COUNT(1)
FROM
tede_analyze
WHERE
UserId = {request.UserId} AND TypeValue = {topicTypeValue}
AND SourceId = a.Id
AND AnalyzeType = 4) AS RetransmissionCount,
(SELECT
COUNT(1)
FROM
tede_analyze
WHERE
UserId = {request.UserId} AND TypeValue = {topicTypeValue}
AND SourceId = a.Id
AND AnalyzeType = 4
LIMIT 0 , 1) AS IsRetransmission,
(SELECT
COUNT(1)
FROM
tede_analyze
WHERE
UserId = {request.UserId} AND TypeValue = {topicTypeValue}
AND SourceId = a.Id
AND AnalyzeType = 3
LIMIT 0 , 1) AS IsCollect,
b.Name as UserName, b.AvatarUrl
FROM
tede_note a
INNER JOIN
tede_user b ON a.UserId = b.Id
INNER JOIN
tede_middle c ON c.MiddleId = a.Id
WHERE
c.FolderType = {topicTypeValue} AND a.IsTopic = 1 and c.IsDelete=0 and a.IsDraft=0
";
if (request.UserId <= 0)
{
sql += $@" AND c.ParentId IN (SELECT
id
FROM
tede_middle
WHERE
FolderType = {topicTypeValue} AND AttributeValue = 2
AND RoleId = 1)";
}
else
{
sql += $@" AND (a.userId={request.UserId} or c.ParentId IN (SELECT
MiddleId
FROM
tede_folder_user
WHERE
MiddleId = c.ParentId AND UserId = {request.UserId})
OR a.UserId IN (SELECT
Id
FROM
tede_user
WHERE
1 = (SELECT
RoleId
FROM
tede_middle
WHERE
id = c.ParentId) and Id=a.UserId
))";
}
if (request.TopicGroupIds.Count > 0)
{
var topicGroupId = "";
foreach (var item in request.TopicGroupIds)
{
if (item <= 0)
continue;
topicGroupId += $"{item},";
}
if (!string.IsNullOrEmpty(topicGroupId))
{
topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
sql += $@" AND a.UserId IN (SELECT
UserId
FROM
tede_topic_group_user
WHERE
TopicGroupId IN ({topicGroupId}))";
}
}
if (request.TopicGroupIds.Count > 0)
{
//我的
if (request.TopicGroupIds.Contains(TopicNotoGropConst.My.GetHashCode()))
{
sql += $" and a.UserId={request.UserId} ";
}
//同单位
if (request.TopicGroupIds.Contains(TopicNotoGropConst.Work.GetHashCode()))
{
if (request.UserId > 0)
{
var departmentIds = await departmentUserRepository.GetDepartmentIdsAsync(request.UserId);
var departments = new List();
foreach (var departmentId in departmentIds)
{
await _departmentRepository.GetDepartmentById(departmentId, departments);
}
if (departments.Count > 0)
{
var userIds = await departmentUserRepository.GetUserIdsByDepartmentIdsAsync(departments.Select(n => n.Id));
if (userIds.Count() > 0)
{
var str = "";
foreach (var item in userIds)
str += $"{item},";
str = str.Remove(str.Length - 1, 1);
sql += $" and a.UserId in({str})";
}
}
}
}
}
if (!string.IsNullOrWhiteSpace(request.Keyword))
{
sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
OR a.Title LIKE '%{request.Keyword}%'
OR a.HtmlContent LIKE '%{request.Keyword}%')";
}
sql += $@" ORDER BY a.CreatedDate DESC
LIMIT {(request.Page - 1) * request.PerPage} , {request.PerPage}";
return sql;
}
public async Task AssembleSqlCount(TopicPageSearchRequest request)
{
var topicTypeValue = GxPress.EnumConst.AllTypeConst.TopicNote.GetHashCode();
var sql = $@"SELECT count(1) FROM
tede_note a
INNER JOIN
tede_user b ON a.UserId = b.Id
INNER JOIN
tede_middle c ON c.MiddleId = a.Id
WHERE
c.FolderType = {topicTypeValue} AND a.IsTopic = 1 and c.IsDelete=0 and a.IsDraft=0";
if (request.UserId <= 0)
{
sql += $@" AND c.ParentId IN (SELECT
id
FROM
tede_middle
WHERE
FolderType = {topicTypeValue} AND AttributeValue = 2
AND RoleId = 1)";
}
else
{
sql += $@" AND (a.userId={request.UserId} or c.ParentId IN (SELECT
MiddleId
FROM
tede_folder_user
WHERE
MiddleId = c.ParentId AND UserId = {request.UserId})
OR a.UserId IN (SELECT
Id
FROM
tede_user
WHERE
1 = (SELECT
RoleId
FROM
tede_middle
WHERE
id = c.ParentId) and Id=a.UserId
))";
}
if (request.TopicGroupIds.Count > 0)
{
var topicGroupId = "";
foreach (var item in request.TopicGroupIds)
{
if (item <= 0)
continue;
topicGroupId += $"{item},";
}
if (!string.IsNullOrEmpty(topicGroupId))
{
topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
sql += $@" AND a.UserId IN (SELECT
UserId
FROM
tede_topic_group_user
WHERE
TopicGroupId IN ({topicGroupId}))";
}
}
if (request.TopicGroupIds.Count > 0)
{
//我的
if (request.TopicGroupIds.Contains(TopicNotoGropConst.My.GetHashCode()))
{
sql += $" and a.UserId={request.UserId} ";
}
//同单位
if (request.TopicGroupIds.Contains(TopicNotoGropConst.Work.GetHashCode()))
{
if (request.UserId > 0)
{
var departmentIds = await departmentUserRepository.GetDepartmentIdsAsync(request.UserId);
var departments = new List();
foreach (var departmentId in departmentIds)
{
await _departmentRepository.GetDepartmentById(departmentId, departments);
}
if (departments.Count > 0)
{
var userIds = await departmentUserRepository.GetUserIdsByDepartmentIdsAsync(departments.Select(n => n.Id));
if (userIds.Count() > 0)
{
var str = "";
foreach (var item in userIds)
str += $"{item},";
str = str.Remove(str.Length - 1, 1);
sql += $" and a.UserId in({str})";
}
}
}
}
}
if (!string.IsNullOrWhiteSpace(request.Keyword))
{
sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
OR a.Title LIKE '%{request.Keyword}%'
OR a.HtmlContent LIKE '%{request.Keyword}%')";
}
return sql;
}
///
/// 新版 获取笔记话题列表
///
///
///
public async Task> GetTopicPageAsync(TopicPageSearchRequest request)
{
var result = await _topicRepository.GetTopicPage(request, await GetTopicPageSqlAsync(request), await AssembleSqlCount(request));
if (request.ParentId > 0)
{
var middle = await _middleRepository.GetMiddleAsync(request.ParentId);
result.RoleId = middle != null ? middle.RoleId : 0;
result.ParentId = middle.ParentId;
}
//获取数量
// result.Total = 10;
foreach (var item in result.Items)
{
// if (string.IsNullOrEmpty(item.FolderName))
// item.FolderName = "根目录";
if (string.IsNullOrWhiteSpace(item.UserName))
{
item.Content = "[]";
item.Data = JsonConvert.DeserializeObject>(item.Content);
item.Content = "";
continue;
}
if (string.IsNullOrWhiteSpace(item.Content))
item.Content = "[]";
var contentJsonData = JsonConvert.DeserializeObject>(item.Content);
foreach (var contentJsonDataItem in contentJsonData)
contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
if (contentJsonData.Count == 0)
item.DataType = 1;
item.Content = "";
if (contentJsonData.Count > 0)
{
var imgData = new List();
var FileData = new List();
var forCount = 1;
var firstContent = string.Empty;
foreach (var jsonData in contentJsonData)
{
if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount == 1)
//文本
firstContent = jsonData.Text;
else if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && firstContent.Length < 50)
//文本
firstContent += jsonData.Text;
//图片
else if (jsonData.TypeValue == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
{
if (imgData.Count > 9)
break;
imgData.Add(jsonData);
}
else if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode())
continue;
//附件
else
{
FileData.Add(jsonData);
break;
}
forCount++;
}
item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
else item.DataType = 1;
var contType = new List { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
}
if (item.Data == null || item.Data.Count == 0)
item.Data = new List();
if (item.Title == null)
item.Title = string.Empty;
if (item.Data != null)
{
foreach (var data in item.Data)
{
if (!string.IsNullOrEmpty(data.Title))
data.Title = string.Empty;
if (!string.IsNullOrEmpty(data.FileName))
data.FileName = string.Empty;
}
}
}
//查询系统默认的公开文件夹是否存在
var query = Q.NewQuery();
query.Where(nameof(Entity.Middle.Middle.UserId), request.UserId);
query.Where(nameof(Entity.Middle.Middle.AttributeValue), 2);
query.Where(nameof(Entity.Middle.Middle.FolderType), AllTypeConst.TopicNote.GetHashCode());
query.Where(nameof(Entity.Middle.Middle.IsSystemDefault), true);
var isExists = await _middleRepository.ExistsAsync(query);
if (!isExists)
{
//生成系统默认的公开文件夹
await _middleRepository.InsertAsync(new Entity.Middle.Middle
{
Id = 0,
FolderName = "公开",
AttributeValue = 2,
UserId = request.UserId,
FolderType = AllTypeConst.TopicNote.GetHashCode(),
RoleId = 1,
IsSystemDefault = true
});
}
result.IsDraft = await noteRepository.IsExistsDraftAsync(request.UserId, true);
result.DraftId = await noteRepository.GetNoteIdByDraftAsync(request.UserId, true);
return result;
}
///
/// APP列表显示用
///
///
///
public List GetListAsync(List contentJsonDataList)
{
var result = new List();
if (contentJsonDataList.Count > 0)
{
//查询文本
var txtType = contentJsonDataList.FirstOrDefault(n => n.Type == 1);
if (txtType != null)
result.Add(txtType);
//拼接图片
var imgType = contentJsonDataList.FindAll(n => n.Type == 2);
if (imgType.Any())
{
foreach (var item in imgType)
{
//判断图片数量
if (result.Count(n => n.Type == 2) > 8)
break;
result.Add(item);
}
}
else
{
var values = new List { 1, 2 };
var list = contentJsonDataList.FindAll(n => !values.Contains(n.Type));
if (list.Any())
result.Add(list.FirstOrDefault());
}
}
return result;
}
///
/// 添加话题分组成员
///
///
///
///
public async Task InsertTopicGroupUserAsync(List userIds, int topicGroupId)
{
try
{
using (TransactionScope transactionScope = new TransactionScope())
{
//获取话题小组成员
var topicGroupUsers =
await _topicGroupUserRepository.GetAllAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
topicGroupId));
var groupUsers = topicGroupUsers as TopicGroupUser[] ?? topicGroupUsers.ToArray();
foreach (var userId in userIds)
{
if (groupUsers.Any(n => n.UserId == userId))
continue;
var topicGroupUser = new TopicGroupUser { TopicGroupId = topicGroupId, UserId = userId };
await _topicGroupUserRepository.InsertAsync(topicGroupUser);
}
//获取人数
var includeCount =
await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
topicGroupId));
//修改人数
await _topicGroupRepository.UpdateAsync(Q.Where(nameof(TopicGroup.Id), topicGroupId)
.Set(nameof(TopicGroup.IncludeCount), includeCount));
transactionScope.Complete();
return true;
}
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}
}
///
/// 根据ID删除换题分组成员
///
///
///
public async Task DeleteTopicGroupUserAsync(List ids)
{
if (ids.Count == 0)
throw new BusinessException("删除的话题分组成员不存在");
try
{
using (TransactionScope transactionScope = new TransactionScope())
{
//查询分组
var topicGroupUser = await _topicGroupUserRepository.GetAsync(ids[0]);
await _topicGroupUserRepository.DeleteAsync(Q.WhereIn(nameof(TopicGroupUser.Id), ids));
var count = await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
topicGroupUser.TopicGroupId));
//修改数量
await _topicGroupRepository.UpdateAsync(Q.Set(nameof(TopicGroup.IncludeCount), count)
.Where(nameof(TopicGroup.Id), topicGroupUser.TopicGroupId));
transactionScope.Complete();
}
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}
return true;
}
///
/// 话题分组移动成员到
///
///
///
public async Task MoveToGroupAsync(MoveToGroupRequest request)
{
using (TransactionScope transactionScope = new TransactionScope())
{
//获取源小组ID
var topicGroupUser = await _topicGroupUserRepository.GetAsync(request.Ids[0]);
//
await _topicGroupUserRepository.UpdateAsync(Q
.Set(nameof(TopicGroupUser.TopicGroupId), request.TopicGroupId)
.WhereIn(nameof(TopicGroupUser.Id), request.Ids));
//原始修改数量
var originalCount = await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
topicGroupUser.TopicGroupId));
await _topicGroupRepository.UpdateAsync(Q.Set(nameof(TopicGroup.IncludeCount), originalCount)
.Where(nameof(TopicGroup.Id), topicGroupUser.TopicGroupId));
//修改数量
var count = await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
request.TopicGroupId));
await _topicGroupRepository.UpdateAsync(Q.Set(nameof(TopicGroup.IncludeCount), count)
.Where(nameof(TopicGroup.Id), request.TopicGroupId));
transactionScope.Complete();
}
return true;
}
///
/// 根据GroupId获取通知
///
///
///
public async Task> FindTopicByGroupIdAsync(TopicDetailListRequest request)
{
var query = Q.NewQuery();
query.Where(nameof(Entity.Topic.Topic.GroupId), request.GroupId);
query.Where(nameof(Entity.Topic.Topic.IsDraft), false);
//根据groupID查询话题
var topics = await _topicRepository.GetAllAsync(query);
query = Q.NewQuery();
query.WhereIn(nameof(Entity.Topic.TopicAddressee.TopicId), topics.Select(n => n.Id).ToList());
query.Where(nameof(Entity.Topic.TopicAddressee.UserId), request.UserId).Set(nameof(Entity.Topic.TopicAddressee.IsRead), true);
//根据话题ID修改用户的阅读
await _topicAddresseeRepository.UpdateAsync(query);
var topicListPageResults = await _topicRepository.FindTopicByGroupIdAsync(request);
foreach (var item in topicListPageResults.Items)
{
// var analyzeRequest = new Request.App.Analyze.AnalyzeRequest();
// analyzeRequest.TypeValue = 1;
// analyzeRequest.AnalyzeType = 1;
// analyzeRequest.SourceId = item.Id;
// analyzeRequest.UserId = request.UserId;
// //点赞数量
// item.PraiseCount = await _analyzeService.CountAsync(analyzeRequest);
// //获取话题的评论数量
// var commentCount =
// await _commentRepository.CountAsync(Q.Where(nameof(Entity.Comment.ArticleId), item.Id).Where(nameof(Entity.Comment.TypeValue), 1));
// item.CommentCount = commentCount;
// //获取话题的转发数量
// analyzeRequest.AnalyzeType = 4;
// var retransmissionCount = await _analyzeService.CountAsync(analyzeRequest);
// item.RetransmissionCount = retransmissionCount;
// item.IsRetransmission = await _analyzeService.ExistsAsync(analyzeRequest);
// //获取话题的收藏数量
// analyzeRequest.AnalyzeType = 3;
// var collectCount = await _analyzeService.CountAsync(analyzeRequest);
// item.CollectCount = collectCount;
// //是否收藏
// item.IsCollect = await _analyzeService.ExistsAsync(analyzeRequest);
// //获取话题的点赞数量
// analyzeRequest.AnalyzeType = 1;
// var praiseCount = await _analyzeService.CountAsync(analyzeRequest);
// item.PraiseCount = praiseCount;
// //是否点赞
// item.IsPraise = await _analyzeService.ExistsAsync(analyzeRequest);
if (string.IsNullOrWhiteSpace(item.Content))
item.Content = "[]";
var contentJsonData = JsonConvert.DeserializeObject>(item.Content);
foreach (var contentJsonDataItem in contentJsonData)
contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
if (contentJsonData.Count == 0)
item.DataType = 1;
item.Content = "";
if (contentJsonData.Count > 0)
{
var imgData = new List();
var FileData = new List();
var forCount = 1;
var firstContent = string.Empty;
foreach (var jsonData in contentJsonData)
{
if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount == 1)
//文本
firstContent = jsonData.Text;
else if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount > 1)
//文本
continue;
//图片
else if (jsonData.TypeValue == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
{
if (imgData.Count > 9)
break;
imgData.Add(jsonData);
}
//附件
else
{
FileData.Add(jsonData);
break;
}
forCount++;
}
item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
else item.DataType = 1;
var contType = new List { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
}
if (item.Data == null || item.Data.Count == 0)
item.Data = new List();
//item.AvatarUrl = StringUtils.AddDomainMin(item.AvatarUrl);
}
return topicListPageResults;
}
}
}