File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 5
5
use GuzzleHttp \Psr7 \Uri ;
6
6
use Psr \Http \Message \RequestInterface ;
7
7
use Psr \Http \Message \ResponseInterface ;
8
+ use Psr \Http \Message \UriInterface ;
8
9
use function array_change_key_case ;
9
10
use function in_array ;
10
11
use function strlen ;
@@ -22,7 +23,7 @@ public static function followRedirects(
22
23
): ResponseInterface
23
24
{
24
25
for ($ count = 0 ; $ count < $ limit ; $ count ++) {
25
- $ redirectUrl = static ::getRedirectUrl ($ response );
26
+ $ redirectUrl = static ::getRedirectUrl ($ response, $ request -> getUri () );
26
27
27
28
if ($ redirectUrl === null ) {
28
29
return $ response ;
@@ -35,7 +36,7 @@ public static function followRedirects(
35
36
throw new TooManyRedirectsException ('Maximum number of redirections exceeded. ' );
36
37
}
37
38
38
- private static function getRedirectUrl (ResponseInterface $ httpResponse ): ?string
39
+ private static function getRedirectUrl (ResponseInterface $ httpResponse, UriInterface $ requestUri ): ?string
39
40
{
40
41
if (!static ::isRedirectionStatusCode ($ httpResponse ->getStatusCode ())) {
41
42
return null ;
@@ -47,6 +48,10 @@ private static function getRedirectUrl(ResponseInterface $httpResponse): ?string
47
48
return null ;
48
49
}
49
50
51
+ if ($ url [0 ] === '/ ' ) {
52
+ $ url = $ requestUri ->getScheme () . ':// ' . $ requestUri ->getHost () . $ url ;
53
+ }
54
+
50
55
if (!static ::isValidRedirectUrl ($ url )) {
51
56
return null ;
52
57
}
You can’t perform that action at this time.
0 commit comments