TopicService.Add.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.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> InsertTopicAsync(TopicInRequest request)
  20. {
  21. if (string.IsNullOrWhiteSpace(request.Title) && string.IsNullOrWhiteSpace(request.HtmlContent))
  22. throw new BusinessException("标题和内容必填一项!");
  23. try
  24. {
  25. using (TransactionScope transactionScope = new TransactionScope())
  26. {
  27. //创建话题
  28. var topic = new Entity.Topic.Topic
  29. {
  30. UserId = request.UserId,
  31. Content = request.Content,
  32. HtmlContent = request.HtmlContent,
  33. Title = request.Title,
  34. GroupId = request.GroupId,
  35. FolderId = request.FolderId,
  36. IsDraft = request.IsDraft
  37. };
  38. if (!string.IsNullOrEmpty(request.Content))
  39. {
  40. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(request.Content);
  41. foreach (var item in contentJsonData)
  42. {
  43. item.File = StringUtils.RemoveDomain(item.File);
  44. }
  45. topic.Content = JsonConvert.SerializeObject(contentJsonData);
  46. }
  47. var topicId = await _topicRepository.InsertAsync(topic);
  48. //修改话题访问量
  49. await _visitService.AddVisit(request.UserId, GxPress.EnumConst.AllTypeConst.Topic.GetHashCode(), topicId);
  50. transactionScope.Complete();
  51. }
  52. }
  53. catch (Exception e)
  54. {
  55. throw new BusinessException(e.Message);
  56. }
  57. return true;
  58. }
  59. }
  60. }