From 855a3f6f65fc65154eeb76ba7bae7e8d4c71375f Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 6 Aug 2022 09:09:19 -0400 Subject: [PATCH] data uri support --- http2.d | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/http2.d b/http2.d index c7e468c..e08a5aa 100644 --- a/http2.d +++ b/http2.d @@ -840,6 +840,8 @@ struct Uri { /// Browsers use a function like this to figure out links in html. Uri basedOn(in Uri baseUrl) const { Uri n = this; // copies + if(n.scheme == "data") + return n; // n.uriInvalidated = true; // make sure we regenerate... // userinfo is not inherited... is this wrong? @@ -1139,6 +1141,50 @@ class HttpRequest { } } + if(this.where.scheme == "data") { + void error(string content) { + responseData.code = 400; + responseData.codeText = "Bad Request"; + responseData.contentType = "text/plain"; + responseData.content = cast(ubyte[]) content; + responseData.contentText = content; + state = State.complete; + return; + } + + auto thing = this.where.path; + // format is: type,data + // type can have ;base64 + auto comma = thing.indexOf(","); + if(comma == -1) + return error("Invalid data uri, no comma found"); + + auto type = thing[0 .. comma]; + auto data = thing[comma + 1 .. $]; + if(type.length == 0) + type = "text/plain"; + + import std.uri; + auto bdata = cast(ubyte[]) decodeComponent(data); + + if(type.indexOf(";base64") != -1) { + import std.base64; + try { + bdata = Base64.decode(bdata); + } catch(Exception e) { + return error(e.msg); + } + } + + responseData.code = 200; + responseData.codeText = "OK"; + responseData.contentType = type; + responseData.content = bdata; + responseData.contentText = cast(string) responseData.content; + state = State.complete; + return; + } + string headers; headers ~= to!string(requestParameters.method); @@ -5347,6 +5393,21 @@ version(Windows) { } } +unittest { + auto client = new HttpClient(); + auto response = client.navigateTo(Uri("data:,Hello%2C%20World%21")).waitForCompletion(); + assert(response.contentTypeMimeType == "text/plain", response.contentType); + assert(response.contentText == "Hello, World!", response.contentText); + + response = client.navigateTo(Uri("data:text/plain;base64,SGVsbG8sIFdvcmxkIQ==")).waitForCompletion(); + assert(response.contentTypeMimeType == "text/plain", response.contentType); + assert(response.contentText == "Hello, World!", response.contentText); + + response = client.navigateTo(Uri("data:text/html,%3Ch1%3EHello%2C%20World%21%3C%2Fh1%3E")).waitForCompletion(); + assert(response.contentTypeMimeType == "text/html", response.contentType); + assert(response.contentText == "

Hello, World!

", response.contentText); +} + version(arsd_http2_unittests) unittest { import core.thread;