ThumbnailMiddleware.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. using Microsoft.Extensions.Options;
  2. using OrBit.MesFileServiceNode.Host.Model;
  3. using System.Drawing;
  4. using System.Drawing.Imaging;
  5. namespace OrBit.MesFileServiceNode.Host.Middleware
  6. {
  7. public class ThumbnailMiddleware : IMiddleware
  8. {
  9. private NodeConfig _config;
  10. public ThumbnailMiddleware(IOptions<NodeConfig> config)
  11. {
  12. _config = config.Value;
  13. }
  14. public Task InvokeAsync(HttpContext context, RequestDelegate next)
  15. {
  16. if (context.Request.Query.ContainsKey("w") || context.Request.Query.ContainsKey("h"))
  17. {
  18. var ext = Path.GetExtension(context.Request.Path);
  19. //不能处理缩略图
  20. if (!_config.ThumbnailExts.Contains(ext))
  21. {
  22. return next.Invoke(context);
  23. }
  24. var w = int.Parse(context.Request.Query["w"].FirstOrDefault() ?? "0");
  25. var h = int.Parse(context.Request.Query["h"].FirstOrDefault() ?? "0");
  26. var filePath = context.Request.Path.Value.Replace(_config.VirtualPath, _config.PhysicalPath);
  27. var addStr = "." + w + "_" + h + ext;
  28. var newPath = filePath + addStr;
  29. ////修改Path
  30. context.Request.Path = context.Request.Path + addStr;
  31. context.Request.QueryString = new QueryString("");
  32. //缩略图存在
  33. if (File.Exists(newPath))
  34. {
  35. return next.Invoke(context);
  36. }
  37. //源文件不存在
  38. if (!File.Exists(filePath))
  39. {
  40. context.Response.StatusCode = 404;
  41. return Task.CompletedTask;
  42. }
  43. using (var image = Image.FromFile(filePath))
  44. {
  45. using (var thumb = image.GetThumbnailImage(w, h, () => false, nint.Zero))
  46. {
  47. thumb.Save(newPath, ImageFormat.Jpeg);
  48. }
  49. }
  50. return next.Invoke(context);
  51. }
  52. else
  53. {
  54. return next.Invoke(context);
  55. }
  56. }
  57. }
  58. }