WebMediaController.cs 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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, _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. /// <summary>
  98. /// 分页视频流
  99. /// </summary>
  100. /// <returns></returns>
  101. [HttpPost("video")]
  102. [AllowAnonymous]
  103. public async Task<IActionResult> Video(VideoMediaFileStreamRequest request)
  104. {
  105. //获取文件
  106. // var mediaLibrary = await mediaLibraryRepository.GetAsync(request.MediaLibraryId);
  107. var filepath = "wwwroot" + "/cache/20200529/456789.mp4";
  108. //获取文件流
  109. var stream = System.IO.File.OpenRead(filepath);
  110. return new FileStreamResult(stream, new MediaTypeHeaderValue("video/mp4")) { EnableRangeProcessing = true };
  111. }
  112. /// <summary>
  113. /// 分页视频流
  114. /// </summary>
  115. /// <returns></returns>
  116. [HttpPost]
  117. [AllowAnonymous]
  118. public async Task<IActionResult> GetVideo(VideoMediaFileStreamRequest request)
  119. {
  120. var range = Request.Headers["Range"].ToString().Replace("bytes=", "");
  121. try
  122. {
  123. if (request.MediaLibraryId == 0)
  124. throw new BusinessException("不存在");
  125. if (string.IsNullOrEmpty(range))
  126. throw new BusinessException("服务器异常");
  127. //获取文件
  128. var mediaLibrary = await mediaLibraryRepository.GetAsync(request.MediaLibraryId);
  129. var filepath = "wwwroot" + mediaLibrary.FileUrl;
  130. //var filepath = "http://localhost:83/cache/20200428/1588144602647614.mp4";
  131. //从第3个到第12个字节,共10个字节。(0是第一个字节)
  132. var begin = int.Parse(range.Split('-')[0]);
  133. var end = int.Parse(range.Split('-')[1]);
  134. var byteLength = (end - begin) + 1;
  135. var bytes = new byte[byteLength];
  136. //var fristBytes = new byte[1024];
  137. FileInfo fileInfo = new FileInfo(filepath);
  138. //获取后缀名
  139. var ext = fileInfo.Extension;
  140. new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
  141. //获取文件流
  142. StreamReader stream = new StreamReader(System.IO.File.OpenRead(filepath));
  143. //stream.BaseStream.Read(fristBytes, 0, 1024);
  144. stream.BaseStream.Seek(begin, SeekOrigin.Begin);
  145. stream.BaseStream.Read(bytes, 0, byteLength);
  146. stream.Close();
  147. //var newBytes = new byte[fristBytes.Length + bytes.Length];
  148. // fristBytes.CopyTo(newBytes, 0);
  149. // bytes.CopyTo(newBytes, fristBytes.Length);
  150. _context.Response.Headers.Add(HeaderNames.AcceptRanges, "bytes");
  151. _context.Response.Headers.Add(HeaderNames.ContentRange, $"bytes {Request.Headers["Range"].ToString()}/{fileInfo.Length}");
  152. _context.Response.StatusCode = 206;
  153. var actionResult = File(bytes, contenttype ?? "application/octet-stream", fileInfo.Name);
  154. return actionResult;
  155. }
  156. catch (Exception ex)
  157. {
  158. throw new BusinessException($"{ex.Message}");
  159. }
  160. }
  161. /// <summary>
  162. /// 分页视频流
  163. /// </summary>
  164. /// <returns></returns>
  165. [HttpHead("header/{id}")]
  166. [AllowAnonymous]
  167. public async Task<IActionResult> GetVideoInfo(int id)
  168. {
  169. try
  170. {
  171. var mediaLibrary = await mediaLibraryRepository.GetAsync(id);
  172. var filepath = "wwwroot" + mediaLibrary.FileUrl;
  173. FileInfo fileInfo = new FileInfo(filepath);
  174. byte[] bytsize = new byte[fileInfo.Length];
  175. var ext = fileInfo.Extension;
  176. new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
  177. var actionResult = File(bytsize, contenttype ?? "application/octet-stream", fileInfo.Name);
  178. return actionResult;
  179. }
  180. catch (FileNotFoundException e)
  181. {
  182. throw new Common.Exceptions.BusinessException(e.Message);
  183. }
  184. catch (IOException e)
  185. {
  186. throw new Common.Exceptions.BusinessException(e.Message);
  187. }
  188. }
  189. [HttpGet("html")]
  190. [AllowAnonymous]
  191. public string GetHtmlUrl()
  192. {
  193. var str = @"wwwroot/123456.txt";
  194. return Common.Tools.HtmlAgilityPackHelper.GetHmtlContent(str);
  195. }
  196. }
  197. }