123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- <?php
- declare(strict_types=1);
- namespace catcher\library\client;
- use catcher\exceptions\FailedException;
- use GuzzleHttp\Client;
- use GuzzleHttp\Promise\Promise;
- use GuzzleHttp\TransferStats;
- use Psr\Http\Message\ResponseInterface;
- use function GuzzleHttp\Psr7\stream_for;
- class Http
- {
- /**
- * @var Client $client
- */
- protected $client = null;
- /**
- * auth
- *
- * @var array
- */
- protected $auth = [];
- /**
- * 代理
- *
- * @var array
- */
- protected $proxy = [];
- /**
- * body
- *
- * @var array
- */
- protected $body = [];
- /**
- * header
- *
- * @var array
- */
- protected $header = [];
- /**
- * form params
- *
- * @var array
- */
- protected $formParams = [];
- /**
- * query set
- *
- * @var array
- */
- protected $query = [];
- /**
- * json set
- *
- * @var array
- */
- protected $json = [];
- /**
- * 可选参数
- * @var array
- */
- protected $options = [];
- /**
- * 异步请求
- *
- * @var bool
- */
- protected $async = false;
- /**
- * @var array
- */
- protected $timeout = [];
- /**
- * @var string
- */
- protected $token = '';
- protected $multipart = [];
- /**
- * 忽略证书
- *
- * @var array
- */
- protected $ignoreSsl = [];
- /**
- * 获取 Guzzle 客户端
- *
- * @time 2020年05月21日
- * @return Client
- */
- public function getClient()
- {
- if (!$this->client) {
- $this->client = new Client;
- }
- return $this->client;
- }
- /**
- * headers
- *
- * @time 2020年05月21日
- * @param array $headers
- * @return $this
- */
- public function headers(array $headers)
- {
- $this->header = isset($this->header['headers']) ?
- array_merge($this->header['headers'], $headers) :
- [ 'headers' => $headers ];
- return $this;
- }
- /**
- * set bearer token
- *
- * @time 2020年05月22日
- * @param string $token
- * @return $this
- */
- public function token(string $token)
- {
- $this->header['headers']['authorization'] = 'Bearer '. $token;
- return $this;
- }
- /**
- * body
- *
- * @time 2020年05月21日
- * @param $body
- * @return $this
- */
- public function body($body)
- {
- $this->body = [
- 'body' => $body
- ];
- return $this;
- }
- /**
- * json
- *
- * @time 2020年05月21日
- * @param array $data
- * @return $this
- */
- public function json(array $data)
- {
- $this->json = [
- 'json' => $data
- ];
- return $this;
- }
- /**
- * query
- *
- * @time 2020年05月21日
- * @param array $query
- * @return $this
- */
- public function query(array $query)
- {
- $this->query = [
- 'query' => $query,
- ];
- return $this;
- }
- /**
- * form params
- *
- * @time 2020年05月21日
- * @param $params
- * @return $this
- */
- public function form(array $params)
- {
- $this->formParams = [
- 'form_params' => array_merge($this->multipart, $params)
- ];
- return $this;
- }
- /**
- * timeout
- *
- * @time 2020年05月21日
- * @param $timeout
- * @return $this
- */
- public function timeout($timeout)
- {
- $this->timeout = [
- 'connect_timeout' => $timeout
- ];
- return $this;
- }
- /**
- * 忽略 ssl 证书
- *
- * @return $this
- */
- public function ignoreSsl()
- {
- $this->ignoreSsl = [
- 'verify' => false,
- ];
- return $this;
- }
- /**
- * 可选参数
- *
- * @time 2020年05月22日
- * @param array $options
- * @return $this
- */
- public function options(array $options)
- {
- $this->options = $options;
- return $this;
- }
- /**
- * Request get
- *
- * @time 2020年05月21日
- * @param string $url
- * @return Response
- */
- public function get(string $url)
- {
- return new Response($this->getClient()->{$this->asyncMethod(__FUNCTION__)}($url, $this->merge()));
- }
- /**
- * Request post
- *
- * @time 2020年05月21日
- * @param $url
- * @return mixed
- */
- public function post(string $url)
- {
- return new Response($this->getClient()->{$this->asyncMethod(__FUNCTION__)}($url, $this->merge()));
- }
- /**
- * Request put
- *
- * @time 2020年05月21日
- * @param $url
- * @return mixed
- */
- public function put(string $url)
- {
- return new Response($this->getClient()->{$this->asyncMethod(__FUNCTION__)}($url, $this->merge()));
- }
- /**
- * Request delete
- *
- * @time 2020年05月21日
- * @param $url
- * @return mixed
- */
- public function delete(string $url)
- {
- return new Response($this->getClient()->{$this->asyncMethod(__FUNCTION__)}($url, $this->merge()));
- }
- /**
- * request params merge
- *
- * @time 2020年05月22日
- * @return array
- */
- protected function merge()
- {
- return array_merge($this->header, $this->query, $this->timeout,
- $this->options, $this->body, $this->auth, $this->multipart, $this->formParams,
- $this->ignoreSsl
- );
- }
- /**
- * 异步请求
- *
- * @time 2020年05月21日
- * @return $this
- */
- public function async()
- {
- $this->async = true;
- return $this;
- }
- /**
- * 附件
- *
- * @time 2020年05月22日
- * @param $name
- * @param $resource
- * @param $filename
- * @return $this
- */
- public function attach(string $name, $resource, string $filename)
- {
- $this->multipart = [
- 'multipart' => [
- [
- 'name' => $name,
- 'contents' => $resource,
- 'filename' => $filename,
- ]
- ]
- ];
- return $this;
- }
- /**
- * 异步方法
- *
- * @time 2020年05月21日
- * @param $method
- * @return string
- */
- protected function asyncMethod($method)
- {
- return $this->async ? $method . 'Async' : $method;
- }
- /**
- * onHeaders
- *
- * @time 2020年05月22日
- * @param callable $callable
- * @return mixed
- */
- public function onHeaders(callable $callable)
- {
- $this->options['on_headers'] = $callable;
- return $this;
- }
- /**
- * onStats
- *
- * @time 2020年05月22日
- * @param callable $callable
- * @return mixed
- */
- public function onStats(callable $callable)
- {
- $this->options['on_stats'] = $callable;
- return $this;
- }
- /**
- * 认证
- *
- * @time 2020年04月30日
- * @param $username
- * @param $password
- * @return $this
- */
- public function auth($username, $password)
- {
- $this->options = [
- 'auth' => $username, $password
- ];
- return $this;
- }
- /**
- * proxy
- *
- * @time 2020年05月21日
- * @param array $proxy
- * @return $this
- */
- public function proxy(array $proxy)
- {
- $this->proxy = $proxy;
- return $this;
- }
- }
|