MediaWiki  1.34.0
MediaWiki\Rest\RequestData Class Reference

This is a Request class that allows data to be injected, for the purposes of testing or internal requests. More...

Inheritance diagram for MediaWiki\Rest\RequestData:
Collaboration diagram for MediaWiki\Rest\RequestData:

Public Member Functions

 __construct ( $params=[])
 Construct a RequestData from an array of parameters. More...
 
 getBody ()
 Gets the body of the message. More...
 
 getCookieParams ()
 Retrieve cookies. More...
 
 getMethod ()
 Retrieves the HTTP method of the request. More...
 
 getPostParams ()
 Retrieve POST form parameters. More...
 
 getProtocolVersion ()
 Retrieves the HTTP protocol version as a string. More...
 
 getQueryParams ()
 Retrieve query string arguments. More...
 
 getServerParams ()
 Retrieve server parameters. More...
 
 getUploadedFiles ()
 Retrieve normalized file upload data. More...
 
 getUri ()
 Retrieves the URI instance. More...
 
- Public Member Functions inherited from MediaWiki\Rest\RequestBase
 __clone ()
 
 getCookie ( $name, $default=null)
 Add the cookie prefix to a specified cookie name and get the value of the resulting prefixed cookie. More...
 
 getCookiePrefix ()
 Get the current cookie prefix. More...
 
 getHeader ( $name)
 Retrieves a message header value by the given case-insensitive name. More...
 
 getHeaderLine ( $name)
 Retrieves a comma-separated string of the values for a single header. More...
 
 getHeaders ()
 Retrieves all message header values. More...
 
 getPathParam ( $name)
 Retrieve a single path parameter. More...
 
 getPathParams ()
 Get the parameters derived from the path template match. More...
 
 hasHeader ( $name)
 Checks if a header exists by the given case-insensitive name. More...
 
 setPathParams ( $params)
 Erase all path parameters from the object and set the parameter array to the one specified. More...
 

Private Attributes

StreamInterface $body
 
 $cookieParams
 
 $method
 
 $postParams
 
 $protocolVersion
 
 $queryParams
 
 $serverParams
 
UploadedFileInterface[] $uploadedFiles
 
UriInterface $uri
 

Additional Inherited Members

- Protected Member Functions inherited from MediaWiki\Rest\RequestBase
 initHeaders ()
 Override this in the implementation class if lazy initialisation of header values is desired. More...
 
 setHeaders ( $headers)
 Erase any existing headers and replace them with the specified header lines. More...
 

Detailed Description

This is a Request class that allows data to be injected, for the purposes of testing or internal requests.

Definition at line 14 of file RequestData.php.

Constructor & Destructor Documentation

◆ __construct()

MediaWiki\Rest\RequestData::__construct (   $params = [])

Construct a RequestData from an array of parameters.

Parameters
array$paramsAn associative array of parameters. All parameters have defaults. Parameters are:
  • method: The HTTP method
  • uri: The URI
  • protocolVersion: The HTTP protocol version number
  • bodyContents: A string giving the request body
  • serverParams: Equivalent to $_SERVER
  • cookieParams: Equivalent to $_COOKIE
  • queryParams: Equivalent to $_GET
  • uploadedFiles: An array of objects implementing UploadedFileInterface
  • postParams: Equivalent to $_POST
  • pathParams: The path template parameters
  • headers: An array with the the key being the header name
  • cookiePrefix: A prefix to add to cookie names in getCookie()

Reimplemented from MediaWiki\Rest\RequestBase.

Definition at line 54 of file RequestData.php.

References MediaWiki\Rest\RequestBase\setHeaders(), and MediaWiki\Rest\RequestBase\setPathParams().

Member Function Documentation

◆ getBody()

MediaWiki\Rest\RequestData::getBody ( )

Gets the body of the message.

Returns
StreamInterface Returns the body as a stream.

Implements MediaWiki\Rest\RequestInterface.

Definition at line 81 of file RequestData.php.

References MediaWiki\Rest\RequestData\$body.

◆ getCookieParams()

MediaWiki\Rest\RequestData::getCookieParams ( )

Retrieve cookies.

Retrieves cookies sent by the client to the server.

The data MUST be compatible with the structure of the $_COOKIE superglobal.

Returns
array

Implements MediaWiki\Rest\RequestInterface.

Definition at line 89 of file RequestData.php.

References MediaWiki\Rest\RequestData\$cookieParams.

◆ getMethod()

MediaWiki\Rest\RequestData::getMethod ( )

Retrieves the HTTP method of the request.

Returns
string Returns the request method.

Implements MediaWiki\Rest\RequestInterface.

Definition at line 69 of file RequestData.php.

References MediaWiki\Rest\RequestData\$method.

◆ getPostParams()

MediaWiki\Rest\RequestData::getPostParams ( )

Retrieve POST form parameters.

This will return an array of parameters in the format of $_POST.

Returns
array The deserialized POST parameters

Implements MediaWiki\Rest\RequestInterface.

Definition at line 101 of file RequestData.php.

References MediaWiki\Rest\RequestData\$postParams.

◆ getProtocolVersion()

MediaWiki\Rest\RequestData::getProtocolVersion ( )

Retrieves the HTTP protocol version as a string.

The string MUST contain only the HTTP version number (e.g., "1.1", "1.0").

Returns
string HTTP protocol version.

Implements MediaWiki\Rest\RequestInterface.

Definition at line 77 of file RequestData.php.

References MediaWiki\Rest\RequestData\$protocolVersion.

◆ getQueryParams()

MediaWiki\Rest\RequestData::getQueryParams ( )

Retrieve query string arguments.

Retrieves the deserialized query string arguments, if any.

Note: the query params might not be in sync with the URI or server params. If you need to ensure you are only getting the original values, you may need to parse the query string from getUri()->getQuery() or from the QUERY_STRING server param.

Returns
array

Implements MediaWiki\Rest\RequestInterface.

Definition at line 93 of file RequestData.php.

References MediaWiki\Rest\RequestData\$queryParams.

◆ getServerParams()

MediaWiki\Rest\RequestData::getServerParams ( )

Retrieve server parameters.

Retrieves data related to the incoming request environment, typically derived from PHP's $_SERVER superglobal. The data IS NOT REQUIRED to originate from $_SERVER.

Returns
array

Implements MediaWiki\Rest\RequestInterface.

Definition at line 85 of file RequestData.php.

References MediaWiki\Rest\RequestData\$serverParams.

◆ getUploadedFiles()

MediaWiki\Rest\RequestData::getUploadedFiles ( )

Retrieve normalized file upload data.

This method returns upload metadata in a normalized tree, with each leaf an instance of Psr\Http\Message\UploadedFileInterface.

Returns
array An array tree of UploadedFileInterface instances; an empty array MUST be returned if no data is present.

Implements MediaWiki\Rest\RequestInterface.

Definition at line 97 of file RequestData.php.

References MediaWiki\Rest\RequestData\$uploadedFiles.

◆ getUri()

MediaWiki\Rest\RequestData::getUri ( )

Retrieves the URI instance.

This method MUST return a UriInterface instance.

UriInterface Returns a UriInterface instance representing the URI of the request.

Implements MediaWiki\Rest\RequestInterface.

Definition at line 73 of file RequestData.php.

References MediaWiki\Rest\RequestData\$uri.

Member Data Documentation

◆ $body

StreamInterface MediaWiki\Rest\RequestData::$body
private

Definition at line 23 of file RequestData.php.

Referenced by MediaWiki\Rest\RequestData\getBody().

◆ $cookieParams

MediaWiki\Rest\RequestData::$cookieParams
private

Definition at line 27 of file RequestData.php.

Referenced by MediaWiki\Rest\RequestData\getCookieParams().

◆ $method

MediaWiki\Rest\RequestData::$method
private

Definition at line 15 of file RequestData.php.

Referenced by MediaWiki\Rest\RequestData\getMethod().

◆ $postParams

MediaWiki\Rest\RequestData::$postParams
private

Definition at line 34 of file RequestData.php.

Referenced by MediaWiki\Rest\RequestData\getPostParams().

◆ $protocolVersion

MediaWiki\Rest\RequestData::$protocolVersion
private

Definition at line 20 of file RequestData.php.

Referenced by MediaWiki\Rest\RequestData\getProtocolVersion().

◆ $queryParams

MediaWiki\Rest\RequestData::$queryParams
private

Definition at line 29 of file RequestData.php.

Referenced by MediaWiki\Rest\RequestData\getQueryParams().

◆ $serverParams

MediaWiki\Rest\RequestData::$serverParams
private

Definition at line 25 of file RequestData.php.

Referenced by MediaWiki\Rest\RequestData\getServerParams().

◆ $uploadedFiles

UploadedFileInterface [] MediaWiki\Rest\RequestData::$uploadedFiles
private

Definition at line 32 of file RequestData.php.

Referenced by MediaWiki\Rest\RequestData\getUploadedFiles().

◆ $uri

UriInterface MediaWiki\Rest\RequestData::$uri
private

Definition at line 18 of file RequestData.php.

Referenced by MediaWiki\Rest\RequestData\getUri().


The documentation for this class was generated from the following file: