Initial commit - Mini CMS complet (PHP + Docker + MinIO)
This commit is contained in:
89
forum-project/vendor/aws/aws-sdk-php/src/Handler/Guzzle/GuzzleHandler.php
vendored
Normal file
89
forum-project/vendor/aws/aws-sdk-php/src/Handler/Guzzle/GuzzleHandler.php
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
<?php
|
||||
namespace Aws\Handler\Guzzle;
|
||||
|
||||
use Exception;
|
||||
use GuzzleHttp\Exception\ConnectException;
|
||||
use GuzzleHttp\Exception\RequestException;
|
||||
use GuzzleHttp\Utils;
|
||||
use GuzzleHttp\Promise;
|
||||
use GuzzleHttp\Client;
|
||||
use GuzzleHttp\ClientInterface;
|
||||
use GuzzleHttp\TransferStats;
|
||||
use Psr\Http\Message\RequestInterface as Psr7Request;
|
||||
|
||||
/**
|
||||
* A request handler that sends PSR-7-compatible requests with Guzzle.
|
||||
*/
|
||||
class GuzzleHandler
|
||||
{
|
||||
/** @var ClientInterface */
|
||||
private $client;
|
||||
|
||||
/**
|
||||
* @param ClientInterface $client
|
||||
*/
|
||||
public function __construct(?ClientInterface $client = null)
|
||||
{
|
||||
$this->client = $client ?: new Client();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Psr7Request $request
|
||||
* @param array $options
|
||||
*
|
||||
* @return Promise\Promise
|
||||
*/
|
||||
public function __invoke(Psr7Request $request, array $options = [])
|
||||
{
|
||||
$request = $request->withHeader(
|
||||
'User-Agent',
|
||||
$request->getHeaderLine('User-Agent')
|
||||
. ' ' . Utils::defaultUserAgent()
|
||||
);
|
||||
|
||||
return $this->client->sendAsync($request, $this->parseOptions($options))
|
||||
->otherwise(
|
||||
static function ($e) {
|
||||
$error = [
|
||||
'exception' => $e,
|
||||
'connection_error' => $e instanceof ConnectException,
|
||||
'response' => null,
|
||||
];
|
||||
|
||||
if (
|
||||
($e instanceof RequestException)
|
||||
&& $e->getResponse()
|
||||
) {
|
||||
$error['response'] = $e->getResponse();
|
||||
}
|
||||
|
||||
return new Promise\RejectedPromise($error);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
private function parseOptions(array $options)
|
||||
{
|
||||
if (isset($options['http_stats_receiver'])) {
|
||||
$fn = $options['http_stats_receiver'];
|
||||
unset($options['http_stats_receiver']);
|
||||
|
||||
$prev = isset($options['on_stats'])
|
||||
? $options['on_stats']
|
||||
: null;
|
||||
|
||||
$options['on_stats'] = static function (
|
||||
TransferStats $stats
|
||||
) use ($fn, $prev) {
|
||||
if (is_callable($prev)) {
|
||||
$prev($stats);
|
||||
}
|
||||
$transferStats = ['total_time' => $stats->getTransferTime()];
|
||||
$transferStats += $stats->getHandlerStats();
|
||||
$fn($transferStats);
|
||||
};
|
||||
}
|
||||
|
||||
return $options;
|
||||
}
|
||||
}
|
||||
11
forum-project/vendor/aws/aws-sdk-php/src/Handler/GuzzleV6/GuzzleHandler.php
vendored
Normal file
11
forum-project/vendor/aws/aws-sdk-php/src/Handler/GuzzleV6/GuzzleHandler.php
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Aws\Handler\GuzzleV6;
|
||||
|
||||
trigger_error(sprintf(
|
||||
'Using the "%s" class is deprecated, use "%s" instead.',
|
||||
__NAMESPACE__ . '\GuzzleHandler',
|
||||
\Aws\Handler\Guzzle\GuzzleHandler::class
|
||||
), E_USER_DEPRECATED);
|
||||
|
||||
class_alias(\Aws\Handler\Guzzle\GuzzleHandler::class, __NAMESPACE__ . '\GuzzleHandler');
|
||||
Reference in New Issue
Block a user