class JsonWebToken in JSON Web Token Authentication (JWT) 8.0
Same name and namespace in other branches
- 8 src/JsonWebToken/JsonWebToken.php \Drupal\jwt\JsonWebToken\JsonWebToken
Class JsonWebToken.
@package Drupal\jwt\JsonWebToken
Hierarchy
- class \Drupal\jwt\JsonWebToken\JsonWebToken implements JsonWebTokenInterface
Expanded class hierarchy of JsonWebToken
2 files declare their use of JsonWebToken
- JwtAuth.php in src/
Authentication/ Provider/ JwtAuth.php - JwtTranscoder.php in src/
Transcoder/ JwtTranscoder.php
File
- src/
JsonWebToken/ JsonWebToken.php, line 10
Namespace
Drupal\jwt\JsonWebTokenView source
class JsonWebToken implements JsonWebTokenInterface {
/**
* Internal representation of the token.
*
* @var string
*/
protected $payload;
/**
* JsonWebToken constructor.
*
* @param object $jwt
* The Object to turn into a JWT.
*/
public function __construct($jwt = NULL) {
$jwt = is_null($jwt) ? new \stdClass() : $jwt;
$this->payload = $jwt;
}
/**
* {@inheritdoc}
*/
public function getPayload() {
return $this->payload;
}
/**
* {@inheritdoc}
*/
public function getClaim($claim) {
$payload = $this->payload;
return $this
->internalGetClaim($payload, $claim);
}
/**
* {@inheritdoc}
*/
public function setClaim($claim, $value) {
$payload = $this->payload;
$this
->internalSetClaim($payload, $claim, $value);
$this->payload = $payload;
}
/**
* {@inheritdoc}
*/
public function unsetClaim($claim) {
$payload = $this->payload;
$this
->internalUnsetClaim($payload, $claim);
$this->payload = $payload;
}
/**
* Traverses the JWT payload to the given claim and returns its value.
*
* @param object $payload
* A reference to the JWT payload.
* @param mixed $claim
* Either a string or indexed array of strings representing the claim or
* nested claim to be set.
*
* @return mixed
* The claims value.
*/
protected function internalGetClaim(&$payload, $claim) {
$current_claim = is_array($claim) ? array_shift($claim) : $claim;
if (!isset($payload->{$current_claim})) {
return NULL;
}
if (is_array($claim) && count($claim) > 0) {
return $this
->internalGetClaim($payload->{$current_claim}, $claim);
}
else {
return $payload->{$current_claim};
}
}
/**
* Traverses the JWT payload to the given claim and sets a value.
*
* @param object $payload
* A reference to the JWT payload.
* @param mixed $claim
* Either a string or indexed array of strings representing the claim or
* nested claim to be set.
* @param mixed $value
* The value to set for the given claim.
*/
protected function internalSetClaim(&$payload, $claim, $value) {
$current_claim = is_array($claim) ? array_shift($claim) : $claim;
if (is_array($claim) && count($claim) > 0) {
if (!isset($payload->{$current_claim})) {
$payload->{$current_claim} = new \stdClass();
}
$this
->internalSetClaim($payload->{$current_claim}, $claim, $value);
}
else {
$payload->{$current_claim} = $value;
}
}
/**
* Traverses the JWT payload to the given claim and unset its value.
*
* @param object $payload
* A reference to the JWT payload.
* @param mixed $claim
* Either a string or indexed array of strings representing the claim or
* nested claim to be set.
*/
protected function internalUnsetClaim(&$payload, $claim) {
$current_claim = is_array($claim) ? array_shift($claim) : $claim;
if (!isset($payload->{$current_claim})) {
return;
}
if (is_array($claim) && count($claim) > 0) {
$this
->internalUnsetClaim($payload->{$current_claim}, $claim);
}
else {
unset($payload->{$current_claim});
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
JsonWebToken:: |
protected | property | Internal representation of the token. | |
JsonWebToken:: |
public | function |
Retrieve a claim from the JWT payload. Overrides JsonWebTokenInterface:: |
|
JsonWebToken:: |
public | function |
Gets the unencoded payload as an object. Overrides JsonWebTokenInterface:: |
|
JsonWebToken:: |
protected | function | Traverses the JWT payload to the given claim and returns its value. | |
JsonWebToken:: |
protected | function | Traverses the JWT payload to the given claim and sets a value. | |
JsonWebToken:: |
protected | function | Traverses the JWT payload to the given claim and unset its value. | |
JsonWebToken:: |
public | function |
Add or update the given claim with the given value. Overrides JsonWebTokenInterface:: |
|
JsonWebToken:: |
public | function |
Remove a claim from the JWT payload. Overrides JsonWebTokenInterface:: |
|
JsonWebToken:: |
public | function | JsonWebToken constructor. |