Files
kiri-client/CoroutineClient.php
T

167 lines
4.1 KiB
PHP
Raw Normal View History

2022-01-09 13:54:34 +08:00
<?php
/**
* Created by PhpStorm.
* User: whwyy
* Date: 2018/5/24 0024
* Time: 11:34
*/
declare(strict_types=1);
2022-01-10 11:39:56 +08:00
namespace Kiri;
2022-01-09 13:54:34 +08:00
use Exception;
use Swoole\Coroutine\Http\Client as SwowClient;
2023-08-17 16:32:02 +08:00
use Swoole\Coroutine\System;
2022-01-09 13:54:34 +08:00
/**
* Class Client
2022-01-12 14:10:33 +08:00
* @package Kiri\Http
2022-01-09 13:54:34 +08:00
*/
class CoroutineClient extends ClientAbstracts
{
2022-05-31 07:46:01 +08:00
use TSwooleClient;
/**
* @param string $method
* @param $path
2023-07-12 21:38:27 +08:00
* @param array|string $params
2022-05-31 07:46:01 +08:00
* @return void
* @throws Exception
*/
2023-07-12 21:38:27 +08:00
public function request(string $method, $path, array|string $params = []): void
2022-05-31 07:46:01 +08:00
{
if (!str_starts_with($path, '/')) {
$path = '/' . $path;
}
2023-08-17 16:32:02 +08:00
$host = $this->getHost();
if (!preg_match('/(\d{1,3}\.){3}\d{1,3}/', $host)) {
2023-08-18 16:37:47 +08:00
$this->withHost(System::gethostbyname($host))->withAddedHeader('Host', $host);
2023-08-17 16:32:02 +08:00
}
2022-05-31 07:46:01 +08:00
$this->withMethod($method)
->coroutine(
$path,
$this->paramEncode($params)
);
}
/**
* @param $path
* @return $this
*/
public function withCAInfo($path): static
{
return $this;
}
/**
* @param $url
* @param array|string $data
* @throws Exception 使用swoole协程方式请求
*/
private function coroutine($url, array|string $data = []): void
{
try {
$this->generate_client($this->getHost(), $this->isSSL());
if ($this->client->statusCode < 0) {
throw new Exception($this->client->errMsg);
}
$this->execute($url, $data);
} catch (\Throwable $exception) {
$this->setStatusCode(-1);
$this->setBody(jTraceEx($exception));
}
}
/**
* @param $path
* @param $data
* @return void
* @throws Exception
*/
private function execute($path, $data): void
{
$this->client->execute($this->setParams($path, $data));
if (in_array($this->client->getStatusCode(), [502, 404])) {
$this->retry($path, $data);
} else {
$this->setStatusCode($this->client->getStatusCode());
$this->setBody($this->client->getBody());
$this->setResponseHeader($this->client->headers);
}
}
/**
* @param $path
* @param $data
* @return void
* @throws Exception
*/
private function retry($path, $data): void
{
2023-07-12 21:38:27 +08:00
if (($this->num += 1) <= $this->retryNum) {
2022-05-31 07:46:01 +08:00
sleep($this->retryTimeout);
$this->execute($path, $data);
} else {
2022-05-31 11:48:20 +08:00
$this->setStatusCode($this->client->statusCode);
$this->setBody($this->client->errMsg);
2022-05-31 07:46:01 +08:00
}
}
/**
* @param $host
* @param $isHttps
*/
private function generate_client($host, $isHttps): void
{
if ($isHttps || $this->isSSL()) {
$this->client = new SwowClient($host, 443, true);
} else {
$this->client = new SwowClient($host, $this->getPort(), false);
}
$this->client->set($this->settings());
if (!empty($this->getAgent())) {
$this->withAddedHeader('User-Agent', $this->getAgent());
}
$this->client->setHeaders($this->getHeader());
$this->client->setMethod(strtoupper($this->getMethod()));
}
/**
* @param $path
* @param $data
* @return string
*/
private function setParams($path, $data): string
{
2023-07-12 21:38:27 +08:00
$content = $this->getData();
2022-05-31 07:46:01 +08:00
if (!empty($content)) {
$this->client->setData($content);
}
if ($this->isGet()) {
if (!empty($data)) $path .= '?' . $data;
} else {
$data = $this->mergeParams($data);
if (!empty($data)) {
$this->client->setData($data);
}
}
return $path;
}
/**
*
*/
public function close(): void
{
$this->client->close();
}
2022-01-09 13:54:34 +08:00
}