false]), $clock); $keys = new GooglePublicKeys($keyHandler, $clock); $handler = new WithLcobucciJWT($projectId, $keys, $clock); return new self($handler); } /** * @param non-empty-string $projectId */ 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); } /** * @param non-empty-string $tenantId */ public function withExpectedTenantId(string $tenantId): self { $generator = clone $this; $generator->expectedTenantId = $tenantId; return $generator; } public function execute(VerifySessionCookie $action): Token { if ($this->expectedTenantId) { $action = $action->withExpectedTenantId($this->expectedTenantId); } return $this->handler->handle($action); } /** * @param non-empty-string $sessionCookie * * @throws SessionCookieVerificationFailed */ public function verifySessionCookie(string $sessionCookie): Token { return $this->execute(VerifySessionCookie::withSessionCookie($sessionCookie)); } /** * @param non-empty-string $sessionCookie * @param int<0, max> $leewayInSeconds * * @throws InvalidArgumentException on invalid leeway * @throws SessionCookieVerificationFailed */ public function verifySessionCookieWithLeeway(string $sessionCookie, int $leewayInSeconds): Token { return $this->execute(VerifySessionCookie::withSessionCookie($sessionCookie)->withLeewayInSeconds($leewayInSeconds)); } }