/home/techb158/balacoffee.com/wp-content/plugins/updraftplus/includes/Google/Auth
NameSizeModeActions
Abstract.php12860644editdlrm
AppIdentity.php35000644editdlrm
AssertionCredentials.php38700644editdlrm
ComputeEngine.php42680644editdlrm
Exception.php7590644editdlrm
LoginTicket.php19300644editdlrm
OAuth2.php191590644editdlrm
Simple.php20030644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/updraftplus/includes/Google/Auth/LoginTicket.php (1930B)
*/ class Google_Auth_LoginTicket { const USER_ATTR = "sub"; // Information from id token envelope. private $envelope; // Information from id token payload. private $payload; /** * Creates a user based on the supplied token. * * @param string $envelope Header from a verified authentication token. * @param string $payload Information from a verified authentication token. */ public function __construct($envelope, $payload) { $this->envelope = $envelope; $this->payload = $payload; } /** * Returns the numeric identifier for the user. * @throws Google_Auth_Exception * @return */ public function getUserId() { if (array_key_exists(self::USER_ATTR, $this->payload)) { return $this->payload[self::USER_ATTR]; } throw new Google_Auth_Exception("No user_id in token"); } /** * Returns attributes from the login ticket. This can contain * various information about the user session. * @return array */ public function getAttributes() { return array("envelope" => $this->envelope, "payload" => $this->payload); } }