|
@@ -53,9 +53,9 @@ namespace GxPress.Service.Implement.Topic
|
|
|
ITopicGroupUserRepository topicGroupUserRepository, IAnalyzeService analyzeService,
|
|
|
ICommentRepository commentRepository, IMapper mapper, IDepartmentRepository departmentRepository,
|
|
|
IGroupUserRepository groupUserRepository, IFolderUserRepository folderUserRepository,
|
|
|
- INoteService noteService, IMiddleRepository middleRepository,
|
|
|
- IVisitRepository visitRepository, IVisitService visitService,
|
|
|
- IDepartmentUserRepository departmentUserRepository,
|
|
|
+ INoteService noteService, IMiddleRepository middleRepository,
|
|
|
+ IVisitRepository visitRepository, IVisitService visitService,
|
|
|
+ IDepartmentUserRepository departmentUserRepository,
|
|
|
INoteRepository noteRepository,
|
|
|
IGroupRepository groupRepository)
|
|
|
{
|
|
@@ -76,7 +76,7 @@ namespace GxPress.Service.Implement.Topic
|
|
|
_visitService = visitService;
|
|
|
this.departmentUserRepository = departmentUserRepository;
|
|
|
this.noteRepository = noteRepository;
|
|
|
- this.groupRepository=groupRepository;
|
|
|
+ this.groupRepository = groupRepository;
|
|
|
}
|
|
|
|
|
|
|
|
@@ -174,6 +174,76 @@ namespace GxPress.Service.Implement.Topic
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ ///最新 小组话题分页列表 匿名用户
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<PagedList<TopicListPageResult>> 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<List<ContentJsonData>>(item.Content);
|
|
|
+ item.Content = "";
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ if (string.IsNullOrWhiteSpace(item.Content))
|
|
|
+ item.Content = "[]";
|
|
|
+ var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(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<ContentJsonData>();
|
|
|
+ var FileData = new List<ContentJsonData>();
|
|
|
+ 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<int> { 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<ContentJsonData>();
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
public async Task<PagedList<TopicListPageResult>> GetTopicByGroupAsync(TopicPageSearchRequest request)
|
|
|
{
|
|
|
var result = await _topicRepository.GetTopicByGroupAsync(request);
|