Class yii\authclient\OAuthToken
| Inheritance | yii\authclient\OAuthToken » yii\base\BaseObject |
|---|---|
| Available since extension's version | 2.0 |
| Source Code | https://github.com/yiisoft/yii2-authclient/blob/master/src/OAuthToken.php |
Token represents OAuth token.
Public Properties
| Property | Type | Description | Defined By |
|---|---|---|---|
| $createTimestamp | integer | Object creation timestamp. | yii\authclient\OAuthToken |
| $expireDuration | integer | Token expiration duration. | yii\authclient\OAuthToken |
| $expireDurationParamKey | string | Expire duration param key. | yii\authclient\OAuthToken |
| $isExpired | boolean | Is token expired. | yii\authclient\OAuthToken |
| $isValid | boolean | Is token valid. | yii\authclient\OAuthToken |
| $params | array | yii\authclient\OAuthToken | |
| $token | string | Token value. | yii\authclient\OAuthToken |
| $tokenParamKey | string | Key in $params array, which stores token key. | yii\authclient\OAuthToken |
| $tokenSecret | string | Token secret value. | yii\authclient\OAuthToken |
| $tokenSecretParamKey | string | Key in $params array, which stores token secret key. | yii\authclient\OAuthToken |
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | yii\authclient\OAuthToken | |
| getExpireDuration() | Returns the token expiration duration. | yii\authclient\OAuthToken |
| getExpireDurationParamKey() | yii\authclient\OAuthToken | |
| getIsExpired() | Checks if token has expired. | yii\authclient\OAuthToken |
| getIsValid() | Checks if token is valid. | yii\authclient\OAuthToken |
| getParam() | Returns param by name. | yii\authclient\OAuthToken |
| getParams() | yii\authclient\OAuthToken | |
| getToken() | Returns token value. | yii\authclient\OAuthToken |
| getTokenSecret() | Returns the token secret value. | yii\authclient\OAuthToken |
| init() | yii\authclient\OAuthToken | |
| setExpireDuration() | Sets token expire duration. | yii\authclient\OAuthToken |
| setExpireDurationParamKey() | yii\authclient\OAuthToken | |
| setParam() | Sets param by name. | yii\authclient\OAuthToken |
| setParams() | yii\authclient\OAuthToken | |
| setToken() | Sets token value. | yii\authclient\OAuthToken |
| setTokenSecret() | Sets the token secret value. | yii\authclient\OAuthToken |
Protected Methods
| Method | Description | Defined By |
|---|---|---|
| defaultExpireDurationParamKey() | Fetches default expire duration param key. | yii\authclient\OAuthToken |
Property Details
Token expiration duration. Note that the type of this property differs in getter and setter. See getExpireDuration() and setExpireDuration() for details.
Expire duration param key.
Key in $params array, which stores token key.
Key in $params array, which stores token secret key.
Method Details
| public void __construct ( array $config = [] ) | ||
| $config | ||
public function __construct(array $config = [])
{
if (array_key_exists('tokenParamKey', $config)) {
$this->tokenParamKey = ArrayHelper::remove($config, 'tokenParamKey');
}
if (array_key_exists('tokenSecretParamKey', $config)) {
$this->tokenSecretParamKey = ArrayHelper::remove($config, 'tokenSecretParamKey');
}
parent::__construct($config);
}
Fetches default expire duration param key.
| protected string defaultExpireDurationParamKey ( ) | ||
| return | string |
Expire duration param key. |
|---|---|---|
protected function defaultExpireDurationParamKey()
{
$expireDurationParamKey = 'expires_in';
foreach ($this->getParams() as $name => $value) {
if (strpos($name, 'expir') !== false) {
$expireDurationParamKey = $name;
break;
}
}
return $expireDurationParamKey;
}
Returns the token expiration duration.
| public integer getExpireDuration ( ) | ||
| return | integer |
Token expiration duration. |
|---|---|---|
public function getExpireDuration()
{
return $this->getParam($this->getExpireDurationParamKey());
}
| public string getExpireDurationParamKey ( ) | ||
| return | string |
Expire duration param key. |
|---|---|---|
public function getExpireDurationParamKey()
{
if ($this->_expireDurationParamKey === null) {
$this->_expireDurationParamKey = $this->defaultExpireDurationParamKey();
}
return $this->_expireDurationParamKey;
}
Checks if token has expired.
| public boolean getIsExpired ( ) | ||
| return | boolean |
Is token expired. |
|---|---|---|
public function getIsExpired()
{
$expirationDuration = $this->getExpireDuration();
if (empty($expirationDuration)) {
return false;
}
return (time() >= ($this->createTimestamp + $expirationDuration));
}
Checks if token is valid.
| public boolean getIsValid ( ) | ||
| return | boolean |
Is token valid. |
|---|---|---|
public function getIsValid()
{
$token = $this->getToken();
return (!empty($token) && !$this->getIsExpired());
}
Returns param by name.
| public mixed getParam ( $name ) | ||
| $name | string |
Param name. |
| return | mixed |
Param value. |
|---|---|---|
public function getParam($name)
{
return isset($this->_params[$name]) ? $this->_params[$name] : null;
}
Returns token value.
| public string getToken ( ) | ||
| return | string |
Token value. |
|---|---|---|
public function getToken()
{
return $this->getParam($this->tokenParamKey);
}
Returns the token secret value.
| public string getTokenSecret ( ) | ||
| return | string |
Token secret value. |
|---|---|---|
public function getTokenSecret()
{
return $this->getParam($this->tokenSecretParamKey);
}
| public void init ( ) |
public function init()
{
if ($this->createTimestamp === null) {
$this->createTimestamp = time();
}
}
Sets token expire duration.
| public void setExpireDuration ( $expireDuration ) | ||
| $expireDuration | string |
Token expiration duration. |
public function setExpireDuration($expireDuration)
{
$this->setParam($this->getExpireDurationParamKey(), $expireDuration);
}
| public void setExpireDurationParamKey ( $expireDurationParamKey ) | ||
| $expireDurationParamKey | string |
Expire duration param key. |
public function setExpireDurationParamKey($expireDurationParamKey)
{
$this->_expireDurationParamKey = $expireDurationParamKey;
}
Sets param by name.
| public void setParam ( $name, $value ) | ||
| $name | string |
Param name. |
| $value | mixed |
Param value, |
public function setParam($name, $value)
{
$this->_params[$name] = $value;
}
| public void setParams ( array $params ) | ||
| $params | array | |
public function setParams(array $params)
{
$this->_params = $params;
}
Sets token value.
| public $this setToken ( $token ) | ||
| $token | string |
Token value. |
| return | $this |
The object itself |
|---|---|---|
public function setToken($token)
{
$this->setParam($this->tokenParamKey, $token);
}
Sets the token secret value.
| public void setTokenSecret ( $tokenSecret ) | ||
| $tokenSecret | string |
Token secret. |
public function setTokenSecret($tokenSecret)
{
$this->setParam($this->tokenSecretParamKey, $tokenSecret);
}