Skip to content

Commit 09ffe8d

Browse files
korgoczslischka
authored andcommitted
Update RedirectHelper for path only location
1 parent 778ffb3 commit 09ffe8d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/Fapi/HttpClient/RedirectHelper.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use GuzzleHttp\Psr7\Uri;
66
use Psr\Http\Message\RequestInterface;
77
use Psr\Http\Message\ResponseInterface;
8+
use Psr\Http\Message\UriInterface;
89
use function array_change_key_case;
910
use function in_array;
1011
use function strlen;
@@ -22,7 +23,7 @@ public static function followRedirects(
2223
): ResponseInterface
2324
{
2425
for ($count = 0; $count < $limit; $count++) {
25-
$redirectUrl = static::getRedirectUrl($response);
26+
$redirectUrl = static::getRedirectUrl($response, $request->getUri());
2627

2728
if ($redirectUrl === null) {
2829
return $response;
@@ -35,7 +36,7 @@ public static function followRedirects(
3536
throw new TooManyRedirectsException('Maximum number of redirections exceeded.');
3637
}
3738

38-
private static function getRedirectUrl(ResponseInterface $httpResponse): ?string
39+
private static function getRedirectUrl(ResponseInterface $httpResponse, UriInterface $requestUri): ?string
3940
{
4041
if (!static::isRedirectionStatusCode($httpResponse->getStatusCode())) {
4142
return null;
@@ -47,6 +48,10 @@ private static function getRedirectUrl(ResponseInterface $httpResponse): ?string
4748
return null;
4849
}
4950

51+
if ($url[0] === '/') {
52+
$url = $requestUri->getScheme() . '://' . $requestUri->getHost() . $url;
53+
}
54+
5055
if (!static::isValidRedirectUrl($url)) {
5156
return null;
5257
}

0 commit comments

Comments
 (0)