MediaController.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. using System.Threading.Tasks;
  2. using GxPress.Auth;
  3. using GxPress.Repository.Interface.Media;
  4. using GxPress.Repository.Interface.Order;
  5. using GxPress.Request.Media;
  6. using GxPress.Result.Media;
  7. using GxPress.Service.Interface.Media;
  8. using Microsoft.AspNetCore.Authorization;
  9. using Microsoft.AspNetCore.Http;
  10. using Microsoft.AspNetCore.Mvc;
  11. namespace GxPress.Api.AppControllers
  12. {
  13. /// <summary>
  14. /// 媒体
  15. /// </summary>
  16. [Route("api/app/media")]
  17. [ApiController]
  18. [Authorize]
  19. public class MediaController : Controller
  20. {
  21. private readonly IMediaRepository mediaRepository;
  22. private readonly ILoginContext _loginContext;
  23. private readonly IMediaService mediaService;
  24. private IHttpContextAccessor _contextAccessor;
  25. private readonly IMediaLibraryRepository mediaLibraryRepository;
  26. private HttpContext _context { get { return _contextAccessor.HttpContext; } }
  27. private readonly IOrderRepository orderRepository;
  28. public MediaController(IMediaRepository mediaRepository, ILoginContext _loginContext, IMediaService mediaService, IHttpContextAccessor contextAccessor, IMediaLibraryRepository mediaLibraryRepository, IOrderRepository orderRepository)
  29. {
  30. this.mediaRepository = mediaRepository;
  31. this._loginContext = _loginContext;
  32. this.mediaService = mediaService;
  33. _contextAccessor = contextAccessor;
  34. this.mediaLibraryRepository = mediaLibraryRepository;
  35. this.orderRepository = orderRepository;
  36. }
  37. /// <summary>
  38. /// 详情
  39. /// </summary>
  40. /// <param name="id"></param>
  41. /// <returns></returns>
  42. [HttpGet("{id}")]
  43. [AllowAnonymous]
  44. public async Task<MediaResult> GetAsync(int id)
  45. {
  46. var result = await mediaService.GetAsync(id);
  47. if (_loginContext.AccountId > 0 && result.FreeProportion == 0)
  48. result.IsBuy = true;
  49. else if (_loginContext.AccountId > 0)
  50. result.IsBuy = await orderRepository.GetExistsAsync(_loginContext.AccountId, id);
  51. return result;
  52. }
  53. /// <summary>
  54. /// 书籍详情
  55. /// /// </summary>
  56. /// <param name="id"></param>
  57. /// <returns></returns>
  58. [HttpGet("book/{id}")]
  59. [AllowAnonymous]
  60. public async Task<BookMediaResult> GetBookMediaResult(int id)
  61. {
  62. var result = await mediaService.GetBookMediaResultAsync(id, _loginContext.AccountId);
  63. if (_loginContext.AccountId > 0 && result.FreeProportion == 0)
  64. result.IsBuy = true;
  65. else if (_loginContext.AccountId > 0)
  66. result.IsBuy = await orderRepository.GetExistsAsync(_loginContext.AccountId, id);
  67. return result;
  68. }
  69. /// <summary>
  70. /// 获取视频详情
  71. /// </summary>
  72. /// <param name="id"></param>
  73. /// <returns></returns>
  74. [HttpGet("video/{id}")]
  75. [AllowAnonymous]
  76. public async Task<VideoMediaResult> GetVideoMediaResultAsync(int id)
  77. {
  78. var result = await mediaService.GetVideoMediaResultAsync(id);
  79. if (_loginContext.AccountId > 0 && result.FreeProportion == 0)
  80. result.IsBuy = true;
  81. else if (_loginContext.AccountId > 0)
  82. result.IsBuy = await orderRepository.GetExistsAsync(_loginContext.AccountId, id);
  83. return result;
  84. }
  85. /// <summary>
  86. /// 获取章节内容
  87. /// </summary>
  88. /// <param name="request"></param>
  89. /// <returns></returns>
  90. [HttpPost("book/content")]
  91. [AllowAnonymous]
  92. public async Task<string> GetBookMediaContentResultAsync(BookCatalogRequest request)
  93. {
  94. request.UserId = _loginContext.AccountId;
  95. return await mediaService.GetBookMediaContentResultAsync(request);
  96. }
  97. }
  98. }