|
@@ -24,6 +24,8 @@ using GxPress.Repository.Interface.DepartmentUser;
|
|
|
using GxPress.EnumConst;
|
|
|
using GxPress.Repository.Interface.Note;
|
|
|
using GxPress.Result.Department;
|
|
|
+using GxPress.Service.Interface.CommonSqlKata;
|
|
|
+using GxPress.Repository.Interface.RecordFolder;
|
|
|
|
|
|
namespace GxPress.Service.Implement.Topic
|
|
|
{
|
|
@@ -47,6 +49,8 @@ namespace GxPress.Service.Implement.Topic
|
|
|
private readonly IVisitService _visitService;
|
|
|
private readonly INoteRepository noteRepository;
|
|
|
private readonly IGroupRepository groupRepository;
|
|
|
+ private readonly ICommonSqlKataService commonSqlKataService;
|
|
|
+ private readonly IRecordFolderRepository recordFolderRepository;
|
|
|
public TopicService(ITopicRepository topicRepository, IUserRepository userRepository,
|
|
|
ITopicAddresseeRepository topicAddresseeRepository,
|
|
|
ITopicGroupRepository topicGroupRepository,
|
|
@@ -57,7 +61,9 @@ namespace GxPress.Service.Implement.Topic
|
|
|
IVisitRepository visitRepository, IVisitService visitService,
|
|
|
IDepartmentUserRepository departmentUserRepository,
|
|
|
INoteRepository noteRepository,
|
|
|
- IGroupRepository groupRepository)
|
|
|
+ IGroupRepository groupRepository,
|
|
|
+ ICommonSqlKataService commonSqlKataService,
|
|
|
+ IRecordFolderRepository recordFolderRepository)
|
|
|
{
|
|
|
_topicRepository = topicRepository;
|
|
|
_userRepository = userRepository;
|
|
@@ -77,6 +83,8 @@ namespace GxPress.Service.Implement.Topic
|
|
|
this.departmentUserRepository = departmentUserRepository;
|
|
|
this.noteRepository = noteRepository;
|
|
|
this.groupRepository = groupRepository;
|
|
|
+ this.commonSqlKataService = commonSqlKataService;
|
|
|
+ this.recordFolderRepository=recordFolderRepository;
|
|
|
}
|
|
|
|
|
|
|
|
@@ -111,11 +119,54 @@ namespace GxPress.Service.Implement.Topic
|
|
|
/// <returns></returns>
|
|
|
public async Task<PagedList<TopicListPageResult>> GetGroupTopicPageAsync(TopicDetailListRequest request)
|
|
|
{
|
|
|
- var result = new PagedList<TopicListPageResult>();
|
|
|
- if (request.UserId <= 0)
|
|
|
- result = await _topicRepository.GetAnonymousGroupTopicPageAsync(request);
|
|
|
- else
|
|
|
- result = await _topicRepository.GetGroupTopicPageAsync(request);
|
|
|
+ var query = new SqlKata.Query("tede_topic");
|
|
|
+ query.Join("tede_group", "tede_group.Id", "tede_topic.GroupId");
|
|
|
+ query.Join("tede_user", "tede_user.Id", "tede_topic.UserId");
|
|
|
+ query.Where("tede_topic.GroupId", ">", 0);
|
|
|
+ query.Where("tede_topic.IsDraft", request.IsDraft);
|
|
|
+ if (request.IsDraft)
|
|
|
+ query.Where("tede_group.UserId", request.UserId);
|
|
|
+ if (request.GroupIds.Count() == 0)
|
|
|
+ request.GroupIds.Add(-1);
|
|
|
+ if (request.GroupIds.Count > 0)
|
|
|
+ {
|
|
|
+ var groupIds = new List<int>();
|
|
|
+ foreach (var item in request.GroupIds)
|
|
|
+ {
|
|
|
+ if (item > 0)
|
|
|
+ groupIds.Add(item);
|
|
|
+ //全网
|
|
|
+ if (item == -1)
|
|
|
+ groupIds.AddRange(await _topicRepository.GetPublicGroupAsync(request.UserId));
|
|
|
+ //我的小组
|
|
|
+ if (item == -2)
|
|
|
+ groupIds.AddRange(await _topicRepository.GetIntoGroupAsync(request.UserId));
|
|
|
+ }
|
|
|
+ if (groupIds.Count > 0)
|
|
|
+ query.WhereIn("tede_topic.GroupId", groupIds);
|
|
|
+ }
|
|
|
+ if (!string.IsNullOrEmpty(request.Key))
|
|
|
+ query.Where(n => n.OrWhereLike("tede_topic.Title", $"%{request.Key}%").OrWhereLike("tede_topic.TextContent", $"%{request.Key}%"));
|
|
|
+ //条数
|
|
|
+ var queryCount = query;
|
|
|
+ //公共
|
|
|
+ commonSqlKataService.GetCommonQueryAsync(AllTypeConst.Topic.GetHashCode(), request.UserId, query, "tede_topic.Id");
|
|
|
+ //获取用户所在部门
|
|
|
+ var departmentNameQuery = new SqlKata.Query("tede_department");
|
|
|
+ var departmentUserQuery = new SqlKata.Query("tede_department_user");
|
|
|
+ departmentUserQuery.WhereColumns("tede_department_user.UserId", "=", "tede_topic.UserId");
|
|
|
+ departmentUserQuery.Select("tede_department_user.DepartmentId");
|
|
|
+ departmentNameQuery.WhereIn("tede_department.Id", departmentUserQuery);
|
|
|
+ departmentNameQuery.Limit(1);
|
|
|
+ departmentNameQuery.Select("tede_department.Name");
|
|
|
+ query.Select(departmentNameQuery, "DepartmentName");
|
|
|
+ query.Select(
|
|
|
+ "tede_topic.{Id,Title,UserId,ReadCount,CreatedDate,Content,GroupId}",
|
|
|
+ "tede_group.{Name as GroupName}",
|
|
|
+ "tede_user.{Name as UserName,AvatarUrl}");
|
|
|
+ query.OrderByDesc("tede_topic.CreatedDate");
|
|
|
+ query.ForPage(request.Page, request.PerPage);
|
|
|
+ var result = await _topicRepository.GetGroupTopicPageAsync(query, queryCount, request);
|
|
|
//判断是否小组成员
|
|
|
if (request.GroupIds.Count == 1)
|
|
|
{
|
|
@@ -201,76 +252,6 @@ 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);
|