Exception
2 years ago
File
2 years ago
Session
2 years ago
Tests
2 years ago
AcceptHeader.php
2 years ago
AcceptHeaderItem.php
2 years ago
ApacheRequest.php
2 years ago
BinaryFileResponse.php
2 years ago
Cookie.php
2 years ago
ExpressionRequestMatcher.php
2 years ago
FileBag.php
2 years ago
HeaderBag.php
2 years ago
IpUtils.php
2 years ago
JsonResponse.php
2 years ago
LICENSE
2 years ago
ParameterBag.php
2 years ago
RedirectResponse.php
2 years ago
Request.php
2 years ago
RequestMatcher.php
2 years ago
RequestMatcherInterface.php
2 years ago
RequestStack.php
2 years ago
Response.php
2 years ago
ResponseHeaderBag.php
2 years ago
ServerBag.php
2 years ago
StreamedResponse.php
2 years ago
ServerBag.php
106 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | * |
| 11 | * Modified by impress-org on 23-January-2024 using Strauss. |
| 12 | * @see https://github.com/BrianHenryIE/strauss |
| 13 | */ |
| 14 | |
| 15 | namespace Give\Vendors\Symfony\Component\HttpFoundation; |
| 16 | |
| 17 | /** |
| 18 | * ServerBag is a container for HTTP headers from the $_SERVER variable. |
| 19 | * |
| 20 | * @author Fabien Potencier <fabien@symfony.com> |
| 21 | * @author Bulat Shakirzyanov <mallluhuct@gmail.com> |
| 22 | * @author Robert Kiss <kepten@gmail.com> |
| 23 | */ |
| 24 | class ServerBag extends ParameterBag |
| 25 | { |
| 26 | /** |
| 27 | * Gets the HTTP headers. |
| 28 | * |
| 29 | * @return array |
| 30 | */ |
| 31 | public function getHeaders() |
| 32 | { |
| 33 | $headers = []; |
| 34 | $contentHeaders = ['CONTENT_LENGTH' => true, 'CONTENT_MD5' => true, 'CONTENT_TYPE' => true]; |
| 35 | foreach ($this->parameters as $key => $value) { |
| 36 | if (0 === strpos($key, 'HTTP_')) { |
| 37 | $headers[substr($key, 5)] = $value; |
| 38 | } |
| 39 | // CONTENT_* are not prefixed with HTTP_ |
| 40 | elseif (isset($contentHeaders[$key])) { |
| 41 | $headers[$key] = $value; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | if (isset($this->parameters['PHP_AUTH_USER'])) { |
| 46 | $headers['PHP_AUTH_USER'] = $this->parameters['PHP_AUTH_USER']; |
| 47 | $headers['PHP_AUTH_PW'] = isset($this->parameters['PHP_AUTH_PW']) ? $this->parameters['PHP_AUTH_PW'] : ''; |
| 48 | } else { |
| 49 | /* |
| 50 | * php-cgi under Apache does not pass HTTP Basic user/pass to PHP by default |
| 51 | * For this workaround to work, add these lines to your .htaccess file: |
| 52 | * RewriteCond %{HTTP:Authorization} .+ |
| 53 | * RewriteRule ^ - [E=HTTP_AUTHORIZATION:%0] |
| 54 | * |
| 55 | * A sample .htaccess file: |
| 56 | * RewriteEngine On |
| 57 | * RewriteCond %{HTTP:Authorization} .+ |
| 58 | * RewriteRule ^ - [E=HTTP_AUTHORIZATION:%0] |
| 59 | * RewriteCond %{REQUEST_FILENAME} !-f |
| 60 | * RewriteRule ^(.*)$ app.php [QSA,L] |
| 61 | */ |
| 62 | |
| 63 | $authorizationHeader = null; |
| 64 | if (isset($this->parameters['HTTP_AUTHORIZATION'])) { |
| 65 | $authorizationHeader = $this->parameters['HTTP_AUTHORIZATION']; |
| 66 | } elseif (isset($this->parameters['REDIRECT_HTTP_AUTHORIZATION'])) { |
| 67 | $authorizationHeader = $this->parameters['REDIRECT_HTTP_AUTHORIZATION']; |
| 68 | } |
| 69 | |
| 70 | if (null !== $authorizationHeader) { |
| 71 | if (0 === stripos($authorizationHeader, 'basic ')) { |
| 72 | // Decode AUTHORIZATION header into PHP_AUTH_USER and PHP_AUTH_PW when authorization header is basic |
| 73 | $exploded = explode(':', base64_decode(substr($authorizationHeader, 6)), 2); |
| 74 | if (2 == \count($exploded)) { |
| 75 | list($headers['PHP_AUTH_USER'], $headers['PHP_AUTH_PW']) = $exploded; |
| 76 | } |
| 77 | } elseif (empty($this->parameters['PHP_AUTH_DIGEST']) && (0 === stripos($authorizationHeader, 'digest '))) { |
| 78 | // In some circumstances PHP_AUTH_DIGEST needs to be set |
| 79 | $headers['PHP_AUTH_DIGEST'] = $authorizationHeader; |
| 80 | $this->parameters['PHP_AUTH_DIGEST'] = $authorizationHeader; |
| 81 | } elseif (0 === stripos($authorizationHeader, 'bearer ')) { |
| 82 | /* |
| 83 | * XXX: Since there is no PHP_AUTH_BEARER in PHP predefined variables, |
| 84 | * I'll just set $headers['AUTHORIZATION'] here. |
| 85 | * https://php.net/reserved.variables.server |
| 86 | */ |
| 87 | $headers['AUTHORIZATION'] = $authorizationHeader; |
| 88 | } |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | if (isset($headers['AUTHORIZATION'])) { |
| 93 | return $headers; |
| 94 | } |
| 95 | |
| 96 | // PHP_AUTH_USER/PHP_AUTH_PW |
| 97 | if (isset($headers['PHP_AUTH_USER'])) { |
| 98 | $headers['AUTHORIZATION'] = 'Basic '.base64_encode($headers['PHP_AUTH_USER'].':'.$headers['PHP_AUTH_PW']); |
| 99 | } elseif (isset($headers['PHP_AUTH_DIGEST'])) { |
| 100 | $headers['AUTHORIZATION'] = $headers['PHP_AUTH_DIGEST']; |
| 101 | } |
| 102 | |
| 103 | return $headers; |
| 104 | } |
| 105 | } |
| 106 |