class Request in JSON-RPC 2.x
Same name and namespace in other branches
- 8 src/Object/Request.php \Drupal\jsonrpc\Object\Request
Request object to help implement JSON RPC's spec for request objects.
Hierarchy
- class \Drupal\jsonrpc\Object\Request
Expanded class hierarchy of Request
3 files declare their use of Request
- Handler.php in src/
Handler.php - HttpController.php in src/
Controller/ HttpController.php - RpcRequestFactory.php in src/
Shaper/ RpcRequestFactory.php
File
- src/
Object/ Request.php, line 8
Namespace
Drupal\jsonrpc\ObjectView source
class Request {
/**
* The JSON-RPC version.
*
* @var string
*/
protected $version;
/**
* The RPC service method id.
*
* @var string
*/
protected $method;
/**
* The request parameters, if any.
*
* @var \Drupal\jsonrpc\Object\ParameterBag|null
*/
protected $params;
/**
* A string, number or NULL ID. False when an ID was not provided.
*
* @var mixed|false
*/
protected $id;
/**
* Indicates if the request is part of a batch or not.
*
* @var bool
*/
protected $inBatch;
/**
* Request constructor.
*
* @param string $version
* The JSON-RPC version.
* @param string $method
* The RPC service method id.
* @param bool $in_batch
* Indicates if the request is part of a batch or not.
* @param mixed|false $id
* A string, number or NULL ID. FALSE for notification requests.
* @param \Drupal\jsonrpc\Object\ParameterBag|null $params
* The request parameters, if any.
*/
public function __construct($version, $method, $in_batch = FALSE, $id = FALSE, ParameterBag $params = NULL) {
$this
->assertValidRequest($version, $method, $id);
$this->version = $version;
$this->method = $method;
$this->inBatch = $in_batch;
$this->params = $params;
$this->id = $id;
}
/**
* Gets the ID.
*
* @return bool|false|mixed
* The request id.
*/
public function id() {
return $this->id;
}
/**
* Gets the method's name.
*
* @return string
* The name of the method to execute.
*/
public function getMethod() {
return $this->method;
}
/**
* Gets the parameters.
*
* @return \Drupal\jsonrpc\Object\ParameterBag|null
* The parameter bag.
*/
public function getParams() {
return $this->params;
}
/**
* Checks if this is a batched request.
*
* @return bool
* True if it's a batched request.
*/
public function isInBatch() {
return $this->inBatch;
}
/**
* Gets a parameter by key.
*
* @param string $key
* The key.
*
* @return mixed|null
* The parameter.
*/
public function getParameter($key) {
if ($this
->hasParams() && ($param_value = $this
->getParams()
->get($key))) {
return $param_value;
}
return NULL;
}
/**
* Checks if the request has parameters.
*
* @return bool
* True if it has parameters.
*/
public function hasParams() {
return !(is_null($this->params) || $this->params
->isEmpty());
}
/**
* Checks if this is a notification request.
*
* @return bool
* True if it's a notification.
*/
public function isNotification() {
return $this->id === FALSE;
}
/**
* Asserts this is a valid request.
*
* @param string $version
* The JSON-RPC version.
* @param string $method
* The RPC service method id.
* @param mixed|false $id
* A string, number or NULL ID. FALSE for notification requests.
*/
protected function assertValidRequest($version, $method, $id) {
assert($version === "2.0", 'A String specifying the version of the JSON-RPC protocol. MUST be exactly "2.0".');
assert(strpos($method, 'rpc.') !== 0, 'Method names that begin with the word rpc followed by a period character (U+002E or ASCII 46) are reserved for rpc-internal methods and extensions and MUST NOT be used for anything else.');
assert($id === FALSE || is_string($id) || is_numeric($id) || is_null($id), 'An identifier established by the Client that MUST contain a String, Number, or NULL value if included.');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Request:: |
protected | property | A string, number or NULL ID. False when an ID was not provided. | |
Request:: |
protected | property | Indicates if the request is part of a batch or not. | |
Request:: |
protected | property | The RPC service method id. | |
Request:: |
protected | property | The request parameters, if any. | |
Request:: |
protected | property | The JSON-RPC version. | |
Request:: |
protected | function | Asserts this is a valid request. | |
Request:: |
public | function | Gets the method's name. | |
Request:: |
public | function | Gets a parameter by key. | |
Request:: |
public | function | Gets the parameters. | |
Request:: |
public | function | Checks if the request has parameters. | |
Request:: |
public | function | Gets the ID. | |
Request:: |
public | function | Checks if this is a batched request. | |
Request:: |
public | function | Checks if this is a notification request. | |
Request:: |
public | function | Request constructor. |