EpubService.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. using System.Collections.Generic;
  2. using GxPress.Request.Media;
  3. using GxPress.Result.Category;
  4. using GxPress.Result.Media;
  5. using GxPress.Service.Interface.Epub;
  6. using GxPress.Repository.Interface.Media;
  7. using VersOne.Epub;
  8. using System;
  9. using System.Threading.Tasks;
  10. using GxPress.Common.Tools;
  11. using GxPress.Repository.Interface;
  12. using GxPress.Repository.Interface.Order;
  13. namespace GxPress.Service.Implement.Epub
  14. {
  15. public class EpubService : IEpubService
  16. {
  17. private readonly IMediaRepository mediaRepository;
  18. private readonly IUserRepository userRepository;
  19. private readonly IOrderRepository orderRepository;
  20. public EpubService(IMediaRepository mediaRepository, IUserRepository userRepository, IOrderRepository orderRepository)
  21. {
  22. this.mediaRepository = mediaRepository;
  23. this.userRepository = userRepository;
  24. this.orderRepository = orderRepository;
  25. }
  26. /// <summary>
  27. /// 获取书籍目录
  28. /// </summary>
  29. public List<BookCatalogResult> GetCatalog(string path)
  30. {
  31. var result = new List<BookCatalogResult>();
  32. EpubBook epubBook = EpubReader.ReadBook(path);
  33. int i = 1;
  34. // 目录
  35. //列举章节
  36. foreach (EpubNavigationItem chapter in epubBook.Navigation)
  37. {
  38. //本章标题
  39. var bookCatalog = new BookCatalogResult();
  40. bookCatalog.Id = i;
  41. bookCatalog.CatalogNameg = chapter.Title;
  42. bookCatalog.CatalogId = chapter.HtmlContentFile.FileName;
  43. result.Add(bookCatalog);
  44. //嵌套章节
  45. List<EpubNavigationItem> subChapters = chapter.NestedItems;
  46. foreach (var item in subChapters)
  47. {
  48. bookCatalog = new BookCatalogResult();
  49. bookCatalog.CatalogNameg = item.Title;
  50. bookCatalog.CatalogId = item.HtmlContentFile.FileName;
  51. bookCatalog.ParentId = i;
  52. result.Add(bookCatalog);
  53. }
  54. i++;
  55. }
  56. return result;
  57. }
  58. /// <summary>
  59. /// 获取章节内容
  60. /// </summary>
  61. /// <returns></returns>
  62. public async Task<string> GetBookCatalogContent(BookCatalogRequest request)
  63. {
  64. if (string.IsNullOrEmpty(request.Path))
  65. return string.Empty;
  66. //获取media
  67. var media = await mediaRepository.GetAsync(request.MediaId);
  68. if (request.UserId > 0)
  69. {
  70. var user = await userRepository.GetAsync(request.UserId);
  71. if (user.IsVip && user.EndTime > DateTime.Now)
  72. media.FreeProportion = 0;
  73. else
  74. {
  75. if (await orderRepository.GetExistsAsync(request.UserId, request.MediaId))
  76. media.FreeProportion = 0;
  77. }
  78. }
  79. var sectionValue = 0;
  80. if (media.FreeProportion > 0)
  81. {
  82. var freeProportion = media.FreeProportion / 100;
  83. var catalogs = GetCatalog(request.Path);
  84. sectionValue = Convert.ToInt32(catalogs.Count * freeProportion);
  85. }
  86. EpubBook epubBook = EpubReader.ReadBook(request.Path);
  87. string htmlContent = string.Empty;
  88. int i = 1;
  89. foreach (EpubNavigationItem chapter in epubBook.Navigation)
  90. {
  91. if (chapter.HtmlContentFile.FileName.Equals(request.CatalogId) || chapter.Title.Equals(request.CatalogNameg))
  92. {
  93. if (i > sectionValue && sectionValue > 0)
  94. {
  95. htmlContent = HtmlAgilityPackHelper.GetHmtlContent(chapter.HtmlContentFile.Content);
  96. break;
  97. }
  98. //当前文本内容文件的HTML
  99. htmlContent = HtmlAgilityPackHelper.GetHmtl(chapter.HtmlContentFile.Content);
  100. break;
  101. }
  102. i++;
  103. }
  104. return htmlContent;
  105. }
  106. /// <summary>
  107. /// C#去除HTML标签
  108. /// </summary>
  109. /// <param name="html">带有html标签的文本</param>
  110. /// <param name="length">截取长度</param>
  111. /// <returns></returns>
  112. public string ReplaceHtmlTag(string html, int length = 0)
  113. {
  114. string strText = System.Text.RegularExpressions.Regex.Replace(html, "<[^>]+>", "");
  115. strText = System.Text.RegularExpressions.Regex.Replace(strText, "&[^;]+;", "");
  116. if (length > 0 && strText.Length > length)
  117. return strText.Substring(0, length);
  118. return strText;
  119. }
  120. }
  121. }