FileController.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. using GxPress.Auth;
  7. using GxPress.Common.Exceptions;
  8. using GxPress.Common.Tools;
  9. using GxPress.Entity;
  10. using GxPress.Repository.Interface;
  11. using GxPress.Request.App.FileLibrary;
  12. using GxPress.Result.App.FileLibrary;
  13. using Microsoft.AspNetCore.Authorization;
  14. using Microsoft.AspNetCore.Hosting;
  15. using Microsoft.AspNetCore.Http;
  16. using Microsoft.AspNetCore.Mvc;
  17. using GxPress.Service.Interface.FileLibrary;
  18. using GxPress.Repository.Interface.VerificationCode;
  19. using Datory;
  20. namespace GxPress.Api.AppControllers
  21. {
  22. [Route("api/app/file")]
  23. [ApiController]
  24. [Authorize]
  25. public class FileController : ControllerBase
  26. {
  27. private readonly IWebHostEnvironment _environment;
  28. private readonly IFileLibraryRepository _fileLibraryRepository;
  29. private readonly IFileLibraryService fileLibraryService;
  30. private readonly ILoginContext _loginContext;
  31. private readonly IVerificationCodeRepository verificationCodeRepository;
  32. public FileController(IWebHostEnvironment environment, IFileLibraryRepository fileLibraryRepository, ILoginContext loginContext, IFileLibraryService fileLibraryService, IVerificationCodeRepository verificationCodeRepository)
  33. {
  34. _environment = environment;
  35. _fileLibraryRepository = fileLibraryRepository;
  36. _loginContext = loginContext;
  37. this.fileLibraryService = fileLibraryService;
  38. this.verificationCodeRepository = verificationCodeRepository;
  39. }
  40. /// <summary>
  41. /// App上传
  42. /// </summary>
  43. /// <param name="file"></param>
  44. /// <returns></returns>
  45. [AllowAnonymous]
  46. [RequestSizeLimit(900_000_000)]
  47. [HttpPost("upload")]
  48. public async Task<ResultPath> Upload(IFormFile file)
  49. {
  50. if (file == null) throw new BusinessException("请选择需要上传的文件");
  51. byte[] bytes;
  52. await using (var ms = new MemoryStream())
  53. {
  54. file.CopyTo(ms);
  55. bytes = ms.ToArray();
  56. }
  57. var saveResult = FileHelper.SaveFile(StringUtils.GetWebRootPath(_environment.WebRootPath), file.FileName,
  58. bytes);
  59. saveResult.AbsolutePath = "https://" + Request.Host.Host +
  60. (Request.Host.Port > 0 ? $":{Request.Host.Port}" : string.Empty) +
  61. saveResult.RelativePath;
  62. saveResult.FileName = file.FileName;
  63. saveResult.FileType = saveResult.FileName.Split('.')[saveResult.FileName.Split('.').Length - 1];
  64. //图片种类
  65. string imageType =
  66. "bmp,jpg,jpeg,png,tif,gif,pcx,tga,exif,fpx,svg,psd,cdr,pcd,dxf,ufo,eps,ai,raw,wmf,webp";
  67. var imageTypeList = StringUtils.StringCollectionToStringList(imageType);
  68. if (imageTypeList.Contains(saveResult.FileType.ToLower()))
  69. {
  70. saveResult.FileType = "image";
  71. saveResult.MinAbsolutePath = StringUtils.AddDomainMin(saveResult.RelativePath);
  72. }
  73. //添加
  74. var fileLibrary = new FileLibrary
  75. {
  76. FileName = saveResult.FileName,
  77. FileType = saveResult.FileType,
  78. FileUrl = saveResult.RelativePath,
  79. UserId = 0,
  80. Size = file.Length
  81. };
  82. saveResult.Size = file.Length;
  83. saveResult.FileId = await fileLibraryService.InsertAsync(fileLibrary);
  84. return saveResult;
  85. }
  86. /// <summary>
  87. /// App多文件上传
  88. /// </summary>
  89. /// <param name="file"></param>
  90. /// <returns></returns>
  91. [HttpPost("uploads")]
  92. [RequestSizeLimit(900_000_000)]
  93. [AllowAnonymous]
  94. public async Task<List<ResultPath>> Uploads(List<IFormFile> file)
  95. {
  96. if (file == null) throw new BusinessException("请选择需要上传的文件");
  97. List<ResultPath> result = new List<ResultPath>();
  98. foreach (var item in file)
  99. {
  100. byte[] bytes;
  101. await using (var ms = new MemoryStream())
  102. {
  103. item.CopyTo(ms);
  104. bytes = ms.ToArray();
  105. }
  106. var saveResult = FileHelper.SaveFile(StringUtils.GetWebRootPath(_environment.WebRootPath), item.FileName,
  107. bytes);
  108. saveResult.AbsolutePath = "https://" + Request.Host.Host +
  109. (Request.Host.Port > 0 ? $":{Request.Host.Port}" : string.Empty) +
  110. saveResult.RelativePath;
  111. saveResult.FileName = item.FileName;
  112. saveResult.FileType = item.FileName.Split('.')[item.FileName.Split('.').Length - 1];
  113. //图片种类
  114. string imageType =
  115. "bmp,jpg,jpeg,png,tif,gif,pcx,tga,exif,fpx,svg,psd,cdr,pcd,dxf,ufo,eps,ai,raw,wmf,webp";
  116. var imageTypeList = StringUtils.StringCollectionToStringList(imageType);
  117. if (imageTypeList.Contains(saveResult.FileType.ToLower()))
  118. {
  119. saveResult.MinAbsolutePath = StringUtils.AddDomainMin(saveResult.RelativePath);
  120. if (saveResult.FileType.ToLower() == "webp")
  121. saveResult = Common.Tools.FileHelper.WebPToImage(StringUtils.GetWebRootPath(_environment.WebRootPath), item.FileName, saveResult, Request.Scheme + "://" + Request.Host.Host +
  122. (Request.Host.Port > 0 ? $":{Request.Host.Port}" : string.Empty));
  123. saveResult.FileType = "image";
  124. }
  125. //添加
  126. var fileLibrary = new FileLibrary
  127. {
  128. FileName = saveResult.FileName,
  129. FileType = saveResult.FileType,
  130. FileUrl = saveResult.RelativePath,
  131. UserId = 0,
  132. Size = item.Length
  133. };
  134. saveResult.Size = item.Length;
  135. saveResult.FileId = await _fileLibraryRepository.InsertAsync(fileLibrary);
  136. result.Add(saveResult);
  137. }
  138. return result;
  139. }
  140. /// <summary>
  141. /// 根据ID查询文件数据
  142. /// </summary>
  143. /// <param name="id"></param>
  144. /// <returns></returns>
  145. [HttpGet("{id}")]
  146. public async Task<FileLibraryResult> GetFileLibraryById(int id)
  147. {
  148. return await _fileLibraryRepository.GetFileLibraryByIdAsync(id);
  149. }
  150. /// <summary>
  151. /// 根据ID获取文件数据
  152. /// </summary>
  153. /// <param name="ids"></param>
  154. /// <returns></returns>
  155. [HttpPost("find")]
  156. public async Task<IEnumerable<FileLibraryResult>> GetFileLibraryByIds([FromBody] GetFileLibraryByIdsRequest ids)
  157. {
  158. return await _fileLibraryRepository.GetFileLibraryByIdsAsync(ids.FileLibraryByIds);
  159. }
  160. /// <summary>
  161. /// App多文件上传
  162. /// </summary>
  163. /// <param name="file"></param>
  164. /// <param name="code"></param>
  165. /// <returns></returns>
  166. [HttpPost("upload-files")]
  167. [RequestSizeLimit(900_000_000)]
  168. [AllowAnonymous]
  169. public async Task<List<ResultPath>> UploadFiles(List<IFormFile> file, [FromForm] string code)
  170. {
  171. if (string.IsNullOrWhiteSpace(code))
  172. throw new BusinessException("code无效或为空值");
  173. if (file == null) throw new BusinessException("请选择需要上传的文件");
  174. //获取verificationCode
  175. var verificationCode = await verificationCodeRepository.GetAsync(Q.Where(nameof(Entity.VerificationCode.VerificationCode.Code), code).OrderByDesc(nameof(Entity.VerificationCode.VerificationCode.CreatedDate)));
  176. if (verificationCode == null)
  177. throw new BusinessException("验证码无效");
  178. var verificationCodeTime = Convert.ToDateTime(verificationCode.CreatedDate).AddMinutes(verificationCode.ExpireTime);
  179. if (verificationCodeTime < DateTime.Now)
  180. throw new BusinessException("验证码已经过期");
  181. List<ResultPath> result = new List<ResultPath>();
  182. foreach (var item in file)
  183. {
  184. byte[] bytes;
  185. await using (var ms = new MemoryStream())
  186. {
  187. item.CopyTo(ms);
  188. bytes = ms.ToArray();
  189. }
  190. var saveResult = FileHelper.SaveFile(StringUtils.GetWebRootPath(_environment.WebRootPath), item.FileName,
  191. bytes);
  192. saveResult.AbsolutePath = Request.Scheme + "://" + Request.Host.Host +
  193. (Request.Host.Port > 0 ? $":{Request.Host.Port}" : string.Empty) +
  194. saveResult.RelativePath;
  195. saveResult.FileName = item.FileName;
  196. saveResult.FileType = item.FileName.Split('.')[item.FileName.Split('.').Length - 1];
  197. //图片种类
  198. string imageType =
  199. "bmp,jpg,jpeg,png,tif,gif,pcx,tga,exif,fpx,svg,psd,cdr,pcd,dxf,ufo,eps,ai,raw,wmf,webp";
  200. var imageTypeList = StringUtils.StringCollectionToStringList(imageType);
  201. if (imageTypeList.Contains(saveResult.FileType.ToLower()))
  202. {
  203. saveResult.FileType = "image";
  204. saveResult.MinAbsolutePath = StringUtils.AddDomainMin(saveResult.RelativePath);
  205. }
  206. //
  207. //添加
  208. var fileLibrary = new FileLibrary
  209. {
  210. FileName = saveResult.FileName,
  211. FileType = saveResult.FileType,
  212. FileUrl = saveResult.RelativePath,
  213. UserId = verificationCode.UserId,
  214. Size = item.Length
  215. };
  216. saveResult.Size = item.Length;
  217. saveResult.FileId = await fileLibraryService.InsertAsync(fileLibrary);
  218. result.Add(saveResult);
  219. }
  220. return result;
  221. }
  222. }
  223. }