| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.3.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Http;
- use Cake\Core\Configure;
- use Cake\Utility\Hash;
- use Psr\Http\Message\ServerRequestFactoryInterface;
- use Psr\Http\Message\ServerRequestInterface;
- use Psr\Http\Message\UriInterface;
- use function Zend\Diactoros\marshalHeadersFromSapi;
- use function Zend\Diactoros\marshalUriFromSapi;
- use function Zend\Diactoros\normalizeServer;
- /**
- * Factory for making ServerRequest instances.
- *
- * This subclass adds in CakePHP specific behavior to populate
- * the basePath and webroot attributes. Furthermore the Uri's path
- * is corrected to only contain the 'virtual' path for the request.
- */
- abstract class ServerRequestFactory implements ServerRequestFactoryInterface
- {
- /**
- * Create a request from the supplied superglobal values.
- *
- * If any argument is not supplied, the corresponding superglobal value will
- * be used.
- *
- * The ServerRequest created is then passed to the fromServer() method in
- * order to marshal the request URI and headers.
- *
- * @see fromServer()
- * @param array $server $_SERVER superglobal
- * @param array $query $_GET superglobal
- * @param array $body $_POST superglobal
- * @param array $cookies $_COOKIE superglobal
- * @param array $files $_FILES superglobal
- * @return \Cake\Http\ServerRequest
- * @throws \InvalidArgumentException for invalid file values
- */
- public static function fromGlobals(
- ?array $server = null,
- ?array $query = null,
- ?array $body = null,
- ?array $cookies = null,
- ?array $files = null
- ): ServerRequest {
- $server = normalizeServer($server ?: $_SERVER);
- $uri = static::createUri($server);
- /** @psalm-suppress NoInterfaceProperties */
- $sessionConfig = (array)Configure::read('Session') + [
- 'defaults' => 'php',
- 'cookiePath' => $uri->webroot,
- ];
- $session = Session::create($sessionConfig);
- /** @psalm-suppress NoInterfaceProperties */
- $request = new ServerRequest([
- 'environment' => $server,
- 'uri' => $uri,
- 'files' => $files ?: $_FILES,
- 'cookies' => $cookies ?: $_COOKIE,
- 'query' => $query ?: $_GET,
- 'post' => $body ?: $_POST,
- 'webroot' => $uri->webroot,
- 'base' => $uri->base,
- 'session' => $session,
- 'mergeFilesAsObjects' => Configure::read('App.uploadedFilesAsObjects', true),
- ]);
- return $request;
- }
- /**
- * Create a new server request.
- *
- * Note that server-params are taken precisely as given - no parsing/processing
- * of the given values is performed, and, in particular, no attempt is made to
- * determine the HTTP method or URI, which must be provided explicitly.
- *
- * @param string $method The HTTP method associated with the request.
- * @param \Psr\Http\Message\UriInterface|string $uri The URI associated with the request. If
- * the value is a string, the factory MUST create a UriInterface
- * instance based on it.
- * @param array $serverParams Array of SAPI parameters with which to seed
- * the generated request instance.
- *
- * @return \Psr\Http\Message\ServerRequestInterface
- */
- public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequestInterface
- {
- $serverParams['REQUEST_METHOD'] = $method;
- $options = ['environment' => $serverParams];
- if ($uri instanceof UriInterface) {
- $options['uri'] = $uri;
- } else {
- $options['url'] = $uri;
- }
- return new ServerRequest($options);
- }
- /**
- * Create a new Uri instance from the provided server data.
- *
- * @param array $server Array of server data to build the Uri from.
- * $_SERVER will be added into the $server parameter.
- * @return \Psr\Http\Message\UriInterface New instance.
- */
- public static function createUri(array $server = []): UriInterface
- {
- $server += $_SERVER;
- $server = normalizeServer($server);
- $headers = marshalHeadersFromSapi($server);
- return static::marshalUriFromSapi($server, $headers);
- }
- /**
- * Build a UriInterface object.
- *
- * Add in some CakePHP specific logic/properties that help
- * preserve backwards compatibility.
- *
- * @param array $server The server parameters.
- * @param array $headers The normalized headers
- * @return \Psr\Http\Message\UriInterface a constructed Uri
- */
- protected static function marshalUriFromSapi(array $server, array $headers): UriInterface
- {
- $uri = marshalUriFromSapi($server, $headers);
- [$base, $webroot] = static::getBase($uri, $server);
- // Look in PATH_INFO first, as this is the exact value we need prepared
- // by PHP.
- $pathInfo = Hash::get($server, 'PATH_INFO');
- if ($pathInfo) {
- $uri = $uri->withPath($pathInfo);
- } else {
- $uri = static::updatePath($base, $uri);
- }
- if (!$uri->getHost()) {
- $uri = $uri->withHost('localhost');
- }
- // Splat on some extra attributes to save
- // some method calls.
- /** @psalm-suppress NoInterfaceProperties */
- $uri->base = $base;
- /** @psalm-suppress NoInterfaceProperties */
- $uri->webroot = $webroot;
- return $uri;
- }
- /**
- * Updates the request URI to remove the base directory.
- *
- * @param string $base The base path to remove.
- * @param \Psr\Http\Message\UriInterface $uri The uri to update.
- * @return \Psr\Http\Message\UriInterface The modified Uri instance.
- */
- protected static function updatePath(string $base, UriInterface $uri): UriInterface
- {
- $path = $uri->getPath();
- if (strlen($base) > 0 && strpos($path, $base) === 0) {
- $path = substr($path, strlen($base));
- }
- if ($path === '/index.php' && $uri->getQuery()) {
- $path = $uri->getQuery();
- }
- if (empty($path) || $path === '/' || $path === '//' || $path === '/index.php') {
- $path = '/';
- }
- $endsWithIndex = '/' . (Configure::read('App.webroot') ?: 'webroot') . '/index.php';
- $endsWithLength = strlen($endsWithIndex);
- if (strlen($path) >= $endsWithLength &&
- substr($path, -$endsWithLength) === $endsWithIndex
- ) {
- $path = '/';
- }
- return $uri->withPath($path);
- }
- /**
- * Calculate the base directory and webroot directory.
- *
- * @param \Psr\Http\Message\UriInterface $uri The Uri instance.
- * @param array $server The SERVER data to use.
- * @return array An array containing the [baseDir, webroot]
- */
- protected static function getBase(UriInterface $uri, array $server): array
- {
- $config = (array)Configure::read('App') + [
- 'base' => null,
- 'webroot' => null,
- 'baseUrl' => null,
- ];
- $base = $config['base'];
- $baseUrl = $config['baseUrl'];
- $webroot = $config['webroot'];
- if ($base !== false && $base !== null) {
- return [$base, $base . '/'];
- }
- if (!$baseUrl) {
- $base = dirname(Hash::get($server, 'PHP_SELF'));
- // Clean up additional / which cause following code to fail..
- $base = preg_replace('#/+#', '/', $base);
- $indexPos = strpos($base, '/' . $webroot . '/index.php');
- if ($indexPos !== false) {
- $base = substr($base, 0, $indexPos) . '/' . $webroot;
- }
- if ($webroot === basename($base)) {
- $base = dirname($base);
- }
- if ($base === DIRECTORY_SEPARATOR || $base === '.') {
- $base = '';
- }
- $base = implode('/', array_map('rawurlencode', explode('/', $base)));
- return [$base, $base . '/'];
- }
- $file = '/' . basename($baseUrl);
- $base = dirname($baseUrl);
- if ($base === DIRECTORY_SEPARATOR || $base === '.') {
- $base = '';
- }
- $webrootDir = $base . '/';
- $docRoot = Hash::get($server, 'DOCUMENT_ROOT');
- $docRootContainsWebroot = strpos($docRoot, $webroot);
- if (!empty($base) || !$docRootContainsWebroot) {
- if (strpos($webrootDir, '/' . $webroot . '/') === false) {
- $webrootDir .= $webroot . '/';
- }
- }
- return [$base . $file, $webrootDir];
- }
- }
|