123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?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\Plugin\StartPlugin;
- 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\Wechat\AddRadarPlugin;
- use Yansongda\Pay\Plugin\Wechat\ResponsePlugin;
- use Yansongda\Pay\Plugin\Wechat\V3\AddPayloadSignaturePlugin;
- use Yansongda\Pay\Plugin\Wechat\V3\CallbackPlugin;
- use Yansongda\Pay\Plugin\Wechat\V3\VerifySignaturePlugin;
- use Yansongda\Supports\Collection;
- use Yansongda\Supports\Str;
- /**
- * @method Collection|Rocket app(array $order) APP 支付
- * @method Collection|Rocket mini(array $order) 小程序支付
- * @method Collection|Rocket mp(array $order) 公众号支付
- * @method Collection|Rocket scan(array $order) 扫码支付(摄像头,主动扫)
- * @method Collection|Rocket h5(array $order) H5 支付
- * @method Collection|Rocket transfer(array $order) 帐户转账
- */
- class Wechat implements ProviderInterface
- {
- 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 ContainerException
- * @throws InvalidParamsException
- * @throws ServiceNotFoundException
- */
- public function __call(string $shortcut, array $params): null|Collection|MessageInterface|Rocket
- {
- $plugin = '\Yansongda\Pay\Shortcut\Wechat\\'.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('wechat', __METHOD__, $order, null));
- return $this->__call('query', [$order]);
- }
- /**
- * @throws InvalidParamsException
- */
- public function cancel(array $order): Collection|Rocket
- {
- throw new InvalidParamsException(Exception::PARAMS_METHOD_NOT_SUPPORTED, '参数异常: 微信不支持 cancel API');
- }
- /**
- * @throws ContainerException
- * @throws InvalidParamsException
- * @throws ServiceNotFoundException
- */
- public function close(array $order): Collection|Rocket
- {
- Event::dispatch(new MethodCalled('wechat', __METHOD__, $order, null));
- $this->__call('close', [$order]);
- return new Collection();
- }
- /**
- * @throws ContainerException
- * @throws InvalidParamsException
- * @throws ServiceNotFoundException
- */
- public function refund(array $order): Collection|Rocket
- {
- Event::dispatch(new MethodCalled('wechat', __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('wechat', clone $request, $params, null));
- 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(
- [StartPlugin::class],
- $plugins,
- [AddPayloadBodyPlugin::class, AddPayloadSignaturePlugin::class, AddRadarPlugin::class, VerifySignaturePlugin::class, ResponsePlugin::class, ParserPlugin::class],
- );
- }
- protected function getCallbackParams(null|array|ServerRequestInterface $contents = null): ServerRequestInterface
- {
- if (is_array($contents) && isset($contents['body'], $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();
- }
- }
|