From 52a6db9e1a216145f36eed057caf87eb46f94e42 Mon Sep 17 00:00:00 2001 From: MattMo Date: Fri, 9 Jun 2023 14:53:41 -0700 Subject: [PATCH] Added ReadAsForm to the RequestExtensions to help with reading form data. Bumped package verison to 1.6.0 --- Rest.Net.Example/Program.cs | 10 +++++++++- Rest.Net/HttpListenerRequestExtensions.cs | 19 +++++++++++++++++++ Rest.Net/Rest.Net.csproj | 2 +- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/Rest.Net.Example/Program.cs b/Rest.Net.Example/Program.cs index bf6573f..4b46750 100644 --- a/Rest.Net.Example/Program.cs +++ b/Rest.Net.Example/Program.cs @@ -82,7 +82,8 @@ namespace MontoyaTech.Rest.Net.Example new Route(HttpRequestMethod.Get, "/auth/", Json), new Route(HttpRequestMethod.Get, "/auth/role", GetRole), new Route(HttpRequestMethod.Post, "/upload", Upload), - new Route(HttpRequestMethod.Get, "/download", Download) + new Route(HttpRequestMethod.Get, "/download", Download), + new Route(HttpRequestMethod.Post, "/form", FormTest) ); string code = listener.GenerateCSharpClient(); @@ -224,5 +225,12 @@ namespace MontoyaTech.Rest.Net.Example { return context.Response.WithStatus(HttpStatusCode.OK).WithText("Hello world"); } + + [RouteGroup("Form")] + [RouteResponse(typeof(Dictionary))] + public static HttpListenerResponse FormTest(HttpListenerContext context) + { + return context.Response.WithStatus(HttpStatusCode.OK).WithJson(context.Request.ReadAsForm()); + } } } diff --git a/Rest.Net/HttpListenerRequestExtensions.cs b/Rest.Net/HttpListenerRequestExtensions.cs index 94bae3f..d42bcd1 100644 --- a/Rest.Net/HttpListenerRequestExtensions.cs +++ b/Rest.Net/HttpListenerRequestExtensions.cs @@ -97,5 +97,24 @@ namespace MontoyaTech.Rest.Net return false; } } + + /// + /// Reads the content of a HttpListenerRequest as http form data and returns it as a dictionary. Any duplicate keys are ignored. + /// + /// + /// A dictionary of keyvalue pairs from the form data. + public static Dictionary ReadAsForm(this HttpListenerRequest request) + { + try + { + using (var input = request.InputStream) + using (var stream = new StreamReader(input)) + return stream.ReadToEnd().Trim().Split('&').Where(value => value.Contains('=')).ToLookup(value => value.Split('=')[0].Trim(), value => value.Split('=')[1].Trim()).ToDictionary(group => group.Key, group => group.FirstOrDefault()); + } + catch + { + return new Dictionary(); + } + } } } diff --git a/Rest.Net/Rest.Net.csproj b/Rest.Net/Rest.Net.csproj index aeab170..a0fd6b7 100644 --- a/Rest.Net/Rest.Net.csproj +++ b/Rest.Net/Rest.Net.csproj @@ -17,7 +17,7 @@ MontoyaTech.Rest.Net MontoyaTech.Rest.Net True - 1.5.9 + 1.6.0 Logo_Symbol_Black_Outline.png