WebMediaController.cs 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. using System;
  2. using System.IO;
  3. using System.Threading.Tasks;
  4. using GxPress.Auth;
  5. using GxPress.Common.Exceptions;
  6. using GxPress.Repository.Interface.Media;
  7. using GxPress.Request.Media;
  8. using GxPress.Result.Media;
  9. using GxPress.Service.Interface.Media;
  10. using Microsoft.AspNetCore.Authorization;
  11. using Microsoft.AspNetCore.Http;
  12. using Microsoft.AspNetCore.Mvc;
  13. using Microsoft.AspNetCore.StaticFiles;
  14. using Microsoft.Net.Http.Headers;
  15. using GxPress.Repository.Interface.Order;
  16. namespace GxPress.Api.WebControllers
  17. {
  18. /// <summary>
  19. /// 媒体
  20. /// </summary>
  21. [Route("api/web/media")]
  22. [ApiController]
  23. [Authorize]
  24. public class WebMediaController : Controller
  25. {
  26. private readonly IMediaRepository mediaRepository;
  27. private readonly ILoginContext _loginContext;
  28. private readonly IMediaService mediaService;
  29. private IHttpContextAccessor _contextAccessor;
  30. private readonly IMediaLibraryRepository mediaLibraryRepository;
  31. private HttpContext _context { get { return _contextAccessor.HttpContext; } }
  32. private readonly IOrderRepository orderRepository;
  33. public WebMediaController(IMediaRepository mediaRepository, ILoginContext _loginContext, IMediaService mediaService, IHttpContextAccessor contextAccessor, IMediaLibraryRepository mediaLibraryRepository, IOrderRepository orderRepository)
  34. {
  35. this.mediaRepository = mediaRepository;
  36. this._loginContext = _loginContext;
  37. this.mediaService = mediaService;
  38. _contextAccessor = contextAccessor;
  39. this.mediaLibraryRepository = mediaLibraryRepository;
  40. this.orderRepository = orderRepository;
  41. }
  42. /// <summary>
  43. /// 详情
  44. /// </summary>
  45. /// <param name="id"></param>
  46. /// <returns></returns>
  47. [HttpGet("{id}")]
  48. [AllowAnonymous]
  49. public async Task<MediaResult> GetAsync(int id)
  50. {
  51. return await mediaService.GetAsync(id);
  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);
  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. return await mediaService.GetBookMediaContentResultAsync(request);
  95. }
  96. /// <summary>
  97. /// 分页视频流
  98. /// </summary>
  99. /// <returns></returns>
  100. [HttpPost]
  101. [AllowAnonymous]
  102. public async Task<IActionResult> GetVideo(VideoMediaFileStreamRequest request)
  103. {
  104. var range = Request.Headers["Range"].ToString().Replace("bytes=", "");
  105. try
  106. {
  107. if (request.MediaLibraryId == 0)
  108. throw new BusinessException("不存在");
  109. if (string.IsNullOrEmpty(range))
  110. throw new BusinessException("服务器异常");
  111. //获取文件
  112. var mediaLibrary = await mediaLibraryRepository.GetAsync(request.MediaLibraryId);
  113. var filepath = "wwwroot" + mediaLibrary.FileUrl;
  114. //var filepath = "http://localhost:83/cache/20200428/1588144602647614.mp4";
  115. //从第3个到第12个字节,共10个字节。(0是第一个字节)
  116. var begin = int.Parse(range.Split('-')[0]);
  117. var end = int.Parse(range.Split('-')[1]);
  118. var byteLength = (end - begin) + 1;
  119. var bytes = new byte[byteLength];
  120. //var fristBytes = new byte[1024];
  121. FileInfo fileInfo = new FileInfo(filepath);
  122. //获取后缀名
  123. var ext = fileInfo.Extension;
  124. new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
  125. //获取文件流
  126. StreamReader stream = new StreamReader(System.IO.File.OpenRead(filepath));
  127. //stream.BaseStream.Read(fristBytes, 0, 1024);
  128. stream.BaseStream.Seek(begin, SeekOrigin.Begin);
  129. stream.BaseStream.Read(bytes, 0, byteLength);
  130. stream.Close();
  131. //var newBytes = new byte[fristBytes.Length + bytes.Length];
  132. // fristBytes.CopyTo(newBytes, 0);
  133. // bytes.CopyTo(newBytes, fristBytes.Length);
  134. _context.Response.Headers.Add(HeaderNames.AcceptRanges, "bytes");
  135. _context.Response.Headers.Add(HeaderNames.ContentRange, $"bytes {Request.Headers["Range"].ToString()}/{fileInfo.Length}");
  136. _context.Response.StatusCode = 206;
  137. var actionResult = File(bytes, contenttype ?? "application/octet-stream", fileInfo.Name);
  138. return actionResult;
  139. }
  140. catch (Exception ex)
  141. {
  142. throw new BusinessException($"{ex.Message}");
  143. }
  144. }
  145. /// <summary>
  146. /// 分页视频流
  147. /// </summary>
  148. /// <returns></returns>
  149. [HttpHead("header/{id}")]
  150. [AllowAnonymous]
  151. public async Task<IActionResult> GetVideoInfo(int id)
  152. {
  153. try
  154. {
  155. var mediaLibrary = await mediaLibraryRepository.GetAsync(id);
  156. var filepath = "wwwroot" + mediaLibrary.FileUrl;
  157. FileInfo fileInfo = new FileInfo(filepath);
  158. byte[] bytsize = new byte[fileInfo.Length];
  159. var ext = fileInfo.Extension;
  160. new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
  161. var actionResult = File(bytsize, contenttype ?? "application/octet-stream", fileInfo.Name);
  162. return actionResult;
  163. }
  164. catch (FileNotFoundException e)
  165. {
  166. throw new Common.Exceptions.BusinessException(e.Message);
  167. }
  168. catch (IOException e)
  169. {
  170. throw new Common.Exceptions.BusinessException(e.Message);
  171. }
  172. }
  173. }
  174. }