public static function Request::create

Creates a Request based on a given URI and configuration.

@api

Parameters

string $uri The URI:

string $method The HTTP method:

array $parameters The query (GET) or request (POST) parameters:

array $cookies The request cookies ($_COOKIE):

array $files The request files ($_FILES):

array $server The server parameters ($_SERVER):

string $content The raw body data:

Return value

Request A Request instance

84 calls to Request::create()
ChainMatcherTest::testMethodNotAllowed in drupal/core/modules/system/lib/Drupal/system/Tests/Routing/ChainMatcherTest.php
Confirms that the expected exception is thrown.
ChainMatcherTest::testRequestFound in drupal/core/modules/system/lib/Drupal/system/Tests/Routing/ChainMatcherTest.php
Confirms that the expected exception is thrown.
ChainMatcherTest::testRequestNotFound in drupal/core/modules/system/lib/Drupal/system/Tests/Routing/ChainMatcherTest.php
Confirms that the expected exception is thrown.
Client::filterRequest in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Client.php
Converts the BrowserKit request to a HttpKernel request.
comment_permalink in drupal/core/modules/comment/comment.module
Redirects comment links to the correct page depending on comment settings.

... See full list

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Request.php, line 245

Class

Request
Request represents an HTTP request.

Namespace

Symfony\Component\HttpFoundation

Code

public static function create($uri, $method = 'GET', $parameters = array(), $cookies = array(), $files = array(), $server = array(), $content = null) {
  $defaults = array(
    'SERVER_NAME' => 'localhost',
    'SERVER_PORT' => 80,
    'HTTP_HOST' => 'localhost',
    'HTTP_USER_AGENT' => 'Symfony/2.X',
    'HTTP_ACCEPT' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
    'HTTP_ACCEPT_LANGUAGE' => 'en-us,en;q=0.5',
    'HTTP_ACCEPT_CHARSET' => 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
    'REMOTE_ADDR' => '127.0.0.1',
    'SCRIPT_NAME' => '',
    'SCRIPT_FILENAME' => '',
    'SERVER_PROTOCOL' => 'HTTP/1.1',
    'REQUEST_TIME' => time(),
  );
  $components = parse_url($uri);
  if (isset($components['host'])) {
    $defaults['SERVER_NAME'] = $components['host'];
    $defaults['HTTP_HOST'] = $components['host'];
  }
  if (isset($components['scheme'])) {
    if ('https' === $components['scheme']) {
      $defaults['HTTPS'] = 'on';
      $defaults['SERVER_PORT'] = 443;
    }
  }
  if (isset($components['port'])) {
    $defaults['SERVER_PORT'] = $components['port'];
    $defaults['HTTP_HOST'] = $defaults['HTTP_HOST'] . ':' . $components['port'];
  }
  if (isset($components['user'])) {
    $defaults['PHP_AUTH_USER'] = $components['user'];
  }
  if (isset($components['pass'])) {
    $defaults['PHP_AUTH_PW'] = $components['pass'];
  }
  if (!isset($components['path'])) {
    $components['path'] = '';
  }
  switch (strtoupper($method)) {
    case 'POST':
    case 'PUT':
    case 'DELETE':
      $defaults['CONTENT_TYPE'] = 'application/x-www-form-urlencoded';
    case 'PATCH':
      $request = $parameters;
      $query = array();
      break;
    default:
      $request = array();
      $query = $parameters;
      break;
  }
  if (isset($components['query'])) {
    parse_str(html_entity_decode($components['query']), $qs);
    $query = array_replace($qs, $query);
  }
  $queryString = http_build_query($query, '', '&');
  $uri = $components['path'] . ('' !== $queryString ? '?' . $queryString : '');
  $server = array_replace($defaults, $server, array(
    'REQUEST_METHOD' => strtoupper($method),
    'PATH_INFO' => '',
    'REQUEST_URI' => $uri,
    'QUERY_STRING' => $queryString,
  ));
  return new static($query, $request, array(), $cookies, $files, $server, $content);
}