AdminFileController.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. using System.IO;
  2. using System.Threading.Tasks;
  3. using GxPress.Common.Exceptions;
  4. using GxPress.Common.Tools;
  5. using Microsoft.AspNetCore.Hosting;
  6. using Microsoft.AspNetCore.Http;
  7. using Microsoft.AspNetCore.Mvc;
  8. namespace GxPress.Api.AdminControllers
  9. {
  10. /// <summary>
  11. /// 文件管理
  12. /// </summary>
  13. [Route("api/admin/file")]
  14. [ApiController]
  15. public class AdminFileController : ControllerBase
  16. {
  17. private readonly IWebHostEnvironment _environment;
  18. public AdminFileController(IWebHostEnvironment environment)
  19. {
  20. _environment = environment;
  21. }
  22. /// <summary>
  23. /// 上传
  24. /// </summary>
  25. /// <param name="file"></param>
  26. /// <returns></returns>
  27. [HttpPost("upload")]
  28. [RequestSizeLimit(900_000_000)]
  29. public async Task<ResultPath> Upload(IFormFile file)
  30. {
  31. if (file == null) throw new BusinessException("请选择需要上传的文件");
  32. byte[] bytes;
  33. await using (var ms = new MemoryStream())
  34. {
  35. file.CopyTo(ms);
  36. bytes = ms.ToArray();
  37. }
  38. var saveResult = FileHelper.SaveFile(StringUtils.GetWebRootPath(_environment.WebRootPath), file.FileName,
  39. bytes);
  40. saveResult.AbsolutePath = Request.Scheme + "s://" + Request.Host.Host +
  41. (Request.Host.Port > 0 ? $":{Request.Host.Port}" : string.Empty) +
  42. saveResult.RelativePath;
  43. return saveResult;
  44. }
  45. //上传文件到本地缓存文件夹,返回一个预览地址
  46. //真正提交的时候把缓存文件异步保存到七牛云
  47. //下载,从七牛云下载文件?
  48. /// <summary>
  49. /// 上传用户Excel
  50. /// </summary>
  51. /// <returns></returns>
  52. [HttpPost("upload-user-excel")]
  53. public async Task<ResultPath> UploadUserExcel(IFormFile file)
  54. {
  55. if (file == null) throw new BusinessException("请选择需要上传的文件");
  56. byte[] bytes;
  57. await using (var ms = new MemoryStream())
  58. {
  59. file.CopyTo(ms);
  60. bytes = ms.ToArray();
  61. }
  62. var saveResult = FileHelper.SaveFile(StringUtils.GetWebRootPath(_environment.WebRootPath), file.FileName,
  63. bytes);
  64. saveResult.AbsolutePath = Request.Scheme + "s://" + Request.Host.Host +
  65. (Request.Host.Port > 0 ? $":{Request.Host.Port}" : string.Empty) +
  66. saveResult.RelativePath;
  67. return saveResult;
  68. }
  69. }
  70. }