File: /home/marketing.cfbon.ru/public_html/vendor/kreait/firebase-tokens/src/JWT/CustomTokenGenerator.php
<?php
declare(strict_types=1);
namespace Kreait\Firebase\JWT;
use Beste\Clock\SystemClock;
use DateInterval;
use Kreait\Firebase\JWT\Action\CreateCustomToken;
use Kreait\Firebase\JWT\Action\CreateCustomToken\Handler;
use Kreait\Firebase\JWT\Action\CreateCustomToken\WithLcobucciJWT;
use Kreait\Firebase\JWT\Contract\Token;
use Kreait\Firebase\JWT\Error\CustomTokenCreationFailed;
use Kreait\Firebase\JWT\Value\Duration;
final class CustomTokenGenerator
{
    private ?string $tenantId = null;
    public function __construct(private readonly Handler $handler)
    {
    }
    /**
     * @param non-empty-string $clientEmail
     * @param non-empty-string $privateKey
     */
    public static function withClientEmailAndPrivateKey(string $clientEmail, string $privateKey): self
    {
        $handler = new WithLcobucciJWT($clientEmail, $privateKey, SystemClock::create());
        return new self($handler);
    }
    /**
     * @param non-empty-string $tenantId
     */
    public function withTenantId(string $tenantId): self
    {
        $generator = clone $this;
        $generator->tenantId = $tenantId;
        return $generator;
    }
    public function execute(CreateCustomToken $action): Token
    {
        if ($this->tenantId) {
            $action = $action->withTenantId($this->tenantId);
        }
        return $this->handler->handle($action);
    }
    /**
     * @param non-empty-string $uid
     * @param array<non-empty-string, mixed>|null $claims
     *
     * @throws CustomTokenCreationFailed
     */
    public function createCustomToken(string $uid, array|null $claims = null, Duration|DateInterval|string|int|null $timeToLive = null): Token
    {
        $action = CreateCustomToken::forUid($uid);
        if ($claims !== null) {
            $action = $action->withCustomClaims($claims);
        }
        if ($timeToLive !== null) {
            $action = $action->withTimeToLive($timeToLive);
        }
        return $this->execute($action);
    }
}