index : flyspray | |
Archlinux32 customized Flyspray installation | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2020-02-01 09:05:48 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2020-02-01 09:05:48 +0100 |
commit | 6854cb3f4d8219cf1829e32122eb2502a916eae9 (patch) | |
tree | 350feb504587d932e02837a1442b059759927646 /vendor/league/oauth2-client/src/Token/AccessToken.php |
-rwxr-xr-x | vendor/league/oauth2-client/src/Token/AccessToken.php | 77 |
diff --git a/vendor/league/oauth2-client/src/Token/AccessToken.php b/vendor/league/oauth2-client/src/Token/AccessToken.php new file mode 100755 index 0000000..bcfbfb1 --- /dev/null +++ b/vendor/league/oauth2-client/src/Token/AccessToken.php @@ -0,0 +1,77 @@ +<?php + +namespace League\OAuth2\Client\Token; + +use InvalidArgumentException; + +class AccessToken +{ + /** + * @var string accessToken + */ + public $accessToken; + + /** + * @var int expires + */ + public $expires; + + /** + * @var string refreshToken + */ + public $refreshToken; + + /** + * @var string uid + */ + public $uid; + + /** + * Sets the token, expiry, etc values. + * + * @param array $options token options + * @return void + */ + public function __construct(array $options = null) + { + if (! isset($options['access_token'])) { + throw new \InvalidArgumentException( + 'Required option not passed: access_token'.PHP_EOL + .print_r($options, true) + ); + } + + $this->accessToken = $options['access_token']; + + if (!empty($options['uid'])) { + $this->uid = $options['uid']; + } + + if (!empty($options['refresh_token'])) { + $this->refreshToken = $options['refresh_token']; + } + + // We need to know when the token expires. Show preference to + // 'expires_in' since it is defined in RFC6749 Section 5.1. + // Defer to 'expires' if it is provided instead. + if (!empty($options['expires_in'])) { + $this->expires = time() + ((int) $options['expires_in']); + } elseif (!empty($options['expires'])) { + // Some providers supply the seconds until expiration rather than + // the exact timestamp. Take a best guess at which we received. + $expires = $options['expires']; + $expiresInFuture = $expires > time(); + $this->expires = $expiresInFuture ? $expires : time() + ((int) $expires); + } + } + + /** + * Returns the token key. + * + * @return string + */ + public function __toString() + { + return (string) $this->accessToken; + } +} |