Response.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\library\client;
  4. use GuzzleHttp\Promise\Promise;
  5. /**
  6. * http response
  7. *
  8. * From Laravel
  9. *
  10. * @time 2020年05月21日
  11. */
  12. class Response implements \ArrayAccess
  13. {
  14. /**
  15. * @var \GuzzleHttp\Psr7\Response|Promise
  16. */
  17. protected $response;
  18. public function __construct($response)
  19. {
  20. $this->response = $response;
  21. }
  22. /**
  23. *
  24. * @time 2020年05月22日
  25. * @return bool|callable|float|\GuzzleHttp\Psr7\PumpStream|\GuzzleHttp\Psr7\Stream|int|\Iterator|\Psr\Http\Message\StreamInterface|resource|string|null
  26. */
  27. public function body()
  28. {
  29. return $this->response->getBody();
  30. }
  31. /**
  32. * 响应内容
  33. *
  34. * @time 2020年05月22日
  35. * @return false|string
  36. */
  37. public function contents()
  38. {
  39. return $this->body()->getContents();
  40. }
  41. /**
  42. *
  43. * @time 2020年05月21日
  44. * @return array
  45. */
  46. public function json():array
  47. {
  48. return \json_decode($this->contents(), true);
  49. }
  50. /**
  51. *
  52. * @time 2020年05月21日
  53. * @return int
  54. */
  55. public function status():int
  56. {
  57. return $this->response->getStatusCode();
  58. }
  59. /**
  60. *
  61. * @time 2020年05月21日
  62. * @return bool
  63. */
  64. public function ok():bool
  65. {
  66. return $this->status() == 200;
  67. }
  68. /**
  69. *
  70. * @time 2020年05月21日
  71. * @return bool
  72. */
  73. public function successful():bool
  74. {
  75. return $this->status() >= 200 && $this->status() < 300;
  76. }
  77. /**
  78. *
  79. * @time 2020年05月21日
  80. * @return bool
  81. */
  82. public function failed():bool
  83. {
  84. return $this->status() >= 400;
  85. }
  86. /**
  87. *
  88. * @time 2020年05月21日
  89. * @return array
  90. */
  91. public function headers(): array
  92. {
  93. return $this->response->getHeaders();
  94. }
  95. /**
  96. * 异步回调
  97. *
  98. * @time 2020年05月22日
  99. * @param callable $response
  100. * @param callable $exception
  101. * @return \GuzzleHttp\Promise\FulfilledPromise|Promise|\GuzzleHttp\Promise\PromiseInterface|\GuzzleHttp\Promise\RejectedPromise
  102. */
  103. public function then(callable $response, callable $exception)
  104. {
  105. return $this->response->then($response, $exception);
  106. }
  107. /**
  108. *
  109. * @time 2020年05月21日
  110. * @param $name
  111. * @param $arguments
  112. * @return mixed
  113. */
  114. public function __call($name, $arguments)
  115. {
  116. // TODO: Implement __call() method.
  117. return $this->response->{$name}(...$arguments);
  118. }
  119. /**
  120. *
  121. * @time 2020年05月21日
  122. * @param mixed $offset
  123. * @return bool
  124. */
  125. public function offsetExists($offset)
  126. {
  127. // TODO: Implement offsetExists() method.
  128. return isset($this->json()[$offset]);
  129. }
  130. /**
  131. *
  132. * @time 2020年05月21日
  133. * @param mixed $offset
  134. * @return mixed
  135. */
  136. public function offsetGet($offset)
  137. {
  138. // TODO: Implement offsetGet() method.
  139. return $this->json()[$offset];
  140. }
  141. /**
  142. *
  143. * @time 2020年05月21日
  144. * @param mixed $offset
  145. * @param mixed $value
  146. * @return void
  147. */
  148. public function offsetSet($offset, $value)
  149. {
  150. // TODO: Implement offsetSet() method.
  151. }
  152. public function offsetUnset($offset)
  153. {
  154. // TODO: Implement offsetUnset() method.
  155. }
  156. }