ContentJsonService.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using GxPress.EnumConst;
  4. using GxPress.Result;
  5. using GxPress.Service.Interface.ContentJson;
  6. using Newtonsoft.Json;
  7. namespace GxPress.Service.Implement.ContentJson
  8. {
  9. public class ContentJsonService : IContentJsonService
  10. {
  11. public string GetTitile(string title, string content)
  12. {
  13. if (string.IsNullOrWhiteSpace(title))
  14. {
  15. var data = JsonConvert.DeserializeObject<List<ContentJsonData>>(content);
  16. if (data.Count > 0)
  17. {
  18. var first = data.First();
  19. if (first.TypeValue == AllTypeConst.Text.GetHashCode() && !string.IsNullOrWhiteSpace(first.Text))
  20. title = first.Text;
  21. else
  22. {
  23. foreach (var contentJsonData in data)
  24. {
  25. //是否是文本
  26. if (contentJsonData.TypeValue == AllTypeConst.Text.GetHashCode())
  27. continue;
  28. else if (contentJsonData.TypeValue == AllTypeConst.Image.GetHashCode())
  29. {
  30. title = "[图片]";
  31. break;
  32. }
  33. else if (contentJsonData.TypeValue == AllTypeConst.File.GetHashCode())
  34. {
  35. title = "[附件]";
  36. break;
  37. }
  38. else
  39. {
  40. title = "[附件]";
  41. break;
  42. }
  43. }
  44. }
  45. }
  46. }
  47. if (title.Length > 50)
  48. title = title.Remove(50, title.Length - 50);
  49. return title;
  50. }
  51. }
  52. }