WebMediaController.cs 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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. using System.Collections.Generic;
  17. using GxPress.EnumConst;
  18. using System.Reflection;
  19. using GxPress.Common.Tools;
  20. namespace GxPress.Api.WebControllers
  21. {
  22. /// <summary>
  23. /// 媒体
  24. /// </summary>
  25. [Route("api/web/media")]
  26. [ApiController]
  27. [Authorize]
  28. public class WebMediaController : Controller
  29. {
  30. private readonly IMediaRepository mediaRepository;
  31. private readonly ILoginContext _loginContext;
  32. private readonly IMediaService mediaService;
  33. private IHttpContextAccessor _contextAccessor;
  34. private readonly IMediaLibraryRepository mediaLibraryRepository;
  35. private HttpContext _context { get { return _contextAccessor.HttpContext; } }
  36. private readonly IOrderRepository orderRepository;
  37. public WebMediaController(IMediaRepository mediaRepository, ILoginContext _loginContext, IMediaService mediaService, IHttpContextAccessor contextAccessor, IMediaLibraryRepository mediaLibraryRepository, IOrderRepository orderRepository)
  38. {
  39. this.mediaRepository = mediaRepository;
  40. this._loginContext = _loginContext;
  41. this.mediaService = mediaService;
  42. _contextAccessor = contextAccessor;
  43. this.mediaLibraryRepository = mediaLibraryRepository;
  44. this.orderRepository = orderRepository;
  45. }
  46. /// <summary>
  47. /// 详情
  48. /// </summary>
  49. /// <param name="id"></param>
  50. /// <returns></returns>
  51. [HttpGet("{id}")]
  52. [AllowAnonymous]
  53. public async Task<MediaResult> GetAsync(int id)
  54. {
  55. return await mediaService.GetAsync(id);
  56. }
  57. /// <summary>
  58. /// 书籍详情
  59. /// /// </summary>
  60. /// <param name="id"></param>
  61. /// <returns></returns>
  62. [HttpGet("book/{id}")]
  63. [AllowAnonymous]
  64. public async Task<BookMediaResult> GetBookMediaResult(int id)
  65. {
  66. var result = await mediaService.GetBookMediaResultAsync(id, _loginContext.AccountId);
  67. if (_loginContext.AccountId > 0 && result.FreeProportion == 0)
  68. result.IsBuy = true;
  69. else if (_loginContext.AccountId > 0)
  70. result.IsBuy = await orderRepository.GetExistsAsync(_loginContext.AccountId, id);
  71. return result;
  72. }
  73. /// <summary>
  74. /// 获取视频详情
  75. /// </summary>
  76. /// <param name="id"></param>
  77. /// <returns></returns>
  78. [HttpGet("video/{id}")]
  79. [AllowAnonymous]
  80. public async Task<VideoMediaResult> GetVideoMediaResultAsync(int id)
  81. {
  82. var result = await mediaService.GetVideoMediaResultAsync(id);
  83. if (_loginContext.AccountId > 0 && result.FreeProportion == 0)
  84. result.IsBuy = true;
  85. else if (_loginContext.AccountId > 0)
  86. result.IsBuy = await orderRepository.GetExistsAsync(_loginContext.AccountId, id);
  87. return result;
  88. }
  89. /// <summary>
  90. /// 获取章节内容
  91. /// </summary>
  92. /// <param name="request"></param>
  93. /// <returns></returns>
  94. [HttpPost("book/content")]
  95. [AllowAnonymous]
  96. public async Task<string> GetBookMediaContentResultAsync(BookCatalogRequest request)
  97. {
  98. request.UserId = _loginContext.AccountId;
  99. return await mediaService.GetBookMediaContentResultAsync(request);
  100. }
  101. /// <summary>
  102. /// 分页视频流
  103. /// </summary>
  104. /// <returns></returns>
  105. [HttpPost("video")]
  106. [AllowAnonymous]
  107. public async Task<IActionResult> Video(VideoMediaFileStreamRequest request)
  108. {
  109. //获取文件
  110. // var mediaLibrary = await mediaLibraryRepository.GetAsync(request.MediaLibraryId);
  111. var filepath = "wwwroot" + "/cache/20200529/456789.mp4";
  112. //获取文件流
  113. var stream = System.IO.File.OpenRead(filepath);
  114. return new FileStreamResult(stream, new MediaTypeHeaderValue("video/mp4")) { EnableRangeProcessing = true };
  115. }
  116. /// <summary>
  117. /// 分页视频流
  118. /// </summary>
  119. /// <returns></returns>
  120. [HttpPost]
  121. [AllowAnonymous]
  122. public async Task<IActionResult> GetVideo(VideoMediaFileStreamRequest request)
  123. {
  124. var range = Request.Headers["Range"].ToString().Replace("bytes=", "");
  125. try
  126. {
  127. if (request.MediaLibraryId == 0)
  128. throw new BusinessException("不存在");
  129. if (string.IsNullOrEmpty(range))
  130. throw new BusinessException("服务器异常");
  131. //获取文件
  132. var mediaLibrary = await mediaLibraryRepository.GetAsync(request.MediaLibraryId);
  133. var filepath = "wwwroot" + mediaLibrary.FileUrl;
  134. //var filepath = "http://localhost:83/cache/20200428/1588144602647614.mp4";
  135. //从第3个到第12个字节,共10个字节。(0是第一个字节)
  136. var begin = int.Parse(range.Split('-')[0]);
  137. var end = int.Parse(range.Split('-')[1]);
  138. var byteLength = (end - begin) + 1;
  139. var bytes = new byte[byteLength];
  140. //var fristBytes = new byte[1024];
  141. FileInfo fileInfo = new FileInfo(filepath);
  142. //获取后缀名
  143. var ext = fileInfo.Extension;
  144. new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
  145. //获取文件流
  146. StreamReader stream = new StreamReader(System.IO.File.OpenRead(filepath));
  147. //stream.BaseStream.Read(fristBytes, 0, 1024);
  148. stream.BaseStream.Seek(begin, SeekOrigin.Begin);
  149. stream.BaseStream.Read(bytes, 0, byteLength);
  150. stream.Close();
  151. //var newBytes = new byte[fristBytes.Length + bytes.Length];
  152. // fristBytes.CopyTo(newBytes, 0);
  153. // bytes.CopyTo(newBytes, fristBytes.Length);
  154. _context.Response.Headers.Add(HeaderNames.AcceptRanges, "bytes");
  155. _context.Response.Headers.Add(HeaderNames.ContentRange, $"bytes {Request.Headers["Range"].ToString()}/{fileInfo.Length}");
  156. _context.Response.StatusCode = 206;
  157. var actionResult = File(bytes, contenttype ?? "application/octet-stream", fileInfo.Name);
  158. return actionResult;
  159. }
  160. catch (Exception ex)
  161. {
  162. throw new BusinessException($"{ex.Message}");
  163. }
  164. }
  165. /// <summary>
  166. /// 分页视频流
  167. /// </summary>
  168. /// <returns></returns>
  169. [HttpHead("header/{id}")]
  170. [AllowAnonymous]
  171. public async Task<IActionResult> GetVideoInfo(int id)
  172. {
  173. try
  174. {
  175. var mediaLibrary = await mediaLibraryRepository.GetAsync(id);
  176. var filepath = "wwwroot" + mediaLibrary.FileUrl;
  177. FileInfo fileInfo = new FileInfo(filepath);
  178. byte[] bytsize = new byte[fileInfo.Length];
  179. var ext = fileInfo.Extension;
  180. new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
  181. var actionResult = File(bytsize, contenttype ?? "application/octet-stream", fileInfo.Name);
  182. return actionResult;
  183. }
  184. catch (FileNotFoundException e)
  185. {
  186. throw new Common.Exceptions.BusinessException(e.Message);
  187. }
  188. catch (IOException e)
  189. {
  190. throw new Common.Exceptions.BusinessException(e.Message);
  191. }
  192. }
  193. [HttpGet("html")]
  194. [AllowAnonymous]
  195. public string GetHtmlUrl()
  196. {
  197. var str = @"wwwroot/123456.txt";
  198. return Common.Tools.HtmlAgilityPackHelper.GetHmtlContent(str);
  199. }
  200. /// <summary>
  201. /// 排行榜
  202. /// </summary>
  203. /// <param name="request"></param>
  204. /// <returns></returns>
  205. [HttpPost("ranking-list")]
  206. [AllowAnonymous]
  207. public async Task<RankingListCategoryResult> GetRankingListResults(RankingListRequest request)
  208. {
  209. var result = new RankingListCategoryResult();
  210. result.RankingListResults = await mediaRepository.GetRankingListResults(request);
  211. result.Category = new Dictionary<int, string>();
  212. Type t = typeof(RankingListConst);
  213. Array arrays = Enum.GetValues(t);
  214. for (int i = 0; i < arrays.LongLength; i++)
  215. {
  216. RankingListConst test = (RankingListConst)arrays.GetValue(i);
  217. result.Category.Add((int)test, test.GetDescriptionOriginal());
  218. }
  219. return result;
  220. }
  221. }
  222. }