|
@@ -7,6 +7,7 @@ using AutoMapper;
|
|
|
using System.Linq;
|
|
|
using GxPress.Result.Category;
|
|
|
using GxPress.Service.Interface.Epub;
|
|
|
+using GxPress.Request.Media;
|
|
|
|
|
|
namespace GxPress.Service.Implement.Media
|
|
|
{
|
|
@@ -16,12 +17,14 @@ namespace GxPress.Service.Implement.Media
|
|
|
private readonly IMediaRepository mediaRepository;
|
|
|
private readonly IMapper _mapper;
|
|
|
private readonly IEpubService epubService;
|
|
|
- public MediaService(ICategoryRepository categoryRepository, IMediaRepository mediaRepository, IMapper _mapper,IEpubService epubService)
|
|
|
+ private readonly IMediaLibraryRepository mediaLibraryRepository;
|
|
|
+ public MediaService(ICategoryRepository categoryRepository, IMediaRepository mediaRepository, IMapper _mapper, IEpubService epubService, IMediaLibraryRepository mediaLibraryRepository)
|
|
|
{
|
|
|
this.categoryRepository = categoryRepository;
|
|
|
this.mediaRepository = mediaRepository;
|
|
|
this._mapper = _mapper;
|
|
|
- this.epubService=epubService;
|
|
|
+ this.epubService = epubService;
|
|
|
+ this.mediaLibraryRepository = mediaLibraryRepository;
|
|
|
}
|
|
|
public async Task<bool> InsertAsync(MediaResult result)
|
|
|
{
|
|
@@ -53,25 +56,52 @@ namespace GxPress.Service.Implement.Media
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- //如果是书籍
|
|
|
-
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 获取书籍详情
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<BookMediaResult> GetBookMediaResultAsync(int id)
|
|
|
+ {
|
|
|
+ var result = await mediaRepository.GetBookMediaResultAsync(id);
|
|
|
+ if (result == null)
|
|
|
+ throw new Common.Exceptions.BusinessException("不存在");
|
|
|
+ if (result.MediaType != GxPress.EnumConst.ResourceTypeConst.Book.GetHashCode())
|
|
|
+ throw new Common.Exceptions.BusinessException("非书籍");
|
|
|
+ //获取书籍文件
|
|
|
+ var mediaLibrary = await mediaLibraryRepository.GetTaskAsync(id);
|
|
|
+ if (!mediaLibrary.FileUrl.Contains("epub"))
|
|
|
+ throw new Common.Exceptions.BusinessException("书籍不存在epub文件");
|
|
|
+ //书籍
|
|
|
+ result.BookCatalogResults = epubService.GetCatalog("wwwroot" + mediaLibrary.FileUrl);
|
|
|
+ //计算免费占比
|
|
|
+
|
|
|
return result;
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// 获取章节内容
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<string> GetBookMediaContentResultAsync(BookCatalogRequest request)
|
|
|
+ {
|
|
|
+ if (request.MediaId == 0)
|
|
|
+ throw new Common.Exceptions.BusinessException("请检查参数");
|
|
|
+ if (string.IsNullOrEmpty(request.CatalogNameg))
|
|
|
+ throw new Common.Exceptions.BusinessException("请检查参数");
|
|
|
+ if (string.IsNullOrEmpty(request.CatalogId))
|
|
|
+ throw new Common.Exceptions.BusinessException("请检查参数");
|
|
|
+ //获取书籍文件
|
|
|
+ var mediaLibrary = await mediaLibraryRepository.GetTaskAsync(request.MediaId);
|
|
|
+ if (!mediaLibrary.FileUrl.Contains("epub"))
|
|
|
+ throw new Common.Exceptions.BusinessException("书籍不存在epub文件");
|
|
|
+ request.Path = mediaLibrary.FileUrl;
|
|
|
+ return epubService.GetBookCatalogContent(request);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
- // public List<CategoryResult> GetAllCategoryResult(IEnumerable<Entity.tede2.Category.Category> categorys, int id, List<CategoryResult> categoryResults)
|
|
|
- // {
|
|
|
- // var result = new List<CategoryResult>();
|
|
|
- // result = categorys.Where(n => n.ParentId == id).Select(n => _mapper.Map<CategoryResult>(n)).ToList();
|
|
|
- // foreach (var item in result)
|
|
|
- // {
|
|
|
- // item.IsChildren = categorys.Any(n => n.ParentId == item.Id);
|
|
|
- // item.Children = categorys.Where(n => n.ParentId == item.Id).Select(n => _mapper.Map<CategoryResult>(n)).ToList();
|
|
|
- // foreach (var children in item.Children)
|
|
|
- // {
|
|
|
- // GetAllCategoryResult(categorys,children.Id,categoryResults);
|
|
|
- // }
|
|
|
- // }
|
|
|
- // return result;
|
|
|
- // }
|
|
|
}
|
|
|
}
|