123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- namespace crmeb\services\wechat;
- use EasyWeChat\Kernel\Support\Collection;
- class WechatResponse extends Collection
- {
-
- protected $e;
-
- protected $response;
-
- protected $error = true;
-
- public function __construct(array $items = [])
- {
- parent::__construct($items);
- $this->wechatError();
- }
-
- public function wechatError()
- {
- if (!$this->error) {
- return;
- }
- if (isset($this->items['errcode']) && 0 !== $this->items['errcode']) {
- throw new WechatException(
- ErrorMessage::getWorkMessage(
- $this->items['errcode'] ?? 0,
- $this->items['errmsg'] ?? null
- )
- );
- }
- }
-
- public function serError(bool $boole)
- {
- $this->error = $boole;
- return $this;
- }
-
- public function then(callable $then, bool $error = null)
- {
- $error = $error ?: $this->error;
- if (0 !== $this->items['errcode'] && $error) {
- throw new WechatException($this->items['errmsg']);
- }
- try {
- $this->response = $then(new static($this->items));
- } catch (\Throwable $e) {
- $this->e = $e;
- }
- return $this;
- }
-
- public function catch(callable $catch)
- {
- if (!$this->e) {
- $this->e = new WechatException('success');
- }
- $catch($this->e, $this->items);
- return $this;
- }
-
- public function getResponse()
- {
- return $this->response;
- }
- }
|