mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-02-06 17:35:32 +00:00
157 lines
4.9 KiB
PHP
157 lines
4.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yansongda\Pay\Provider;
|
|
|
|
use GuzzleHttp\Psr7\Response;
|
|
use GuzzleHttp\Psr7\ServerRequest;
|
|
use Psr\Http\Message\MessageInterface;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Yansongda\Artful\Artful;
|
|
use Yansongda\Artful\Event;
|
|
use Yansongda\Artful\Exception\ContainerException;
|
|
use Yansongda\Artful\Exception\InvalidParamsException;
|
|
use Yansongda\Artful\Exception\ServiceNotFoundException;
|
|
use Yansongda\Artful\Plugin\AddPayloadBodyPlugin;
|
|
use Yansongda\Artful\Plugin\ParserPlugin;
|
|
use Yansongda\Artful\Rocket;
|
|
use Yansongda\Pay\Contract\ProviderInterface;
|
|
use Yansongda\Pay\Event\CallbackReceived;
|
|
use Yansongda\Pay\Event\MethodCalled;
|
|
use Yansongda\Pay\Exception\Exception;
|
|
use Yansongda\Pay\Pay;
|
|
use Yansongda\Pay\Plugin\Unipay\AddRadarPlugin;
|
|
use Yansongda\Pay\Plugin\Unipay\Open\AddPayloadSignaturePlugin;
|
|
use Yansongda\Pay\Plugin\Unipay\Open\CallbackPlugin;
|
|
use Yansongda\Pay\Plugin\Unipay\Open\StartPlugin;
|
|
use Yansongda\Pay\Plugin\Unipay\Open\VerifySignaturePlugin;
|
|
use Yansongda\Supports\Collection;
|
|
use Yansongda\Supports\Str;
|
|
|
|
/**
|
|
* @method ResponseInterface|Rocket web(array $order) 电脑支付
|
|
* @method ResponseInterface|Rocket h5(array $order) H5支付
|
|
* @method Collection|Rocket pos(array $order) 刷卡支付(付款码,被扫码)
|
|
* @method Collection|Rocket scan(array $order) 扫码支付(摄像头,主动扫)
|
|
*/
|
|
class Unipay implements ProviderInterface
|
|
{
|
|
public const URL = [
|
|
Pay::MODE_NORMAL => 'https://gateway.95516.com/',
|
|
Pay::MODE_SANDBOX => 'https://gateway.test.95516.com/',
|
|
Pay::MODE_SERVICE => 'https://gateway.95516.com/',
|
|
];
|
|
|
|
/**
|
|
* @throws ContainerException
|
|
* @throws InvalidParamsException
|
|
* @throws ServiceNotFoundException
|
|
*/
|
|
public function __call(string $shortcut, array $params): null|Collection|MessageInterface|Rocket
|
|
{
|
|
$plugin = '\Yansongda\Pay\Shortcut\Unipay\\'.Str::studly($shortcut).'Shortcut';
|
|
|
|
return Artful::shortcut($plugin, ...$params);
|
|
}
|
|
|
|
/**
|
|
* @throws ContainerException
|
|
* @throws InvalidParamsException
|
|
*/
|
|
public function pay(array $plugins, array $params): null|Collection|MessageInterface|Rocket
|
|
{
|
|
return Artful::artful($plugins, $params);
|
|
}
|
|
|
|
/**
|
|
* @throws ContainerException
|
|
* @throws InvalidParamsException
|
|
* @throws ServiceNotFoundException
|
|
*/
|
|
public function query(array $order): Collection|Rocket
|
|
{
|
|
Event::dispatch(new MethodCalled('unipay', __METHOD__, $order, null));
|
|
|
|
return $this->__call('query', [$order]);
|
|
}
|
|
|
|
/**
|
|
* @throws ContainerException
|
|
* @throws InvalidParamsException
|
|
* @throws ServiceNotFoundException
|
|
*/
|
|
public function cancel(array $order): Collection|Rocket
|
|
{
|
|
Event::dispatch(new MethodCalled('unipay', __METHOD__, $order, null));
|
|
|
|
return $this->__call('cancel', [$order]);
|
|
}
|
|
|
|
/**
|
|
* @throws InvalidParamsException
|
|
*/
|
|
public function close(array $order): Collection|Rocket
|
|
{
|
|
throw new InvalidParamsException(Exception::PARAMS_METHOD_NOT_SUPPORTED, '参数异常: 银联不支持 close API');
|
|
}
|
|
|
|
/**
|
|
* @throws ContainerException
|
|
* @throws InvalidParamsException
|
|
* @throws ServiceNotFoundException
|
|
*/
|
|
public function refund(array $order): Collection|Rocket
|
|
{
|
|
Event::dispatch(new MethodCalled('unipay', __METHOD__, $order, null));
|
|
|
|
return $this->__call('refund', [$order]);
|
|
}
|
|
|
|
/**
|
|
* @throws ContainerException
|
|
* @throws InvalidParamsException
|
|
*/
|
|
public function callback(null|array|ServerRequestInterface $contents = null, ?array $params = null): Collection|Rocket
|
|
{
|
|
$request = $this->getCallbackParams($contents);
|
|
|
|
Event::dispatch(new CallbackReceived('unipay', $request->all(), $params, null));
|
|
|
|
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(
|
|
[StartPlugin::class],
|
|
$plugins,
|
|
[AddPayloadSignaturePlugin::class, AddPayloadBodyPlugin::class, AddRadarPlugin::class, VerifySignaturePlugin::class, ParserPlugin::class],
|
|
);
|
|
}
|
|
|
|
protected function getCallbackParams(null|array|ServerRequestInterface $contents = null): Collection
|
|
{
|
|
if (is_array($contents)) {
|
|
return Collection::wrap($contents);
|
|
}
|
|
|
|
if ($contents instanceof ServerRequestInterface) {
|
|
return Collection::wrap($contents->getParsedBody());
|
|
}
|
|
|
|
$request = ServerRequest::fromGlobals();
|
|
|
|
return Collection::wrap($request->getParsedBody());
|
|
}
|
|
}
|