![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/medad.corals.io/vendor/kreait/firebase-tokens/src/JWT/ |
<?php declare(strict_types=1); namespace Kreait\Firebase\JWT; use Beste\Clock\SystemClock; use GuzzleHttp\Client; use InvalidArgumentException; use Kreait\Firebase\JWT\Action\FetchGooglePublicKeys\WithGuzzle; use Kreait\Firebase\JWT\Action\FetchGooglePublicKeys\WithPsr6Cache; use Kreait\Firebase\JWT\Action\VerifyIdToken; use Kreait\Firebase\JWT\Action\VerifyIdToken\Handler; use Kreait\Firebase\JWT\Action\VerifyIdToken\WithLcobucciJWT; use Kreait\Firebase\JWT\Contract\Token; use Kreait\Firebase\JWT\Error\IdTokenVerificationFailed; use Psr\Cache\CacheItemPoolInterface; final class IdTokenVerifier { private Handler $handler; private ?string $expectedTenantId = null; public function __construct(Handler $handler) { $this->handler = $handler; } public static function createWithProjectId(string $projectId): self { $clock = SystemClock::create(); $keyHandler = new WithGuzzle(new Client(['http_errors' => false]), $clock); $keys = new GooglePublicKeys($keyHandler, $clock); $handler = new WithLcobucciJWT($projectId, $keys, $clock); return new self($handler); } public static function createWithProjectIdAndCache(string $projectId, CacheItemPoolInterface $cache): self { $clock = SystemClock::create(); $innerKeyHandler = new WithGuzzle(new Client(['http_errors' => false]), $clock); $keyHandler = new WithPsr6Cache($innerKeyHandler, $cache, $clock); $keys = new GooglePublicKeys($keyHandler, $clock); $handler = new WithLcobucciJWT($projectId, $keys, $clock); return new self($handler); } public function withExpectedTenantId(string $tenantId): self { $verifier = clone $this; $verifier->expectedTenantId = $tenantId; return $verifier; } public function execute(VerifyIdToken $action): Token { if ($this->expectedTenantId) { $action = $action->withExpectedTenantId($this->expectedTenantId); } return $this->handler->handle($action); } /** * @throws IdTokenVerificationFailed */ public function verifyIdToken(string $token): Token { return $this->execute(VerifyIdToken::withToken($token)); } /** * @throws InvalidArgumentException on invalid leeway * @throws IdTokenVerificationFailed */ public function verifyIdTokenWithLeeway(string $token, int $leewayInSeconds): Token { return $this->execute(VerifyIdToken::withToken($token)->withLeewayInSeconds($leewayInSeconds)); } }