From e1d6942ceef25e8b369832e147f756e34c5bc7bb Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 31 Jul 2023 12:25:50 -0400 Subject: [PATCH] default headers in client option --- http2.d | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/http2.d b/http2.d index 6b5e998..28f784f 100644 --- a/http2.d +++ b/http2.d @@ -10,7 +10,7 @@ It has no dependencies for basic operation, but does require OpenSSL - libraries (or compatible) to be support HTTPS. This dynamically loaded + libraries (or compatible) to support HTTPS. This dynamically loaded on-demand (meaning it won't be loaded if you don't use it, but if you do use it, the openssl dynamic libraries must be found in the system search path). @@ -2784,6 +2784,25 @@ class HttpClient { +/ bool defaultVerifyPeer = true; + /++ + Adds a header to be automatically appended to each request created through this client. + + If you add duplicate headers, it will add multiple copies. + + You should NOT use this to add headers that can be set through other properties like [userAgent], [authorization], or [setCookie]. + + History: + Added July 12, 2023 + +/ + void addDefaultHeader(string key, string value) { + defaultHeaders ~= key ~ ": " ~ value; + } + + private string[] defaultHeaders; + + // FIXME: getCookies api + // FIXME: an easy way to download files + // FIXME: try to not make these static private static string certFilename; private static string keyFilename; @@ -2842,6 +2861,8 @@ class HttpClient { request.requestParameters.bodyData = bodyData; request.requestParameters.contentType = contentType; + request.requestParameters.headers = this.defaultHeaders; + populateCookies(request); return request;