|
@@ -1,5 +1,8 @@
|
|
|
+using System;
|
|
|
+using System.IO;
|
|
|
using System.Threading.Tasks;
|
|
|
using GxPress.Auth;
|
|
|
+using GxPress.Common.Exceptions;
|
|
|
using GxPress.Repository.Interface.Media;
|
|
|
using GxPress.Request.Media;
|
|
|
using GxPress.Result.Media;
|
|
@@ -7,6 +10,8 @@ using GxPress.Service.Interface.Media;
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
+using Microsoft.AspNetCore.StaticFiles;
|
|
|
+using Microsoft.Net.Http.Headers;
|
|
|
|
|
|
namespace GxPress.Api.WebControllers
|
|
|
{
|
|
@@ -21,13 +26,17 @@ namespace GxPress.Api.WebControllers
|
|
|
private readonly IMediaRepository mediaRepository;
|
|
|
private readonly ILoginContext _loginContext;
|
|
|
private readonly IMediaService mediaService;
|
|
|
- private readonly IHttpContextAccessor httpContextAccessor;
|
|
|
- public WebMediaController(IMediaRepository mediaRepository, ILoginContext _loginContext, IMediaService mediaService, IHttpContextAccessor httpContextAccessor)
|
|
|
+ private IHttpContextAccessor _contextAccessor;
|
|
|
+ private readonly IMediaLibraryRepository mediaLibraryRepository;
|
|
|
+ private HttpContext _context { get { return _contextAccessor.HttpContext; } }
|
|
|
+
|
|
|
+ public WebMediaController(IMediaRepository mediaRepository, ILoginContext _loginContext, IMediaService mediaService, IHttpContextAccessor contextAccessor, IMediaLibraryRepository mediaLibraryRepository)
|
|
|
{
|
|
|
this.mediaRepository = mediaRepository;
|
|
|
this._loginContext = _loginContext;
|
|
|
this.mediaService = mediaService;
|
|
|
- this.httpContextAccessor = httpContextAccessor;
|
|
|
+ _contextAccessor = contextAccessor;
|
|
|
+ this.mediaLibraryRepository = mediaLibraryRepository;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 详情
|
|
@@ -53,6 +62,17 @@ namespace GxPress.Api.WebControllers
|
|
|
return await mediaService.GetBookMediaResultAsync(id);
|
|
|
}
|
|
|
/// <summary>
|
|
|
+ /// 获取视频详情
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("video/{id}")]
|
|
|
+ [AllowAnonymous]
|
|
|
+ public async Task<VideoMediaResult> GetVideoMediaResultAsync(int id)
|
|
|
+ {
|
|
|
+ return await mediaService.GetVideoMediaResultAsync(id);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
/// 获取章节内容
|
|
|
/// </summary>
|
|
|
/// <param name="request"></param>
|
|
@@ -63,5 +83,55 @@ namespace GxPress.Api.WebControllers
|
|
|
{
|
|
|
return await mediaService.GetBookMediaContentResultAsync(request);
|
|
|
}
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 分页视频流
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpPost]
|
|
|
+ [AllowAnonymous]
|
|
|
+ public async Task<IActionResult> GetVideo(VideoMediaFileStreamRequest request)
|
|
|
+ {
|
|
|
+ var range = Request.Headers["Range"].ToString().Replace("bytes=", "");
|
|
|
+ try
|
|
|
+ {
|
|
|
+ if (request.MediaLibraryId == 0)
|
|
|
+ throw new BusinessException("不存在");
|
|
|
+ if (string.IsNullOrEmpty(range))
|
|
|
+ throw new BusinessException("服务器异常");
|
|
|
+ //获取文件
|
|
|
+ var mediaLibrary = await mediaLibraryRepository.GetAsync(request.MediaLibraryId);
|
|
|
+ var filepath = "wwwroot" + mediaLibrary.FileUrl;
|
|
|
+ //var filepath = "http://localhost:83/cache/20200428/1588144602647614.mp4";
|
|
|
+ //从第3个到第12个字节,共10个字节。(0是第一个字节)
|
|
|
+ var begin = int.Parse(range.Split('-')[0]);
|
|
|
+ var end = int.Parse(range.Split('-')[1]);
|
|
|
+ var byteLength = (end - begin) + 1;
|
|
|
+ var bytes = new byte[byteLength];
|
|
|
+ //var fristBytes = new byte[1024];
|
|
|
+ FileInfo fileInfo = new FileInfo(filepath);
|
|
|
+ //获取后缀名
|
|
|
+ var ext = fileInfo.Extension;
|
|
|
+ new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
|
|
|
+ //获取文件流
|
|
|
+ StreamReader stream = new StreamReader(System.IO.File.OpenRead(filepath));
|
|
|
+ //stream.BaseStream.Read(fristBytes, 0, 1024);
|
|
|
+ stream.BaseStream.Seek(begin, SeekOrigin.Begin);
|
|
|
+ stream.BaseStream.Read(bytes, 0, byteLength);
|
|
|
+ stream.Close();
|
|
|
+ //var newBytes = new byte[fristBytes.Length + bytes.Length];
|
|
|
+ // fristBytes.CopyTo(newBytes, 0);
|
|
|
+ // bytes.CopyTo(newBytes, fristBytes.Length);
|
|
|
+ _context.Response.Headers.Add(HeaderNames.AcceptRanges, "bytes");
|
|
|
+ _context.Response.Headers.Add(HeaderNames.ContentRange, $"bytes {Request.Headers["Range"].ToString()}/{fileInfo.Length}");
|
|
|
+ _context.Response.StatusCode = 206;
|
|
|
+ var actionResult = File(bytes, contenttype ?? "application/octet-stream", fileInfo.Name);
|
|
|
+ return actionResult;
|
|
|
+ }
|
|
|
+ catch (Exception ex)
|
|
|
+ {
|
|
|
+ throw new BusinessException($"{ex.Message}");
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|