videoController.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. using System;
  2. using System.IO;
  3. using GxPress.Service.Interface.Video;
  4. using Microsoft.AspNetCore.Authorization;
  5. using Microsoft.AspNetCore.Hosting;
  6. using Microsoft.AspNetCore.Http;
  7. using Microsoft.AspNetCore.Mvc;
  8. using Microsoft.AspNetCore.StaticFiles;
  9. using Microsoft.Extensions.Caching.Distributed;
  10. using Microsoft.Net.Http.Headers;
  11. namespace GxPress.Api.AppControllers
  12. {
  13. /// <summary>
  14. /// 访问
  15. /// </summary>
  16. [Route("/api/app/video")]
  17. [ApiController]
  18. [Authorize]
  19. public class VideoController : ControllerBase
  20. {
  21. private readonly IWebHostEnvironment _environment;
  22. private readonly IDistributedCache _cache;
  23. private readonly IVideoService videoService;
  24. private IHttpContextAccessor _contextAccessor;
  25. private HttpContext _context { get { return _contextAccessor.HttpContext; } }
  26. public VideoController(IWebHostEnvironment environment, IDistributedCache cache, IVideoService videoService, IHttpContextAccessor contextAccessor)
  27. {
  28. _environment = environment;
  29. _cache = cache;
  30. this.videoService = videoService;
  31. _contextAccessor = contextAccessor;
  32. }
  33. // /// <summary>
  34. // /// 分页视频流
  35. // /// </summary>
  36. // /// <returns></returns>
  37. // [HttpGet]
  38. // [AllowAnonymous]
  39. // public IActionResult GetVideo(int page)
  40. // {
  41. // try
  42. // {
  43. // var path = Common.Tools.StringUtils.GetWebRootPath(_environment.WebRootPath);
  44. // var filepath = path + "/cache/20200428/1588144602647614.mp4";
  45. // FileInfo fileInfo = new FileInfo(filepath);
  46. // var key = $"15881446026476141.mp4{page}";
  47. // var result = _cache.Get(key);
  48. // if (result != null)
  49. // return File(result, "application/octet-stream", fileInfo.Name);
  50. // var blength = 1024 * 1024 * 1;
  51. // byte[] bytsize = new byte[blength];
  52. // //获取文件名后缀
  53. // string extension = Path.GetExtension(filepath);
  54. // //
  55. // videoService.RedisVideo(filepath, bytsize, blength, "15881446026476141.mp4");
  56. // //获取文件流
  57. // using (FileStream stream = new FileStream(filepath, FileMode.OpenOrCreate, FileAccess.ReadWrite))
  58. // {
  59. // while (true)
  60. // {
  61. // int r = stream.Read(bytsize, 0, blength);
  62. // //如果读取到的字节数为0,说明已到达文件结尾,则退出while循
  63. // break;
  64. // }
  65. // stream.Close();
  66. // }
  67. // //获取后缀名
  68. // var ext = fileInfo.Extension;
  69. // new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
  70. // var actionResult = File(bytsize, contenttype ?? "application/octet-stream", fileInfo.Name);
  71. // return actionResult;
  72. // }
  73. // catch (FileNotFoundException e)
  74. // {
  75. // throw new Common.Exceptions.BusinessException(e.Message);
  76. // }
  77. // catch (IOException e)
  78. // {
  79. // throw new Common.Exceptions.BusinessException(e.Message);
  80. // }
  81. // }
  82. /// <summary>
  83. /// 分页视频流
  84. /// </summary>
  85. /// <returns></returns>
  86. [HttpHead]
  87. [AllowAnonymous]
  88. public IActionResult GetVideoInfo()
  89. {
  90. try
  91. {
  92. var path = Common.Tools.StringUtils.GetWebRootPath(_environment.WebRootPath);
  93. var filepath = path + "/cache/20200529/1234.mp4";
  94. FileInfo fileInfo = new FileInfo(filepath);
  95. byte[] bytsize = new byte[fileInfo.Length];
  96. var ext = fileInfo.Extension;
  97. new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
  98. var actionResult = File(bytsize, contenttype ?? "application/octet-stream", fileInfo.Name);
  99. return actionResult;
  100. }
  101. catch (FileNotFoundException e)
  102. {
  103. throw new Common.Exceptions.BusinessException(e.Message);
  104. }
  105. catch (IOException e)
  106. {
  107. throw new Common.Exceptions.BusinessException(e.Message);
  108. }
  109. }
  110. /// <summary>
  111. /// 分页视频流
  112. /// </summary>
  113. /// <returns></returns>
  114. [HttpGet]
  115. [AllowAnonymous]
  116. public IActionResult GetVideo()
  117. {
  118. var range = Request.Headers["Range"].ToString().Replace("bytes=", "");
  119. try
  120. {
  121. var path = Common.Tools.StringUtils.GetWebRootPath(_environment.WebRootPath);
  122. var filepath = path + "/cache/20200529/1234.mp4";
  123. //var filepath = "http://localhost:83/cache/20200428/1588144602647614.mp4";
  124. //从第3个到第12个字节,共10个字节。(0是第一个字节)
  125. var begin = int.Parse(range.Split('-')[0]);
  126. var end = int.Parse(range.Split('-')[1]);
  127. var byteLength = (end - begin)+1;
  128. var bytes = new byte[byteLength];
  129. //var fristBytes = new byte[1024];
  130. FileInfo fileInfo = new FileInfo(filepath);
  131. //获取后缀名
  132. var ext = fileInfo.Extension;
  133. new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
  134. //获取文件流
  135. StreamReader stream = new StreamReader(System.IO.File.OpenRead(filepath));
  136. //stream.BaseStream.Read(fristBytes, 0, 1024);
  137. stream.BaseStream.Seek(begin, SeekOrigin.Begin);
  138. stream.BaseStream.Read(bytes, 0, byteLength);
  139. stream.Close();
  140. //var newBytes = new byte[fristBytes.Length + bytes.Length];
  141. // fristBytes.CopyTo(newBytes, 0);
  142. // bytes.CopyTo(newBytes, fristBytes.Length);
  143. _context.Response.Headers.Add(HeaderNames.AcceptRanges, "bytes");
  144. _context.Response.Headers.Add(HeaderNames.ContentRange, $"bytes {Request.Headers["Range"].ToString()}/{fileInfo.Length}");
  145. _context.Response.StatusCode = 206;
  146. var actionResult = File(bytes, contenttype ?? "application/octet-stream", fileInfo.Name);
  147. return actionResult;
  148. }
  149. catch (Exception ex)
  150. {
  151. throw new Common.Exceptions.BusinessException($"{ex.Message}");
  152. }
  153. }
  154. }
  155. }