first commit
This commit is contained in:
147
vendor/yansongda/pay/src/Provider/AbstractProvider.php
vendored
Normal file
147
vendor/yansongda/pay/src/Provider/AbstractProvider.php
vendored
Normal file
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Yansongda\Pay\Provider;
|
||||
|
||||
use GuzzleHttp\Psr7\Utils;
|
||||
use Psr\Http\Client\ClientInterface;
|
||||
use Throwable;
|
||||
use Yansongda\Pay\Contract\HttpClientInterface;
|
||||
use Yansongda\Pay\Contract\PluginInterface;
|
||||
use Yansongda\Pay\Contract\ProviderInterface;
|
||||
use Yansongda\Pay\Contract\ShortcutInterface;
|
||||
use Yansongda\Pay\Event;
|
||||
use Yansongda\Pay\Exception\Exception;
|
||||
use Yansongda\Pay\Exception\InvalidConfigException;
|
||||
use Yansongda\Pay\Exception\InvalidParamsException;
|
||||
use Yansongda\Pay\Exception\InvalidResponseException;
|
||||
use Yansongda\Pay\Logger;
|
||||
use Yansongda\Pay\Pay;
|
||||
use Yansongda\Pay\Rocket;
|
||||
use Yansongda\Supports\Collection;
|
||||
use Yansongda\Supports\Pipeline;
|
||||
|
||||
abstract class AbstractProvider implements ProviderInterface
|
||||
{
|
||||
/**
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*
|
||||
* @return \Psr\Http\Message\MessageInterface|\Yansongda\Supports\Collection|array|null
|
||||
*/
|
||||
public function call(string $plugin, array $params = [])
|
||||
{
|
||||
if (!class_exists($plugin) || !in_array(ShortcutInterface::class, class_implements($plugin))) {
|
||||
throw new InvalidParamsException(Exception::SHORTCUT_NOT_FOUND, "[$plugin] is not incompatible");
|
||||
}
|
||||
|
||||
/* @var ShortcutInterface $money */
|
||||
$money = Pay::get($plugin);
|
||||
|
||||
return $this->pay(
|
||||
$this->mergeCommonPlugins($money->getPlugins($params)), $params
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*
|
||||
* @return \Psr\Http\Message\MessageInterface|\Yansongda\Supports\Collection|array|null
|
||||
*/
|
||||
public function pay(array $plugins, array $params)
|
||||
{
|
||||
Logger::info('[AbstractProvider] 即将进行 pay 操作', func_get_args());
|
||||
|
||||
Event::dispatch(new Event\PayStarted($plugins, $params, null));
|
||||
|
||||
$this->verifyPlugin($plugins);
|
||||
|
||||
/* @var Pipeline $pipeline */
|
||||
$pipeline = Pay::make(Pipeline::class);
|
||||
|
||||
/* @var Rocket $rocket */
|
||||
$rocket = $pipeline
|
||||
->send((new Rocket())->setParams($params)->setPayload(new Collection()))
|
||||
->through($plugins)
|
||||
->via('assembly')
|
||||
->then(function ($rocket) {
|
||||
return $this->ignite($rocket);
|
||||
});
|
||||
|
||||
Event::dispatch(new Event\PayFinish($rocket));
|
||||
|
||||
return $rocket->getDestination();
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidResponseException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidConfigException
|
||||
*/
|
||||
public function ignite(Rocket $rocket): Rocket
|
||||
{
|
||||
if (!should_do_http_request($rocket->getDirection())) {
|
||||
return $rocket;
|
||||
}
|
||||
|
||||
/* @var HttpClientInterface $http */
|
||||
$http = Pay::get(HttpClientInterface::class);
|
||||
|
||||
if (!($http instanceof ClientInterface)) {
|
||||
throw new InvalidConfigException(Exception::HTTP_CLIENT_CONFIG_ERROR);
|
||||
}
|
||||
|
||||
Logger::info('[AbstractProvider] 准备请求支付服务商 API', $rocket->toArray());
|
||||
|
||||
Event::dispatch(new Event\ApiRequesting($rocket));
|
||||
|
||||
try {
|
||||
$response = $http->sendRequest($rocket->getRadar());
|
||||
|
||||
$contents = $response->getBody()->getContents();
|
||||
|
||||
$rocket->setDestination($response->withBody(Utils::streamFor($contents)))
|
||||
->setDestinationOrigin($response->withBody(Utils::streamFor($contents)));
|
||||
} catch (Throwable $e) {
|
||||
Logger::error('[AbstractProvider] 请求支付服务商 API 出错', ['message' => $e->getMessage(), 'rocket' => $rocket->toArray(), 'trace' => $e->getTrace()]);
|
||||
|
||||
throw new InvalidResponseException(Exception::REQUEST_RESPONSE_ERROR, $e->getMessage(), [], $e);
|
||||
}
|
||||
|
||||
Logger::info('[AbstractProvider] 请求支付服务商 API 成功', ['response' => $response, 'rocket' => $rocket->toArray()]);
|
||||
|
||||
Event::dispatch(new Event\ApiRequested($rocket));
|
||||
|
||||
return $rocket;
|
||||
}
|
||||
|
||||
abstract public function mergeCommonPlugins(array $plugins): array;
|
||||
|
||||
/**
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
*/
|
||||
protected function verifyPlugin(array $plugins): void
|
||||
{
|
||||
foreach ($plugins as $plugin) {
|
||||
if (is_callable($plugin)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ((is_object($plugin) ||
|
||||
(is_string($plugin) && class_exists($plugin))) &&
|
||||
in_array(PluginInterface::class, class_implements($plugin))) {
|
||||
continue;
|
||||
}
|
||||
|
||||
throw new InvalidParamsException(Exception::PLUGIN_ERROR, "[$plugin] is not incompatible");
|
||||
}
|
||||
}
|
||||
}
|
||||
181
vendor/yansongda/pay/src/Provider/Alipay.php
vendored
Normal file
181
vendor/yansongda/pay/src/Provider/Alipay.php
vendored
Normal file
@@ -0,0 +1,181 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Yansongda\Pay\Provider;
|
||||
|
||||
use GuzzleHttp\Psr7\Response;
|
||||
use GuzzleHttp\Psr7\ServerRequest;
|
||||
use Psr\Http\Message\ResponseInterface;
|
||||
use Psr\Http\Message\ServerRequestInterface;
|
||||
use Yansongda\Pay\Event;
|
||||
use Yansongda\Pay\Pay;
|
||||
use Yansongda\Pay\Plugin\Alipay\CallbackPlugin;
|
||||
use Yansongda\Pay\Plugin\Alipay\LaunchPlugin;
|
||||
use Yansongda\Pay\Plugin\Alipay\PreparePlugin;
|
||||
use Yansongda\Pay\Plugin\Alipay\RadarPlugin;
|
||||
use Yansongda\Pay\Plugin\Alipay\SignPlugin;
|
||||
use Yansongda\Pay\Plugin\ParserPlugin;
|
||||
use Yansongda\Supports\Collection;
|
||||
use Yansongda\Supports\Str;
|
||||
|
||||
/**
|
||||
* @method ResponseInterface app(array $order) APP 支付
|
||||
* @method Collection pos(array $order) 刷卡支付
|
||||
* @method Collection scan(array $order) 扫码支付
|
||||
* @method Collection transfer(array $order) 帐户转账
|
||||
* @method ResponseInterface wap(array $order) 手机网站支付
|
||||
* @method ResponseInterface web(array $order) 电脑支付
|
||||
* @method Collection mini(array $order) 小程序支付
|
||||
*/
|
||||
class Alipay extends AbstractProvider
|
||||
{
|
||||
public const URL = [
|
||||
Pay::MODE_NORMAL => 'https://openapi.alipay.com/gateway.do?charset=utf-8',
|
||||
Pay::MODE_SANDBOX => 'https://openapi.alipaydev.com/gateway.do?charset=utf-8',
|
||||
Pay::MODE_SERVICE => 'https://openapi.alipay.com/gateway.do?charset=utf-8',
|
||||
];
|
||||
|
||||
/**
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*
|
||||
* @return \Psr\Http\Message\MessageInterface|\Yansongda\Supports\Collection|array|null
|
||||
*/
|
||||
public function __call(string $shortcut, array $params)
|
||||
{
|
||||
$plugin = '\\Yansongda\\Pay\\Plugin\\Alipay\\Shortcut\\'.
|
||||
Str::studly($shortcut).'Shortcut';
|
||||
|
||||
return $this->call($plugin, ...$params);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string|array $order
|
||||
*
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*
|
||||
* @return array|\Yansongda\Supports\Collection
|
||||
*/
|
||||
public function find($order)
|
||||
{
|
||||
$order = is_array($order) ? $order : ['out_trade_no' => $order];
|
||||
|
||||
Event::dispatch(new Event\MethodCalled('wechat', __METHOD__, $order, null));
|
||||
|
||||
return $this->__call('query', [$order]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string|array $order
|
||||
*
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*
|
||||
* @return array|\Yansongda\Supports\Collection
|
||||
*/
|
||||
public function cancel($order)
|
||||
{
|
||||
$order = is_array($order) ? $order : ['out_trade_no' => $order];
|
||||
|
||||
Event::dispatch(new Event\MethodCalled('wechat', __METHOD__, $order, null));
|
||||
|
||||
return $this->__call('cancel', [$order]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string|array $order
|
||||
*
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*
|
||||
* @return array|\Yansongda\Supports\Collection
|
||||
*/
|
||||
public function close($order)
|
||||
{
|
||||
$order = is_array($order) ? $order : ['out_trade_no' => $order];
|
||||
|
||||
Event::dispatch(new Event\MethodCalled('wechat', __METHOD__, $order, null));
|
||||
|
||||
return $this->__call('close', [$order]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*
|
||||
* @return array|\Yansongda\Supports\Collection
|
||||
*/
|
||||
public function refund(array $order)
|
||||
{
|
||||
Event::dispatch(new Event\MethodCalled('wechat', __METHOD__, $order, null));
|
||||
|
||||
return $this->__call('refund', [$order]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array|\Psr\Http\Message\ServerRequestInterface|null $contents
|
||||
*
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*/
|
||||
public function callback($contents = null, ?array $params = null): Collection
|
||||
{
|
||||
Event::dispatch(new Event\CallbackReceived('alipay', $contents, $params, null));
|
||||
|
||||
$request = $this->getCallbackParams($contents);
|
||||
|
||||
return $this->pay(
|
||||
[CallbackPlugin::class], $request->merge($params)->all()
|
||||
);
|
||||
}
|
||||
|
||||
public function success(): ResponseInterface
|
||||
{
|
||||
return new Response(200, [], 'success');
|
||||
}
|
||||
|
||||
public function mergeCommonPlugins(array $plugins): array
|
||||
{
|
||||
return array_merge(
|
||||
[PreparePlugin::class],
|
||||
$plugins,
|
||||
[SignPlugin::class, RadarPlugin::class],
|
||||
[LaunchPlugin::class, ParserPlugin::class],
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array|ServerRequestInterface|null $contents
|
||||
*/
|
||||
protected function getCallbackParams($contents = null): Collection
|
||||
{
|
||||
if (is_array($contents)) {
|
||||
return Collection::wrap($contents);
|
||||
}
|
||||
|
||||
if ($contents instanceof ServerRequestInterface) {
|
||||
return Collection::wrap('GET' === $contents->getMethod() ? $contents->getQueryParams() :
|
||||
$contents->getParsedBody());
|
||||
}
|
||||
|
||||
$request = ServerRequest::fromGlobals();
|
||||
|
||||
return Collection::wrap(
|
||||
array_merge($request->getQueryParams(), $request->getParsedBody())
|
||||
);
|
||||
}
|
||||
}
|
||||
176
vendor/yansongda/pay/src/Provider/Wechat.php
vendored
Normal file
176
vendor/yansongda/pay/src/Provider/Wechat.php
vendored
Normal file
@@ -0,0 +1,176 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Yansongda\Pay\Provider;
|
||||
|
||||
use GuzzleHttp\Psr7\Response;
|
||||
use GuzzleHttp\Psr7\ServerRequest;
|
||||
use Psr\Http\Message\ResponseInterface;
|
||||
use Psr\Http\Message\ServerRequestInterface;
|
||||
use Yansongda\Pay\Event;
|
||||
use Yansongda\Pay\Exception\Exception;
|
||||
use Yansongda\Pay\Exception\InvalidParamsException;
|
||||
use Yansongda\Pay\Pay;
|
||||
use Yansongda\Pay\Plugin\ParserPlugin;
|
||||
use Yansongda\Pay\Plugin\Wechat\CallbackPlugin;
|
||||
use Yansongda\Pay\Plugin\Wechat\LaunchPlugin;
|
||||
use Yansongda\Pay\Plugin\Wechat\PreparePlugin;
|
||||
use Yansongda\Pay\Plugin\Wechat\SignPlugin;
|
||||
use Yansongda\Supports\Collection;
|
||||
use Yansongda\Supports\Str;
|
||||
|
||||
/**
|
||||
* @method ResponseInterface app(array $order) APP 支付
|
||||
* @method Collection mini(array $order) 小程序支付
|
||||
* @method Collection mp(array $order) 公众号支付
|
||||
* @method Collection scan(array $order) 扫码支付
|
||||
* @method ResponseInterface wap(array $order) H5 支付
|
||||
*/
|
||||
class Wechat extends AbstractProvider
|
||||
{
|
||||
public const AUTH_TAG_LENGTH_BYTE = 16;
|
||||
|
||||
public const MCH_SECRET_KEY_LENGTH_BYTE = 32;
|
||||
|
||||
public const URL = [
|
||||
Pay::MODE_NORMAL => 'https://api.mch.weixin.qq.com/',
|
||||
Pay::MODE_SANDBOX => 'https://api.mch.weixin.qq.com/sandboxnew/',
|
||||
Pay::MODE_SERVICE => 'https://api.mch.weixin.qq.com/',
|
||||
];
|
||||
|
||||
/**
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*
|
||||
* @return \Psr\Http\Message\MessageInterface|\Yansongda\Supports\Collection|array|null
|
||||
*/
|
||||
public function __call(string $shortcut, array $params)
|
||||
{
|
||||
$plugin = '\\Yansongda\\Pay\\Plugin\\Wechat\\Shortcut\\'.
|
||||
Str::studly($shortcut).'Shortcut';
|
||||
|
||||
return $this->call($plugin, ...$params);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array|string $order
|
||||
*
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*
|
||||
* @return array|\Yansongda\Supports\Collection
|
||||
*/
|
||||
public function find($order)
|
||||
{
|
||||
$order = is_array($order) ? $order : ['transaction_id' => $order];
|
||||
|
||||
Event::dispatch(new Event\MethodCalled('wechat', __METHOD__, $order, null));
|
||||
|
||||
return $this->__call('query', [$order]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array|string $order
|
||||
*
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
*/
|
||||
public function cancel($order): void
|
||||
{
|
||||
throw new InvalidParamsException(Exception::METHOD_NOT_SUPPORTED, 'Wechat does not support cancel api');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array|string $order
|
||||
*
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*/
|
||||
public function close($order): void
|
||||
{
|
||||
$order = is_array($order) ? $order : ['out_trade_no' => $order];
|
||||
|
||||
Event::dispatch(new Event\MethodCalled('wechat', __METHOD__, $order, null));
|
||||
|
||||
$this->__call('close', [$order]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*
|
||||
* @return array|\Yansongda\Supports\Collection
|
||||
*/
|
||||
public function refund(array $order)
|
||||
{
|
||||
Event::dispatch(new Event\MethodCalled('wechat', __METHOD__, $order, null));
|
||||
|
||||
return $this->__call('refund', [$order]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array|\Psr\Http\Message\ServerRequestInterface|null $contents
|
||||
*
|
||||
* @throws \Yansongda\Pay\Exception\ContainerDependencyException
|
||||
* @throws \Yansongda\Pay\Exception\ContainerException
|
||||
* @throws \Yansongda\Pay\Exception\InvalidParamsException
|
||||
* @throws \Yansongda\Pay\Exception\ServiceNotFoundException
|
||||
*/
|
||||
public function callback($contents = null, ?array $params = null): Collection
|
||||
{
|
||||
Event::dispatch(new Event\CallbackReceived('wechat', $contents, $params, null));
|
||||
|
||||
$request = $this->getCallbackParams($contents);
|
||||
|
||||
return $this->pay(
|
||||
[CallbackPlugin::class], ['request' => $request, 'params' => $params]
|
||||
);
|
||||
}
|
||||
|
||||
public function success(): ResponseInterface
|
||||
{
|
||||
return new Response(
|
||||
200,
|
||||
['Content-Type' => 'application/json'],
|
||||
json_encode(['code' => 'SUCCESS', 'message' => '成功']),
|
||||
);
|
||||
}
|
||||
|
||||
public function mergeCommonPlugins(array $plugins): array
|
||||
{
|
||||
return array_merge(
|
||||
[PreparePlugin::class],
|
||||
$plugins,
|
||||
[SignPlugin::class],
|
||||
[LaunchPlugin::class, ParserPlugin::class],
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array|ServerRequestInterface|null $contents
|
||||
*/
|
||||
protected function getCallbackParams($contents = null): ServerRequestInterface
|
||||
{
|
||||
if (is_array($contents) && isset($contents['body']) && isset($contents['headers'])) {
|
||||
return new ServerRequest('POST', 'http://localhost', $contents['headers'], $contents['body']);
|
||||
}
|
||||
|
||||
if (is_array($contents)) {
|
||||
return new ServerRequest('POST', 'http://localhost', [], json_encode($contents));
|
||||
}
|
||||
|
||||
if ($contents instanceof ServerRequestInterface) {
|
||||
return $contents;
|
||||
}
|
||||
|
||||
return ServerRequest::fromGlobals();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user