在ASP.Net Core中请求内容解压缩

编程入门 行业动态 更新时间:2024-10-24 16:26:11
本文介绍了在ASP.Net Core中请求内容解压缩的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

有时我需要将较大的JSON请求有效载荷发布到我的ASP.Net Core Controllers中.有效载荷的大小保证了压缩(至少在我看来).由于ASP.Net Core Controllers似乎不支持开箱即用的压缩请求内容,因此我推出了自己的中间件.

执行此操作非常简单,以至于我不确定是否在这里丢失了某些内容.是因为有一种内置的方法来实现此目的,还是因为我从安全性或性能的角度犯了一些重大错误?

public class GzipRequestContentEncodingMiddleware { public GzipRequestContentEncodingMiddleware(RequestDelegate next) { if (next == null) throw new ArgumentNullException(nameof(next)); this.next = next; } private readonly RequestDelegate next; private const string ContentEncodingHeader = "Content-Encoding"; private const string ContentEncodingGzip = "gzip"; private const string ContentEncodingDeflate = "deflate"; public async Task Invoke(HttpContext context) { if (context.Request.Headers.Keys.Contains(ContentEncodingHeader) && (context.Request.Headers[ContentEncodingHeader] == ContentEncodingGzip || context.Request.Headers[ContentEncodingHeader] == ContentEncodingDeflate)) { var contentEncoding = context.Request.Headers[ContentEncodingHeader]; context.Request.Headers.Remove(ContentEncodingHeader); var destination = new MemoryStream(); using (var decompressor = contentEncoding == ContentEncodingGzip ? (Stream) new GZipStream(context.Request.Body, CompressionMode.Decompress, true) : (Stream) new DeflateStream(context.Request.Body, CompressionMode.Decompress, true)) { await decompressor.CopyToAsync(destination); } destination.Seek(0, SeekOrigin.Begin); context.Request.Body = destination; context.Request.Headers["Content-Length"] = destination.Length.ToString(CultureInfo.InvariantCulture); } await next(context); } }

解决方案

我知道这是一篇很老的文章,但是如果万一它对某人有所帮助,那么这里有一个nuget包,可以在核心中执行请求解压缩

github/alexanderkozlenko/aspnetcore-request-decompression

I sometimes need to post larger JSON request payloads to my ASP.Net Core Controllers. The size of the payload warrants (at least in my opinion) compressing it. Because ASP.Net Core Controllers do not appear to support compressed request content out of the box, I've rolled my own middleware.

Implementing this was so trivial that I'm not sure if I'm missing something here. Either because there's a built-in way to achieve this or because I made some major mistake from a security- or performance standpoint?

public class GzipRequestContentEncodingMiddleware { public GzipRequestContentEncodingMiddleware(RequestDelegate next) { if (next == null) throw new ArgumentNullException(nameof(next)); this.next = next; } private readonly RequestDelegate next; private const string ContentEncodingHeader = "Content-Encoding"; private const string ContentEncodingGzip = "gzip"; private const string ContentEncodingDeflate = "deflate"; public async Task Invoke(HttpContext context) { if (context.Request.Headers.Keys.Contains(ContentEncodingHeader) && (context.Request.Headers[ContentEncodingHeader] == ContentEncodingGzip || context.Request.Headers[ContentEncodingHeader] == ContentEncodingDeflate)) { var contentEncoding = context.Request.Headers[ContentEncodingHeader]; context.Request.Headers.Remove(ContentEncodingHeader); var destination = new MemoryStream(); using (var decompressor = contentEncoding == ContentEncodingGzip ? (Stream) new GZipStream(context.Request.Body, CompressionMode.Decompress, true) : (Stream) new DeflateStream(context.Request.Body, CompressionMode.Decompress, true)) { await decompressor.CopyToAsync(destination); } destination.Seek(0, SeekOrigin.Begin); context.Request.Body = destination; context.Request.Headers["Content-Length"] = destination.Length.ToString(CultureInfo.InvariantCulture); } await next(context); } }

解决方案

I know that this is a pretty old post, but just in case if it helps someone, here's a nuget package to perform Request Decompression in core

github/alexanderkozlenko/aspnetcore-request-decompression

更多推荐

在ASP.Net Core中请求内容解压缩

本文发布于:2023-11-16 20:51:25,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1607418.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:解压缩   内容   ASP   Net   Core

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!