|
@@ -12,7 +12,7 @@ using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.StaticFiles;
|
|
using Microsoft.AspNetCore.StaticFiles;
|
|
using Microsoft.Net.Http.Headers;
|
|
using Microsoft.Net.Http.Headers;
|
|
-
|
|
|
|
|
|
+using GxPress.Repository.Interface.Order;
|
|
namespace GxPress.Api.WebControllers
|
|
namespace GxPress.Api.WebControllers
|
|
{
|
|
{
|
|
/// <summary>
|
|
/// <summary>
|
|
@@ -29,14 +29,15 @@ namespace GxPress.Api.WebControllers
|
|
private IHttpContextAccessor _contextAccessor;
|
|
private IHttpContextAccessor _contextAccessor;
|
|
private readonly IMediaLibraryRepository mediaLibraryRepository;
|
|
private readonly IMediaLibraryRepository mediaLibraryRepository;
|
|
private HttpContext _context { get { return _contextAccessor.HttpContext; } }
|
|
private HttpContext _context { get { return _contextAccessor.HttpContext; } }
|
|
-
|
|
|
|
- public WebMediaController(IMediaRepository mediaRepository, ILoginContext _loginContext, IMediaService mediaService, IHttpContextAccessor contextAccessor, IMediaLibraryRepository mediaLibraryRepository)
|
|
|
|
|
|
+ private readonly IOrderRepository orderRepository;
|
|
|
|
+ public WebMediaController(IMediaRepository mediaRepository, ILoginContext _loginContext, IMediaService mediaService, IHttpContextAccessor contextAccessor, IMediaLibraryRepository mediaLibraryRepository, IOrderRepository orderRepository)
|
|
{
|
|
{
|
|
this.mediaRepository = mediaRepository;
|
|
this.mediaRepository = mediaRepository;
|
|
this._loginContext = _loginContext;
|
|
this._loginContext = _loginContext;
|
|
this.mediaService = mediaService;
|
|
this.mediaService = mediaService;
|
|
_contextAccessor = contextAccessor;
|
|
_contextAccessor = contextAccessor;
|
|
this.mediaLibraryRepository = mediaLibraryRepository;
|
|
this.mediaLibraryRepository = mediaLibraryRepository;
|
|
|
|
+ this.orderRepository = orderRepository;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 详情
|
|
/// 详情
|
|
@@ -59,7 +60,12 @@ namespace GxPress.Api.WebControllers
|
|
[AllowAnonymous]
|
|
[AllowAnonymous]
|
|
public async Task<BookMediaResult> GetBookMediaResult(int id)
|
|
public async Task<BookMediaResult> GetBookMediaResult(int id)
|
|
{
|
|
{
|
|
- return await mediaService.GetBookMediaResultAsync(id);
|
|
|
|
|
|
+ var result = await mediaService.GetBookMediaResultAsync(id);
|
|
|
|
+ if (_loginContext.AccountId > 0 && result.FreeProportion == 0)
|
|
|
|
+ result.IsBuy = true;
|
|
|
|
+ else if (_loginContext.AccountId > 0)
|
|
|
|
+ result.IsBuy = await orderRepository.GetExistsAsync(_loginContext.AccountId, id);
|
|
|
|
+ return result;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 获取视频详情
|
|
/// 获取视频详情
|
|
@@ -70,7 +76,12 @@ namespace GxPress.Api.WebControllers
|
|
[AllowAnonymous]
|
|
[AllowAnonymous]
|
|
public async Task<VideoMediaResult> GetVideoMediaResultAsync(int id)
|
|
public async Task<VideoMediaResult> GetVideoMediaResultAsync(int id)
|
|
{
|
|
{
|
|
- return await mediaService.GetVideoMediaResultAsync(id);
|
|
|
|
|
|
+ var result = await mediaService.GetVideoMediaResultAsync(id);
|
|
|
|
+ if (_loginContext.AccountId > 0 && result.FreeProportion == 0)
|
|
|
|
+ result.IsBuy = true;
|
|
|
|
+ else if (_loginContext.AccountId > 0)
|
|
|
|
+ result.IsBuy = await orderRepository.GetExistsAsync(_loginContext.AccountId, id);
|
|
|
|
+ return result;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 获取章节内容
|
|
/// 获取章节内容
|