WebMediaController.cs 9.3 KB

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