|
@@ -3,12 +3,20 @@ using GxPress.Request.Media;
|
|
|
using GxPress.Result.Category;
|
|
|
using GxPress.Result.Media;
|
|
|
using GxPress.Service.Interface.Epub;
|
|
|
+using GxPress.Repository.Interface.Media;
|
|
|
using VersOne.Epub;
|
|
|
+using System;
|
|
|
+using System.Threading.Tasks;
|
|
|
|
|
|
namespace GxPress.Service.Implement.Epub
|
|
|
{
|
|
|
public class EpubService : IEpubService
|
|
|
{
|
|
|
+ private readonly IMediaRepository mediaRepository;
|
|
|
+ public EpubService(IMediaRepository mediaRepository)
|
|
|
+ {
|
|
|
+ this.mediaRepository = mediaRepository;
|
|
|
+ }
|
|
|
/// <summary>
|
|
|
/// 获取书籍目录
|
|
|
/// </summary>
|
|
@@ -36,7 +44,6 @@ namespace GxPress.Service.Implement.Epub
|
|
|
bookCatalog.CatalogId = item.HtmlContentFile.FileName;
|
|
|
bookCatalog.ParentId = i;
|
|
|
result.Add(bookCatalog);
|
|
|
-
|
|
|
}
|
|
|
i++;
|
|
|
}
|
|
@@ -46,20 +53,33 @@ namespace GxPress.Service.Implement.Epub
|
|
|
/// 获取章节内容
|
|
|
/// </summary>
|
|
|
/// <returns></returns>
|
|
|
- public string GetBookCatalogContent(BookCatalogRequest request)
|
|
|
+ public async Task<string> GetBookCatalogContent(BookCatalogRequest request)
|
|
|
{
|
|
|
if (string.IsNullOrEmpty(request.Path))
|
|
|
return string.Empty;
|
|
|
+ //获取media
|
|
|
+ var media = await mediaRepository.GetAsync(request.MediaId);
|
|
|
+ var sectionValue = 0;
|
|
|
+ if (media.FreeProportion > 0)
|
|
|
+ {
|
|
|
+ var freeProportion = media.FreeProportion / 100;
|
|
|
+ var catalogs = GetCatalog(request.Path);
|
|
|
+ sectionValue = Convert.ToInt32(catalogs.Count * freeProportion);
|
|
|
+ }
|
|
|
EpubBook epubBook = EpubReader.ReadBook(request.Path);
|
|
|
string htmlContent = string.Empty;
|
|
|
+ int i = 0;
|
|
|
foreach (EpubTextContentFile textContentFile in epubBook.ReadingOrder)
|
|
|
{
|
|
|
+ if (i >= sectionValue && sectionValue > 0)
|
|
|
+ throw new Common.Exceptions.BusinessException("");
|
|
|
if (textContentFile.FileName.Equals(request.CatalogId) || textContentFile.FileName.Equals(request.CatalogNameg))
|
|
|
{
|
|
|
//当前文本内容文件的HTML
|
|
|
htmlContent = textContentFile.Content;
|
|
|
break;
|
|
|
}
|
|
|
+ i++;
|
|
|
}
|
|
|
return htmlContent;
|
|
|
}
|