TopicService.Update.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Threading.Tasks;
  4. using GxPress.Common.Exceptions;
  5. using GxPress.Entity.Topic;
  6. using GxPress.EnumConst;
  7. using GxPress.Request.App.Topic;
  8. using GxPress.Result;
  9. using Newtonsoft.Json;
  10. namespace GxPress.Service.Implement.Topic
  11. {
  12. public partial class TopicService
  13. {
  14. /// <summary>
  15. /// 修改话题
  16. /// </summary>
  17. /// <param name="request"></param>
  18. /// <returns></returns>
  19. public async Task<bool> UpdateAsync(TopicUpdateRequest request)
  20. {
  21. var topic = await _topicRepository.GetAsync(request.Id);
  22. if (request.UserId != topic.UserId)
  23. throw new BusinessException("话题不属于该用户");
  24. if (!string.IsNullOrEmpty(request.Title))
  25. topic.Title = request.Title;
  26. if (!string.IsNullOrEmpty(request.Content))
  27. {
  28. topic.TextContent = string.Empty;
  29. topic.Content = request.Content;
  30. topic.HtmlContent = request.HtmlContent;
  31. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(request.Content);
  32. foreach (var data in contentJsonData)
  33. {
  34. if (data.Type == AllTypeConst.Text.GetHashCode())
  35. topic.TextContent += data.Text;
  36. }
  37. }
  38. else
  39. {
  40. topic.TextContent = "[]";
  41. topic.Content = string.Empty;
  42. topic.HtmlContent = string.Empty;
  43. }
  44. //是否草稿
  45. topic.IsDraft = request.IsDraft;
  46. return await _topicRepository.UpdateAsync(topic);
  47. }
  48. }
  49. }