TopicService.Add.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using System.Transactions;
  5. using GxPress.Common.Exceptions;
  6. using GxPress.Common.Tools;
  7. using GxPress.EnumConst;
  8. using GxPress.Request.App.Topic;
  9. using GxPress.Result;
  10. using Newtonsoft.Json;
  11. namespace GxPress.Service.Implement.Topic
  12. {
  13. public partial class TopicService
  14. {
  15. /// <summary>
  16. /// 创建话题
  17. /// </summary>
  18. /// <param name="request"></param>
  19. /// <returns></returns>
  20. public async Task<AppResultJson<Entity.Topic.Topic>> InsertTopicAsync(TopicInRequest request)
  21. {
  22. var result = new AppResultJson<Entity.Topic.Topic>();
  23. if (string.IsNullOrWhiteSpace(request.Title) && string.IsNullOrWhiteSpace(request.HtmlContent))
  24. throw new BusinessException("标题和内容必填一项!");
  25. try
  26. {
  27. using (TransactionScope transactionScope = new TransactionScope())
  28. {
  29. //创建话题
  30. var topic = new Entity.Topic.Topic
  31. {
  32. UserId = request.UserId,
  33. Content = request.Content,
  34. HtmlContent = request.HtmlContent,
  35. Title = request.Title,
  36. GroupId = request.GroupId,
  37. FolderId = request.FolderId,
  38. IsDraft = request.IsDraft
  39. };
  40. if (!string.IsNullOrEmpty(request.Content))
  41. {
  42. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(request.Content);
  43. foreach (var item in contentJsonData)
  44. {
  45. item.File = StringUtils.RemoveDomain(item.File);
  46. if (item.Type == AllTypeConst.Text.GetHashCode())
  47. topic.TextContent += item.Text;
  48. }
  49. topic.Content = JsonConvert.SerializeObject(contentJsonData);
  50. }
  51. else
  52. {
  53. topic.TextContent = "[]";
  54. topic.Content = "[]";
  55. }
  56. var topicId = await _topicRepository.InsertAsync(topic);
  57. // //添加默认文件夹
  58. // await recordFolderRepository.AddAsync(AllTypeConst.TopicNote.GetHashCode(), request.UserId, request.FolderId);
  59. //修改话题访问量
  60. await _visitService.AddVisit(request.UserId, GxPress.EnumConst.AllTypeConst.Topic.GetHashCode(), topicId);
  61. result = new AppResultJson<Entity.Topic.Topic>
  62. {
  63. Code = StatusCodeConst.SucceedCode.GetHashCode(),
  64. Msg = "",
  65. Success = false,
  66. Data = await _topicRepository.GetAsync(topicId)
  67. };
  68. transactionScope.Complete();
  69. }
  70. }
  71. catch
  72. {
  73. return result = new AppResultJson<Entity.Topic.Topic>
  74. {
  75. Code = StatusCodeConst.ErrorCode.GetHashCode(),
  76. Msg = StatusCodeConst.ErrorMsg.GetDescriptionOriginal(),
  77. Success = false,
  78. Data = new Entity.Topic.Topic()
  79. };
  80. }
  81. return result;
  82. }
  83. }
  84. }