JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "HttpClientOptions.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/kreait/firebase-php/src/Firebase/Http/HttpClientOptions.php
File size: 5.4 KB
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace Kreait\Firebase\Http;

use GuzzleHttp\Promise\PromiseInterface;
use GuzzleHttp\RequestOptions;
use Kreait\Firebase\Exception\InvalidArgumentException;
use Psr\Http\Message\RequestInterface;

use function is_callable;

final class HttpClientOptions
{
    /**
     * @param array<non-empty-string, mixed> $guzzleConfig
     * @param list<array{middleware: callable|callable-string, name: string}> $guzzleMiddlewares
     */
    private function __construct(
        private readonly array $guzzleConfig,
        private readonly array $guzzleMiddlewares,
    ) {
    }

    public static function default(): self
    {
        return new self([], []);
    }

    /**
     * The amount of seconds to wait while connecting to a server.
     *
     * @see RequestOptions::CONNECT_TIMEOUT
     */
    public function connectTimeout(): ?float
    {
        return $this->guzzleConfig[RequestOptions::CONNECT_TIMEOUT] ?? null;
    }

    /**
     * @param float $value the amount of seconds to wait while connecting to a server
     *
     * @see RequestOptions::CONNECT_TIMEOUT
     */
    public function withConnectTimeout(float $value): self
    {
        if ($value < 0) {
            throw new InvalidArgumentException('The connect timeout cannot be smaller than zero.');
        }

        return $this->withGuzzleConfigOption(RequestOptions::CONNECT_TIMEOUT, $value);
    }

    /**
     * The amount of seconds to wait while reading a streamed body.
     *
     * @see RequestOptions::READ_TIMEOUT
     */
    public function readTimeout(): ?float
    {
        return $this->guzzleConfig[RequestOptions::READ_TIMEOUT] ?? null;
    }

    /**
     * @param float $value the amount of seconds to wait while reading a streamed body
     *
     * @see RequestOptions::READ_TIMEOUT
     */
    public function withReadTimeout(float $value): self
    {
        if ($value < 0) {
            throw new InvalidArgumentException('The read timeout cannot be smaller than zero.');
        }

        return $this->withGuzzleConfigOption(RequestOptions::READ_TIMEOUT, $value);
    }

    /**
     * The amount of seconds to wait for a full request (connect + transfer + read) to complete.
     *
     * @see RequestOptions::TIMEOUT
     */
    public function timeout(): ?float
    {
        return $this->guzzleConfig[RequestOptions::TIMEOUT] ?? null;
    }

    /**
     * @param float $value the amount of seconds to wait while reading a streamed body
     *
     * @see RequestOptions::TIMEOUT
     */
    public function withTimeout(float $value): self
    {
        if ($value < 0) {
            throw new InvalidArgumentException('The total timeout cannot be smaller than zero.');
        }

        return $this->withGuzzleConfigOption(RequestOptions::TIMEOUT, $value);
    }

    /**
     * The proxy that all requests should be passed through.
     *
     * @see RequestOptions::PROXY
     */
    public function proxy(): ?string
    {
        return $this->guzzleConfig[RequestOptions::PROXY] ?? null;
    }

    /**
     * @param non-empty-string $value the proxy that all requests should be passed through
     *
     * @see RequestOptions::PROXY
     */
    public function withProxy(string $value): self
    {
        return $this->withGuzzleConfigOption(RequestOptions::PROXY, $value);
    }

    /**
     * @param non-empty-string $name
     */
    public function withGuzzleConfigOption(string $name, mixed $option): self
    {
        $config = $this->guzzleConfig;
        $config[$name] = $option;

        return new self($config, $this->guzzleMiddlewares);
    }

    /**
     * @param array<non-empty-string, mixed> $options
     */
    public function withGuzzleConfigOptions(array $options): self
    {
        $config = $this->guzzleConfig;

        foreach ($options as $name => $option) {
            $config[$name] = $option;
        }

        return new self($config, $this->guzzleMiddlewares);
    }

    /**
     * @return array<non-empty-string, mixed>
     */
    public function guzzleConfig(): array
    {
        return $this->guzzleConfig;
    }

    /**
     * @return list<array{middleware: callable|callable-string, name: string}>
     */
    public function guzzleMiddlewares(): array
    {
        return $this->guzzleMiddlewares;
    }

    /**
     * @param callable|callable-string $middleware
     * @param non-empty-string|null $name
     */
    public function withGuzzleMiddleware(callable|string $middleware, ?string $name = null): self
    {
        return $this->withGuzzleMiddlewares([
            ['middleware' => $middleware, 'name' => $name ?? ''],
        ]);
    }

    /**
     * @param list<array{
     *     middleware: callable|callable-string,
     *     name: string
     * }|callable|callable-string> $middlewares
     */
    public function withGuzzleMiddlewares(array $middlewares): self
    {
        $newMiddlewares = $this->guzzleMiddlewares;

        foreach ($middlewares as $definition) {
            if (is_callable($definition)) {
                $newMiddlewares[] = ['middleware' => $definition, 'name' => ''];
                continue;
            }

            $newMiddlewares[] = $definition;
        }

        return new self($this->guzzleConfig, $newMiddlewares);
    }

    /**
     * @param callable(RequestInterface, array<mixed>): PromiseInterface $handler
     */
    public function withGuzzleHandler(callable $handler): self
    {
        return $this->withGuzzleConfigOption('handler', $handler);
    }
}