w:@Cz 5QO郣AG+ʋ]'0y F*@2`&_h淴W|>~ ў{Wg];ygL_.E0 erou=xa9SX`E#S~t]tE4ceS+fȍ/ -%mtd?Rnւ7 =sˁ:2|b1Q:> 4jk?ڔyC& IДDW`M+zy=J|ݒNC24UmԂ b! "s4CkfBQ~qN Lmw 8ks: |?F-/OdC$&L 7وq2Дa! /K7EdڐSxrԑE/_!-!49CoCiʢ7ˬm^մƟZdHV*(ŭh~ȏm:P^~4I||o!H リzc]'&w0w{ϐ͓gLFiPqx`N<1FZ =WR CYJ<(~{Ҋ+y!5)=dZ~o?M_2|06#~9>'-P$JyXp(]tB/p%M`$ɍn/9 DUEo[ D^vb"_9"d@5亼 bnm v>'D`+t{3h#q|P"+8ֿ0`OK􇙭 6oF?Kgt`w Fk}HD&ܖ&U4B~&1pqZ4391Mx ȽRyJL5\'|9TzIM;f}O[@2)ىpےKqjPwN;xlt  9@tz :"lR1>GT VQ?&s5U[7Tf;1^N"\2J:/0c͟_CJM?izve`CMܘDEjSOy;8 Xǃ}lGMTc,!s Jf.[/ؖNxzh'ɃI;)5$63 bM:_9L66ʞga{;&A^鷶foF+jYz<SI~PSm{Q ZUfQ[+{@T1jA*hHE\ PėP^@+&G"ͥ:EVɁ[,t(̽k50?!̘4bHuyhQwJ4YHh:݅]A~jb&毌=f(W: J/I +9A@V5JgXQn/E ޹WZ$gb`G.׾nFvYh|`m`cho5#g kC2KJ/: %]JLa©wha⸇<A yr*8>97H.t{ ]}3U-jFI@-dఐ#5xe^pI6=0Hw`ѿQ2/ +c\r({cEF%{)tޯ%/ "º"(Ќ"(vg2W|tw[ [DJvcog=+qarrw:yy_<7|9yy~< V{貅A ˫SbEXvAk6%ߖTmrzP( b"+RP%&|ZRGI-W0,)_UXZ Ǐg>.Htu0*eIΌɏv20zBt1֏=AJk|DyXӭIcrh ѿgV$l1CȬ41ixGHO+.2[_wgFN5K]OJNh0WwGp8΅yB$uf$hBwџqor/M5-ـ6=c66gMKx,)nSK Ghȫq(XVQtly present // in the history header. $historyHeader = $response->getHeader(self::HISTORY_HEADER); $statusHeader = $response->getHeader(self::STATUS_HISTORY_HEADER); \array_unshift($historyHeader, $uri); \array_unshift($statusHeader, (string) $statusCode); return $response->withHeader(self::HISTORY_HEADER, $historyHeader) ->withHeader(self::STATUS_HISTORY_HEADER, $statusHeader); } ); } /** * Check for too many redirects. * * @throws TooManyRedirectsException Too many redirects. */ private function guardMax(RequestInterface $request, ResponseInterface $response, array &$options): void { $current = $options['__redirect_count'] ?? 0; $options['__redirect_count'] = $current + 1; $max = $options['allow_redirects']['max']; if ($options['__redirect_count'] > $max) { throw new TooManyRedirectsException("Will not follow more than {$max} redirects", $request, $response); } } public function modifyRequest(RequestInterface $request, array $options, ResponseInterface $response): RequestInterface { // Request modifications to apply. $modify = []; $protocols = $options['allow_redirects']['protocols']; // Use a GET request if this is an entity enclosing request and we are // not forcing RFC compliance, but rather emulating what all browsers // would do. $statusCode = $response->getStatusCode(); if ($statusCode == 303 || ($statusCode <= 302 && !$options['allow_redirects']['strict']) ) { $safeMethods = ['GET', 'HEAD', 'OPTIONS']; $requestMethod = $request->getMethod(); $modify['method'] = in_array($requestMethod, $safeMethods) ? $requestMethod : 'GET'; $modify['body'] = ''; } $uri = self::redirectUri($request, $response, $protocols); if (isset($options['idn_conversion']) && ($options['idn_conversion'] !== false)) { $idnOptions = ($options['idn_conversion'] === true) ? \IDNA_DEFAULT : $options['idn_conversion']; $uri = Utils::idnUriConvert($uri, $idnOptions); } $modify['uri'] = $uri; Psr7\Message::rewindBody($request); // Add the Referer header if it is told to do so and only // add the header if we are not redirecting from https to http. if ($options['allow_redirects']['referer'] && $modify['uri']->getScheme() === $request->getUri()->getScheme() ) { $uri = $request->getUri()->withUserInfo(''); $modify['set_headers']['Referer'] = (string) $uri; } else { $modify['remove_headers'][] = 'Referer'; } // Remove Authorization and Cookie headers if URI is cross-origin. if (Psr7\UriComparator::isCrossOrigin($request->getUri(), $modify['uri'])) { $modify['remove_headers'][] = 'Authorization'; $modify['remove_headers'][] = 'Cookie'; } return Psr7\Utils::modifyRequest($request, $modify); } /** * Set the appropriate URL on the request based on the location header. */ private static function redirectUri( RequestInterface $request, ResponseInterface $response, array $protocols ): UriInterface { $location = Psr7\UriResolver::resolve( $request->getUri(), new Psr7\Uri($response->getHeaderLine('Location')) ); // Ensure that the redirect URI is allowed based on the protocols. if (!\in_array($location->getScheme(), $protocols)) { throw new BadResponseException(\sprintf('Redirect URI, %s, does not use one of the allowed redirect protocols: %s', $location, \implode(', ', $protocols)), $request, $response); } return $location; } }