This commit is contained in:
Adam D. Ruppe 2019-02-11 14:38:59 -05:00
parent 7bcd3eca8d
commit 13f3709acb
2 changed files with 15 additions and 2 deletions

2
http.d
View File

@ -3,7 +3,7 @@
I no longer work on this, use http2.d instead.
+/
module arsd.http;
deprecated module arsd.http;
import std.socket;

15
http2.d
View File

@ -75,6 +75,20 @@ HttpRequest get(string url) {
return request;
}
HttpRequest post(string url, string[string] req) {
auto client = new HttpClient();
ubyte[] bdata;
foreach(k, v; req) {
if(bdata.length)
bdata ~= cast(ubyte[]) "&";
bdata ~= cast(ubyte[]) encodeComponent(k);
bdata ~= cast(ubyte[]) "=";
bdata ~= cast(ubyte[]) encodeComponent(v);
}
auto request = client.request(Uri(url), HttpVerb.POST, bdata, "application/x-www-form-urlencoded");
return request;
}
/// gets the text off a url. basic operation only.
string getText(string url) {
auto request = get(url);
@ -1090,7 +1104,6 @@ class HttpRequest {
ubyte[] sendBuffer;
HttpResponse responseData;
HttpRequestParameters parameters;
private HttpClient parentClient;
size_t bodyBytesSent;