Files
huangjingfen/pro_v3.5.1/crmeb/services/wechat/WechatResponse.php
apple 78de918c37 Initial commit: queue workspace
Made-with: Cursor
2026-03-21 02:55:24 +08:00

130 lines
3.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace crmeb\services\wechat;
use think\Collection;
use Throwable;
use EasyWeChat\Kernel\HttpClient\Response;
use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
/**
* 微信错误
* Class WechatResponse
* @package crmeb\services\wechat
*/
class WechatResponse extends Collection
{
/**
* @var Throwable
*/
protected Throwable $e;
/**
* 是否抛出默认错误
* @var bool
*/
protected bool $error = true;
/**
* 数据转换
* @var array
*/
protected $items = [];
/**
* WechatResponse constructor.
* @param $items
*/
public function __construct($items = [])
{
$this->items = is_object($items) && method_exists($items, 'toArray') ? $items->toArray() : $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
)
);
}
}
/**
* @param bool $boole
* @return $this
*/
public function serError(bool $boole)
{
$this->error = $boole;
return $this;
}
/**
* 正确处理
* @param callable $then
* @param bool $error
* @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($this->items);
} catch (Throwable $e) {
$this->e = $e;
}
return $this;
}
/**
* 异常处理
* @param callable $catch
* @return $this
*/
public function catch(callable $catch)
{
if (!$this->e) {
$this->e = new WechatException('success');
}
$catch($this->e, $this->items);
return $this;
}
/**
* 获取返回值
* @return string
*/
public function getResponse()
{
return $this->response;
}
}