123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- 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;
- 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;
- using GxPress.Repository.Interface.Order;
- namespace GxPress.Api.WebControllers
- {
- /// <summary>
- /// 媒体
- /// </summary>
- [Route("api/web/media")]
- [ApiController]
- [Authorize]
- public class WebMediaController : Controller
- {
- private readonly IMediaRepository mediaRepository;
- private readonly ILoginContext _loginContext;
- private readonly IMediaService mediaService;
- private IHttpContextAccessor _contextAccessor;
- private readonly IMediaLibraryRepository mediaLibraryRepository;
- private HttpContext _context { get { return _contextAccessor.HttpContext; } }
- private readonly IOrderRepository orderRepository;
- public WebMediaController(IMediaRepository mediaRepository, ILoginContext _loginContext, IMediaService mediaService, IHttpContextAccessor contextAccessor, IMediaLibraryRepository mediaLibraryRepository, IOrderRepository orderRepository)
- {
- this.mediaRepository = mediaRepository;
- this._loginContext = _loginContext;
- this.mediaService = mediaService;
- _contextAccessor = contextAccessor;
- this.mediaLibraryRepository = mediaLibraryRepository;
- this.orderRepository = orderRepository;
- }
- /// <summary>
- /// 详情
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- [HttpGet("{id}")]
- [AllowAnonymous]
- public async Task<MediaResult> GetAsync(int id)
- {
- return await mediaService.GetAsync(id);
- }
- /// <summary>
- /// 书籍详情
- /// /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- [HttpGet("book/{id}")]
- [AllowAnonymous]
- public async Task<BookMediaResult> GetBookMediaResult(int id)
- {
- var result = await mediaService.GetBookMediaResultAsync(id);
- if (_loginContext.AccountId > 0 && result.FreeProportion == 0)
- result.IsBuy = true;
- else if (_loginContext.AccountId > 0)
- result.IsBuy = await orderRepository.GetExistsAsync(_loginContext.AccountId, id);
- return result;
- }
- /// <summary>
- /// 获取视频详情
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- [HttpGet("video/{id}")]
- [AllowAnonymous]
- public async Task<VideoMediaResult> GetVideoMediaResultAsync(int id)
- {
- var result = await mediaService.GetVideoMediaResultAsync(id);
- if (_loginContext.AccountId > 0 && result.FreeProportion == 0)
- result.IsBuy = true;
- else if (_loginContext.AccountId > 0)
- result.IsBuy = await orderRepository.GetExistsAsync(_loginContext.AccountId, id);
- return result;
- }
- /// <summary>
- /// 获取章节内容
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [HttpPost("book/content")]
- [AllowAnonymous]
- public async Task<string> GetBookMediaContentResultAsync(BookCatalogRequest request)
- {
- 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}");
- }
- }
- /// <summary>
- /// 分页视频流
- /// </summary>
- /// <returns></returns>
- [HttpHead("header/{id}")]
- [AllowAnonymous]
- public async Task<IActionResult> GetVideoInfo(int id)
- {
- try
- {
- var mediaLibrary = await mediaLibraryRepository.GetAsync(id);
- var filepath = "wwwroot" + mediaLibrary.FileUrl;
- FileInfo fileInfo = new FileInfo(filepath);
- byte[] bytsize = new byte[fileInfo.Length];
- var ext = fileInfo.Extension;
- new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext, out var contenttype);
- var actionResult = File(bytsize, contenttype ?? "application/octet-stream", fileInfo.Name);
- return actionResult;
- }
- catch (FileNotFoundException e)
- {
- throw new Common.Exceptions.BusinessException(e.Message);
- }
- catch (IOException e)
- {
- throw new Common.Exceptions.BusinessException(e.Message);
- }
- }
- }
- }
|