From d07483d544ffd7b49e146fb4f5fb1d93f4fb25dd Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 26 Jan 2024 09:50:16 -0500 Subject: [PATCH] add requestContentType member --- cgi.d | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/cgi.d b/cgi.d index 43f1923..ba83453 100644 --- a/cgi.d +++ b/cgi.d @@ -1151,6 +1151,7 @@ class Cgi { this.pathInfo = pathInfo; this.queryString = queryString; this.postBody = null; + this.requestContentType = null; } private { @@ -1374,6 +1375,7 @@ class Cgi { files = keepLastOf(filesArray); post = keepLastOf(postArray); this.postBody = pps.postBody; + this.requestContentType = contentType; cleanUpPostDataState(); } @@ -2201,6 +2203,8 @@ class Cgi { files = keepLastOf(filesArray); post = keepLastOf(postArray); postBody = pps.postBody; + this.requestContentType = contentType; + cleanUpPostDataState(); } @@ -2874,6 +2878,14 @@ class Cgi { public immutable string postBody; alias postJson = postBody; // old name + /++ + The content type header of the request. The [postBody] member may hold the actual data (see [postBody] for details). + + History: + Added January 26, 2024 (dub v11.4) + +/ + public immutable string requestContentType; + /* Internal state flags */ private bool outputtedResponseData; private bool noCache = true; @@ -3687,6 +3699,11 @@ mixin template CustomCgiDispatcherMain(CustomCgi, size_t maxContentLength, Prese activePresenter = presenter; scope(exit) activePresenter = null; + if(cgi.pathInfo.length == 0) { + cgi.setResponseLocation(cgi.scriptName ~ "/"); + return; + } + if(cgi.dispatcher!DispatcherArgs(presenter)) return;