init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Exception;
|
||||
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Pay\Gateways\Wechat;
|
||||
use Yansongda\Supports\Str;
|
||||
|
||||
class AppGateway extends Gateway
|
||||
{
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
* @throws Exception
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): Response
|
||||
{
|
||||
$payload['appid'] = Support::getInstance()->appid;
|
||||
$payload['trade_type'] = $this->getTradeType();
|
||||
|
||||
if (Wechat::MODE_SERVICE === $this->mode) {
|
||||
$payload['sub_appid'] = Support::getInstance()->sub_appid;
|
||||
}
|
||||
|
||||
$pay_request = [
|
||||
'appid' => Wechat::MODE_SERVICE === $this->mode ? $payload['sub_appid'] : $payload['appid'],
|
||||
'partnerid' => Wechat::MODE_SERVICE === $this->mode ? $payload['sub_mch_id'] : $payload['mch_id'],
|
||||
'prepayid' => $this->preOrder($payload)->get('prepay_id'),
|
||||
'timestamp' => strval(time()),
|
||||
'noncestr' => Str::random(),
|
||||
'package' => 'Sign=WXPay',
|
||||
];
|
||||
$pay_request['sign'] = Support::generateSign($pay_request);
|
||||
|
||||
Events::dispatch(new Events\PayStarted('Wechat', 'App', $endpoint, $pay_request));
|
||||
|
||||
return new JsonResponse($pay_request);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
protected function getTradeType(): string
|
||||
{
|
||||
return 'APP';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Yansongda\Pay\Contracts\GatewayInterface;
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Supports\Collection;
|
||||
|
||||
abstract class Gateway implements GatewayInterface
|
||||
{
|
||||
/**
|
||||
* Mode.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $mode;
|
||||
|
||||
/**
|
||||
* Bootstrap.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->mode = Support::getInstance()->mode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @return Collection
|
||||
*/
|
||||
abstract public function pay($endpoint, ?array $payload);
|
||||
|
||||
/**
|
||||
* Find.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string|array $order
|
||||
*/
|
||||
public function find($order): array
|
||||
{
|
||||
return [
|
||||
'endpoint' => 'pay/orderquery',
|
||||
'order' => is_array($order) ? $order : ['out_trade_no' => $order],
|
||||
'cert' => false,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
abstract protected function getTradeType();
|
||||
|
||||
/**
|
||||
* Schedule an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param array $payload
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*/
|
||||
protected function preOrder($payload): Collection
|
||||
{
|
||||
$payload['sign'] = Support::generateSign($payload);
|
||||
|
||||
Events::dispatch(new Events\MethodCalled('Wechat', 'PreOrder', '', $payload));
|
||||
|
||||
return Support::requestApi('pay/unifiedorder', $payload);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Pay\Gateways\Wechat;
|
||||
use Yansongda\Supports\Collection;
|
||||
|
||||
class GroupRedpackGateway extends Gateway
|
||||
{
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): Collection
|
||||
{
|
||||
$payload['wxappid'] = $payload['appid'];
|
||||
$payload['amt_type'] = 'ALL_RAND';
|
||||
|
||||
if (Wechat::MODE_SERVICE === $this->mode) {
|
||||
$payload['msgappid'] = $payload['appid'];
|
||||
}
|
||||
|
||||
unset($payload['appid'], $payload['trade_type'],
|
||||
$payload['notify_url'], $payload['spbill_create_ip']);
|
||||
|
||||
$payload['sign'] = Support::generateSign($payload);
|
||||
|
||||
Events::dispatch(new Events\PayStarted('Wechat', 'Group Redpack', $endpoint, $payload));
|
||||
|
||||
return Support::requestApi(
|
||||
'mmpaymkttransfers/sendgroupredpack',
|
||||
$payload,
|
||||
true
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
protected function getTradeType(): string
|
||||
{
|
||||
return '';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Pay\Gateways\Wechat;
|
||||
use Yansongda\Supports\Collection;
|
||||
|
||||
class MiniappGateway extends MpGateway
|
||||
{
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): Collection
|
||||
{
|
||||
$payload['appid'] = Support::getInstance()->miniapp_id;
|
||||
|
||||
if (Wechat::MODE_SERVICE === $this->mode) {
|
||||
$payload['sub_appid'] = Support::getInstance()->sub_miniapp_id;
|
||||
$this->payRequestUseSubAppId = true;
|
||||
}
|
||||
|
||||
return parent::pay($endpoint, $payload);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Exception;
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Supports\Collection;
|
||||
use Yansongda\Supports\Str;
|
||||
|
||||
class MpGateway extends Gateway
|
||||
{
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
protected $payRequestUseSubAppId = false;
|
||||
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
* @throws Exception
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): Collection
|
||||
{
|
||||
$payload['trade_type'] = $this->getTradeType();
|
||||
|
||||
$pay_request = [
|
||||
'appId' => !$this->payRequestUseSubAppId ? $payload['appid'] : $payload['sub_appid'],
|
||||
'timeStamp' => strval(time()),
|
||||
'nonceStr' => Str::random(),
|
||||
'package' => 'prepay_id='.$this->preOrder($payload)->get('prepay_id'),
|
||||
'signType' => 'MD5',
|
||||
];
|
||||
$pay_request['paySign'] = Support::generateSign($pay_request);
|
||||
|
||||
Events::dispatch(new Events\PayStarted('Wechat', 'JSAPI', $endpoint, $pay_request));
|
||||
|
||||
return new Collection($pay_request);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
protected function getTradeType(): string
|
||||
{
|
||||
return 'JSAPI';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Supports\Collection;
|
||||
|
||||
class PosGateway extends Gateway
|
||||
{
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): Collection
|
||||
{
|
||||
unset($payload['trade_type'], $payload['notify_url']);
|
||||
|
||||
$payload['sign'] = Support::generateSign($payload);
|
||||
|
||||
Events::dispatch(new Events\PayStarted('Wechat', 'Pos', $endpoint, $payload));
|
||||
|
||||
return Support::requestApi('pay/micropay', $payload);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
protected function getTradeType(): string
|
||||
{
|
||||
return 'MICROPAY';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Pay\Gateways\Wechat;
|
||||
use Yansongda\Supports\Collection;
|
||||
|
||||
class RedpackGateway extends Gateway
|
||||
{
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): Collection
|
||||
{
|
||||
$payload['wxappid'] = $payload['appid'];
|
||||
|
||||
if ('cli' !== php_sapi_name()) {
|
||||
$payload['client_ip'] = Request::createFromGlobals()->server->get('SERVER_ADDR');
|
||||
}
|
||||
|
||||
if (Wechat::MODE_SERVICE === $this->mode) {
|
||||
$payload['msgappid'] = $payload['appid'];
|
||||
}
|
||||
|
||||
unset($payload['appid'], $payload['trade_type'],
|
||||
$payload['notify_url'], $payload['spbill_create_ip']);
|
||||
|
||||
$payload['sign'] = Support::generateSign($payload);
|
||||
|
||||
Events::dispatch(new Events\PayStarted('Wechat', 'Redpack', $endpoint, $payload));
|
||||
|
||||
return Support::requestApi(
|
||||
'mmpaymkttransfers/sendredpack',
|
||||
$payload,
|
||||
true
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
protected function getTradeType(): string
|
||||
{
|
||||
return '';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
|
||||
class RefundGateway extends Gateway
|
||||
{
|
||||
/**
|
||||
* Find.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param $order
|
||||
*/
|
||||
public function find($order): array
|
||||
{
|
||||
return [
|
||||
'endpoint' => 'pay/refundquery',
|
||||
'order' => is_array($order) ? $order : ['out_trade_no' => $order],
|
||||
'cert' => false,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload)
|
||||
{
|
||||
throw new InvalidArgumentException('Not Support Refund In Pay');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
protected function getTradeType()
|
||||
{
|
||||
throw new InvalidArgumentException('Not Support Refund In Pay');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Supports\Collection;
|
||||
|
||||
class ScanGateway extends Gateway
|
||||
{
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): Collection
|
||||
{
|
||||
$payload['spbill_create_ip'] = Request::createFromGlobals()->server->get('SERVER_ADDR');
|
||||
$payload['trade_type'] = $this->getTradeType();
|
||||
|
||||
Events::dispatch(new Events\PayStarted('Wechat', 'Scan', $endpoint, $payload));
|
||||
|
||||
return $this->preOrder($payload);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
protected function getTradeType(): string
|
||||
{
|
||||
return 'NATIVE';
|
||||
}
|
||||
}
|
||||
460
addons/epay/library/v2/Yansongda/Pay/Gateways/Wechat/Support.php
Normal file
460
addons/epay/library/v2/Yansongda/Pay/Gateways/Wechat/Support.php
Normal file
@@ -0,0 +1,460 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Exception;
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\BusinessException;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Pay\Gateways\Wechat;
|
||||
use Yansongda\Pay\Log;
|
||||
use Yansongda\Supports\Collection;
|
||||
use Yansongda\Supports\Config;
|
||||
use Yansongda\Supports\Str;
|
||||
use Yansongda\Supports\Traits\HasHttpRequest;
|
||||
|
||||
/**
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @property string appid
|
||||
* @property string app_id
|
||||
* @property string miniapp_id
|
||||
* @property string sub_appid
|
||||
* @property string sub_app_id
|
||||
* @property string sub_miniapp_id
|
||||
* @property string mch_id
|
||||
* @property string sub_mch_id
|
||||
* @property string key
|
||||
* @property string return_url
|
||||
* @property string cert_client
|
||||
* @property string cert_key
|
||||
* @property array log
|
||||
* @property array http
|
||||
* @property string mode
|
||||
*/
|
||||
class Support
|
||||
{
|
||||
use HasHttpRequest;
|
||||
|
||||
/**
|
||||
* Wechat gateway.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $baseUri;
|
||||
|
||||
/**
|
||||
* Config.
|
||||
*
|
||||
* @var Config
|
||||
*/
|
||||
protected $config;
|
||||
|
||||
/**
|
||||
* Instance.
|
||||
*
|
||||
* @var Support
|
||||
*/
|
||||
private static $instance;
|
||||
|
||||
/**
|
||||
* Bootstrap.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
private function __construct(Config $config)
|
||||
{
|
||||
$this->baseUri = Wechat::URL[$config->get('mode', Wechat::MODE_NORMAL)];
|
||||
$this->config = $config;
|
||||
|
||||
$this->setHttpOptions();
|
||||
}
|
||||
|
||||
/**
|
||||
* __get.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param $key
|
||||
*
|
||||
* @return mixed|Config|null
|
||||
*/
|
||||
public function __get($key)
|
||||
{
|
||||
return $this->getConfig($key);
|
||||
}
|
||||
|
||||
/**
|
||||
* create.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*
|
||||
* @return Support
|
||||
*/
|
||||
public static function create(Config $config)
|
||||
{
|
||||
if ('cli' === php_sapi_name() || !(self::$instance instanceof self)) {
|
||||
self::$instance = new self($config);
|
||||
|
||||
self::setDevKey();
|
||||
}
|
||||
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* getInstance.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @throws InvalidArgumentException
|
||||
*
|
||||
* @return Support
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
if (is_null(self::$instance)) {
|
||||
throw new InvalidArgumentException('You Should [Create] First Before Using');
|
||||
}
|
||||
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* clear.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
public static function clear()
|
||||
{
|
||||
self::$instance = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Request wechat api.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
* @param array $data
|
||||
* @param bool $cert
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*/
|
||||
public static function requestApi($endpoint, $data, $cert = false): Collection
|
||||
{
|
||||
Events::dispatch(new Events\ApiRequesting('Wechat', '', self::$instance->getBaseUri().$endpoint, $data));
|
||||
|
||||
//xmlData需增加headers配置,否则微信方无法接收到参数
|
||||
$options = [
|
||||
'headers' => [
|
||||
'Content-Type' => 'application/xml',
|
||||
],
|
||||
];
|
||||
|
||||
$certOptions = $cert ? [
|
||||
'cert' => self::$instance->cert_client,
|
||||
'ssl_key' => self::$instance->cert_key,
|
||||
] : [];
|
||||
|
||||
$result = self::$instance->post(
|
||||
$endpoint,
|
||||
self::toXml($data),
|
||||
array_merge($options, $certOptions)
|
||||
);
|
||||
$result = is_array($result) ? $result : self::fromXml($result);
|
||||
|
||||
Events::dispatch(new Events\ApiRequested('Wechat', '', self::$instance->getBaseUri().$endpoint, $result));
|
||||
|
||||
return self::processingApiResult($endpoint, $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* Filter payload.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param array $payload
|
||||
* @param array|string $params
|
||||
* @param bool $preserve_notify_url
|
||||
*
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
public static function filterPayload($payload, $params, $preserve_notify_url = false): array
|
||||
{
|
||||
$type = self::getTypeName($params['type'] ?? '');
|
||||
|
||||
$payload = array_merge(
|
||||
$payload,
|
||||
is_array($params) ? $params : ['out_trade_no' => $params]
|
||||
);
|
||||
$payload['appid'] = self::$instance->getConfig($type, '');
|
||||
|
||||
if (Wechat::MODE_SERVICE === self::$instance->getConfig('mode', Wechat::MODE_NORMAL)) {
|
||||
$payload['sub_appid'] = self::$instance->getConfig('sub_'.$type, '');
|
||||
}
|
||||
|
||||
unset($payload['trade_type'], $payload['type']);
|
||||
if (!$preserve_notify_url) {
|
||||
unset($payload['notify_url']);
|
||||
}
|
||||
|
||||
$payload['sign'] = self::generateSign($payload);
|
||||
|
||||
return $payload;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate wechat sign.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param array $data
|
||||
*
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
public static function generateSign($data): string
|
||||
{
|
||||
$key = self::$instance->key;
|
||||
|
||||
if (is_null($key)) {
|
||||
throw new InvalidArgumentException('Missing Wechat Config -- [key]');
|
||||
}
|
||||
|
||||
ksort($data);
|
||||
|
||||
$string = md5(self::getSignContent($data).'&key='.$key);
|
||||
|
||||
Log::debug('Wechat Generate Sign Before UPPER', [$data, $string]);
|
||||
|
||||
return strtoupper($string);
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate sign content.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param array $data
|
||||
*/
|
||||
public static function getSignContent($data): string
|
||||
{
|
||||
$buff = '';
|
||||
|
||||
foreach ($data as $k => $v) {
|
||||
$buff .= ('sign' != $k && '' != $v && !is_array($v)) ? $k.'='.$v.'&' : '';
|
||||
}
|
||||
|
||||
Log::debug('Wechat Generate Sign Content Before Trim', [$data, $buff]);
|
||||
|
||||
return trim($buff, '&');
|
||||
}
|
||||
|
||||
/**
|
||||
* Decrypt refund contents.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $contents
|
||||
*/
|
||||
public static function decryptRefundContents($contents): string
|
||||
{
|
||||
return openssl_decrypt(
|
||||
base64_decode($contents),
|
||||
'AES-256-ECB',
|
||||
md5(self::$instance->key),
|
||||
OPENSSL_RAW_DATA
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert array to xml.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param array $data
|
||||
*
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
public static function toXml($data): string
|
||||
{
|
||||
if (!is_array($data) || count($data) <= 0) {
|
||||
throw new InvalidArgumentException('Convert To Xml Error! Invalid Array!');
|
||||
}
|
||||
|
||||
$xml = '<xml>';
|
||||
foreach ($data as $key => $val) {
|
||||
$xml .= is_numeric($val) ? '<'.$key.'>'.$val.'</'.$key.'>' :
|
||||
'<'.$key.'><![CDATA['.$val.']]></'.$key.'>';
|
||||
}
|
||||
$xml .= '</xml>';
|
||||
|
||||
return $xml;
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert xml to array.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $xml
|
||||
*
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
public static function fromXml($xml): array
|
||||
{
|
||||
if (!$xml) {
|
||||
throw new InvalidArgumentException('Convert To Array Error! Invalid Xml!');
|
||||
}
|
||||
|
||||
if (PHP_VERSION_ID < 80000) {
|
||||
libxml_disable_entity_loader(true);
|
||||
}
|
||||
|
||||
return json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA), JSON_UNESCAPED_UNICODE), true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get service config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string|null $key
|
||||
* @param mixed|null $default
|
||||
*
|
||||
* @return mixed|null
|
||||
*/
|
||||
public function getConfig($key = null, $default = null)
|
||||
{
|
||||
if (is_null($key)) {
|
||||
return $this->config->all();
|
||||
}
|
||||
|
||||
if ($this->config->has($key)) {
|
||||
return $this->config[$key];
|
||||
}
|
||||
|
||||
return $default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get app id according to param type.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $type
|
||||
*/
|
||||
public static function getTypeName($type = ''): string
|
||||
{
|
||||
switch ($type) {
|
||||
case '':
|
||||
$type = 'app_id';
|
||||
break;
|
||||
case 'app':
|
||||
$type = 'appid';
|
||||
break;
|
||||
default:
|
||||
$type = $type.'_id';
|
||||
}
|
||||
|
||||
return $type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Base Uri.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getBaseUri()
|
||||
{
|
||||
return $this->baseUri;
|
||||
}
|
||||
|
||||
/**
|
||||
* processingApiResult.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*
|
||||
* @return Collection
|
||||
*/
|
||||
protected static function processingApiResult($endpoint, ?array $result)
|
||||
{
|
||||
if (!isset($result['return_code']) || 'SUCCESS' != $result['return_code']) {
|
||||
throw new GatewayException('Get Wechat API Error:'.($result['return_msg'] ?? $result['retmsg'] ?? ''), $result);
|
||||
}
|
||||
|
||||
if (isset($result['result_code']) && 'SUCCESS' != $result['result_code']) {
|
||||
throw new BusinessException('Wechat Business Error: '.$result['err_code'].' - '.$result['err_code_des'], $result);
|
||||
}
|
||||
|
||||
if (false !== strpos($endpoint, 'xdc/apiv2getsignkey') ||
|
||||
false !== strpos($endpoint, 'mmpaymkttransfers') ||
|
||||
self::generateSign($result) === $result['sign']) {
|
||||
return new Collection($result);
|
||||
}
|
||||
|
||||
Events::dispatch(new Events\SignFailed('Wechat', '', $result));
|
||||
|
||||
throw new InvalidSignException('Wechat Sign Verify FAILED', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* setDevKey.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
* @throws Exception
|
||||
*
|
||||
* @return Support
|
||||
*/
|
||||
private static function setDevKey()
|
||||
{
|
||||
if (Wechat::MODE_DEV == self::$instance->mode) {
|
||||
$data = [
|
||||
'mch_id' => self::$instance->mch_id,
|
||||
'nonce_str' => Str::random(),
|
||||
];
|
||||
$data['sign'] = self::generateSign($data);
|
||||
|
||||
$result = self::requestApi('https://api.mch.weixin.qq.com/xdc/apiv2getsignkey/sign/getsignkey', $data);
|
||||
|
||||
self::$instance->config->set('key', $result['sandbox_signkey']);
|
||||
}
|
||||
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set Http options.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
private function setHttpOptions(): self
|
||||
{
|
||||
if ($this->config->has('http') && is_array($this->config->get('http'))) {
|
||||
$this->config->forget('http.base_uri');
|
||||
$this->httpOptions = $this->config->get('http');
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Pay\Gateways\Wechat;
|
||||
use Yansongda\Supports\Collection;
|
||||
|
||||
class TransferGateway extends Gateway
|
||||
{
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): Collection
|
||||
{
|
||||
if (Wechat::MODE_SERVICE === $this->mode) {
|
||||
unset($payload['sub_mch_id'], $payload['sub_appid']);
|
||||
}
|
||||
|
||||
$type = Support::getTypeName($payload['type'] ?? '');
|
||||
|
||||
$payload['mch_appid'] = Support::getInstance()->getConfig($type, '');
|
||||
$payload['mchid'] = $payload['mch_id'];
|
||||
|
||||
if ('cli' !== php_sapi_name() && !isset($payload['spbill_create_ip'])) {
|
||||
$payload['spbill_create_ip'] = Request::createFromGlobals()->server->get('SERVER_ADDR');
|
||||
}
|
||||
|
||||
unset($payload['appid'], $payload['mch_id'], $payload['trade_type'],
|
||||
$payload['notify_url'], $payload['type']);
|
||||
|
||||
$payload['sign'] = Support::generateSign($payload);
|
||||
|
||||
Events::dispatch(new Events\PayStarted('Wechat', 'Transfer', $endpoint, $payload));
|
||||
|
||||
return Support::requestApi(
|
||||
'mmpaymkttransfers/promotion/transfers',
|
||||
$payload,
|
||||
true
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Find.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param $order
|
||||
*/
|
||||
public function find($order): array
|
||||
{
|
||||
return [
|
||||
'endpoint' => 'mmpaymkttransfers/gettransferinfo',
|
||||
'order' => is_array($order) ? $order : ['partner_trade_no' => $order],
|
||||
'cert' => true,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
protected function getTradeType(): string
|
||||
{
|
||||
return '';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Symfony\Component\HttpFoundation\RedirectResponse;
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
|
||||
class WapGateway extends Gateway
|
||||
{
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidArgumentException
|
||||
* @throws InvalidSignException
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): RedirectResponse
|
||||
{
|
||||
$payload['trade_type'] = $this->getTradeType();
|
||||
|
||||
Events::dispatch(new Events\PayStarted('Wechat', 'Wap', $endpoint, $payload));
|
||||
|
||||
$mweb_url = $this->preOrder($payload)->get('mweb_url');
|
||||
|
||||
$url = is_null(Support::getInstance()->return_url) ? $mweb_url : $mweb_url.
|
||||
'&redirect_url='.urlencode(Support::getInstance()->return_url);
|
||||
|
||||
return new RedirectResponse($url);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*/
|
||||
protected function getTradeType(): string
|
||||
{
|
||||
return 'MWEB';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Wechat;
|
||||
|
||||
use Symfony\Component\HttpFoundation\RedirectResponse;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidArgumentException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Supports\Collection;
|
||||
|
||||
class WebGateway extends Gateway
|
||||
{
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @param string $endpoint
|
||||
* @param array $payload
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): Response
|
||||
{
|
||||
$payload['spbill_create_ip'] = Request::createFromGlobals()->server->get('SERVER_ADDR');
|
||||
$payload['trade_type'] = $this->getTradeType();
|
||||
|
||||
$code_url = $this->preOrder($payload)['code_url'];
|
||||
$params = [
|
||||
'body' => $payload['body'],
|
||||
'code_url' => $code_url,
|
||||
'out_trade_no' => $payload['out_trade_no'],
|
||||
'return_url' => Support::getInstance()->return_url,
|
||||
'total_fee' => $payload['total_fee'],
|
||||
];
|
||||
|
||||
$params['sign'] = md5(implode('', $params) . Support::getInstance()->app_id);
|
||||
$endpoint = addon_url("epay/api/wechat");
|
||||
|
||||
Events::dispatch(new Events\PayStarted('Wechat', 'Web/Wap', $endpoint, $payload));
|
||||
|
||||
return $this->buildPayHtml($endpoint, $params);
|
||||
}
|
||||
|
||||
/**
|
||||
* Build Html response.
|
||||
*
|
||||
* @param string $endpoint
|
||||
* @param array $payload
|
||||
* @param string $method
|
||||
*
|
||||
* @return Response
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
*/
|
||||
protected function buildPayHtml($endpoint, $payload, $method = 'POST'): Response
|
||||
{
|
||||
if (strtoupper($method) === 'GET') {
|
||||
return new RedirectResponse($endpoint . '?' . http_build_query($payload));
|
||||
}
|
||||
|
||||
$sHtml = "<form id='wechat_submit' name='wechat_submit' action='" . $endpoint . "' method='" . $method . "'>";
|
||||
foreach ($payload as $key => $val) {
|
||||
$val = str_replace("'", ''', $val);
|
||||
$sHtml .= "<input type='hidden' name='" . $key . "' value='" . $val . "'/>";
|
||||
}
|
||||
$sHtml .= "<input type='submit' value='ok' style='display:none;'></form>";
|
||||
$sHtml .= "<script>document.forms['wechat_submit'].submit();</script>";
|
||||
|
||||
return new Response($sHtml);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trade type config.
|
||||
*
|
||||
* @return string
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
*/
|
||||
protected function getTradeType(): string
|
||||
{
|
||||
return 'NATIVE';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user