videoController.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. using System.IO;
  2. using GxPress.Service.Interface.Video;
  3. using Microsoft.AspNetCore.Authorization;
  4. using Microsoft.AspNetCore.Hosting;
  5. using Microsoft.AspNetCore.Mvc;
  6. using Microsoft.AspNetCore.StaticFiles;
  7. using Microsoft.Extensions.Caching.Distributed;
  8. namespace GxPress.Api.AppControllers
  9. {
  10. /// <summary>
  11. /// 访问
  12. /// </summary>
  13. [Route("/api/app/video")]
  14. [ApiController]
  15. [Authorize]
  16. public class VideoController : ControllerBase
  17. {
  18. private readonly IWebHostEnvironment _environment;
  19. private readonly IDistributedCache _cache;
  20. private readonly IVideoService videoService;
  21. public VideoController(IWebHostEnvironment environment, IDistributedCache cache, IVideoService videoService)
  22. {
  23. _environment = environment;
  24. _cache = cache;
  25. this.videoService = videoService;
  26. }
  27. /// <summary>
  28. ///
  29. /// </summary>
  30. /// <returns></returns>
  31. [HttpGet]
  32. [AllowAnonymous]
  33. public IActionResult GetVideo(int page)
  34. {
  35. try
  36. {
  37. var path = Common.Tools.StringUtils.GetWebRootPath(_environment.WebRootPath);
  38. var filepath = path + "/cache/20200428/music.mp4";
  39. FileInfo fileInfo = new FileInfo(filepath);
  40. var key = $"music.mp4{page}";
  41. var result = _cache.Get(key);
  42. if (result != null)
  43. {
  44. return File(result, "application/octet-stream", fileInfo.Name);
  45. }
  46. var blength = 1024 * 1024 * 5;
  47. byte[] bytsize = new byte[blength];
  48. //获取文件名后缀
  49. string extension = Path.GetExtension(filepath);
  50. //
  51. videoService.RedisVideo(filepath, bytsize, blength, "music.mp4");
  52. //获取文件流
  53. using (FileStream stream = new FileStream(filepath, FileMode.OpenOrCreate, FileAccess.ReadWrite))
  54. {
  55. while (true)
  56. {
  57. int r = stream.Read(bytsize, 0, blength);
  58. //如果读取到的字节数为0,说明已到达文件结尾,则退出while循
  59. break;
  60. }
  61. stream.Close();
  62. }
  63. //获取后缀名
  64. var ext = fileInfo.Extension;
  65. new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
  66. return File(bytsize, contenttype ?? "application/octet-stream", fileInfo.Name);
  67. }
  68. catch (FileNotFoundException e)
  69. {
  70. throw new Common.Exceptions.BusinessException(e.Message);
  71. }
  72. catch (IOException e)
  73. {
  74. throw new Common.Exceptions.BusinessException(e.Message);
  75. }
  76. }
  77. }
  78. }