didnt keep cookies on redirect which could lead to endless cycle

This commit is contained in:
Adam D. Ruppe 2022-07-26 14:21:44 -04:00
parent 86e83e4015
commit a693ff27d0
1 changed files with 12 additions and 3 deletions

15
http2.d
View File

@ -2135,6 +2135,10 @@ class HttpRequest {
responseData = HttpResponse.init;
headerReadingState = HeaderReadingState.init;
bodyReadingState = BodyReadingState.init;
if(client !is null) {
// FIXME: this won't clear cookies that were cleared in another request
client.populateCookies(this); // they might have changed in the previous redirection cycle!
}
state = State.unsent;
stillAlive = false;
sendPrivate(false);
@ -2513,17 +2517,22 @@ class HttpClient {
request.requestParameters.bodyData = bodyData;
request.requestParameters.contentType = contentType;
populateCookies(request);
return request;
}
private void populateCookies(HttpRequest request) {
// FIXME: what about expiration and the like? or domain/path checks? or Secure checks?
// FIXME: is uri.host correct? i think it should include port number too. what fun.
if(auto cookies = ""/*uri.host*/ in this.cookies) {
foreach(cookie; *cookies)
request.requestParameters.cookies[cookie.name] = cookie.value;
}
return request;
}
/// ditto
HttpRequest request(Uri uri, FormData fd, HttpVerb method = HttpVerb.POST) {
return request(uri, method, fd.toBytes, fd.contentType);