123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <?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\Pay\Event;
- use Yansongda\Pay\Exception\ContainerException;
- use Yansongda\Pay\Exception\Exception;
- use Yansongda\Pay\Exception\InvalidParamsException;
- use Yansongda\Pay\Exception\ServiceNotFoundException;
- use Yansongda\Pay\Pay;
- use Yansongda\Pay\Plugin\ParserPlugin;
- use Yansongda\Pay\Plugin\Unipay\CallbackPlugin;
- use Yansongda\Pay\Plugin\Unipay\LaunchPlugin;
- use Yansongda\Pay\Plugin\Unipay\PreparePlugin;
- use Yansongda\Pay\Plugin\Unipay\RadarSignPlugin;
- use Yansongda\Supports\Collection;
- use Yansongda\Supports\Str;
- /**
- * @method ResponseInterface web(array $order) 电脑支付
- */
- class Unipay extends AbstractProvider
- {
- 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',
- ];
- /**
- * @return null|array|Collection|MessageInterface
- *
- * @throws ContainerException
- * @throws InvalidParamsException
- * @throws ServiceNotFoundException
- */
- public function __call(string $shortcut, array $params)
- {
- $plugin = '\\Yansongda\\Pay\\Plugin\\Unipay\\Shortcut\\'.
- Str::studly($shortcut).'Shortcut';
- return $this->call($plugin, ...$params);
- }
- /**
- * @param array|string $order
- *
- * @return array|Collection
- *
- * @throws ContainerException
- * @throws InvalidParamsException
- * @throws ServiceNotFoundException
- */
- public function find($order)
- {
- if (!is_array($order)) {
- throw new InvalidParamsException(Exception::UNIPAY_FIND_STRING_NOT_SUPPORTED);
- }
- Event::dispatch(new Event\MethodCalled('unipay', __METHOD__, $order, null));
- return $this->__call('query', [$order]);
- }
- /**
- * @param array|string $order
- *
- * @return array|Collection
- *
- * @throws ContainerException
- * @throws InvalidParamsException
- * @throws ServiceNotFoundException
- */
- public function cancel($order)
- {
- if (!is_array($order)) {
- throw new InvalidParamsException(Exception::UNIPAY_CANCEL_STRING_NOT_SUPPORTED);
- }
- Event::dispatch(new Event\MethodCalled('unipay', __METHOD__, $order, null));
- return $this->__call('cancel', [$order]);
- }
- /**
- * @param array|string $order
- *
- * @return array|Collection
- *
- * @throws InvalidParamsException
- */
- public function close($order)
- {
- throw new InvalidParamsException(Exception::METHOD_NOT_SUPPORTED, 'Unipay does not support close api');
- }
- /**
- * @return array|Collection
- *
- * @throws ContainerException
- * @throws InvalidParamsException
- * @throws ServiceNotFoundException
- */
- public function refund(array $order)
- {
- Event::dispatch(new Event\MethodCalled('unipay', __METHOD__, $order, null));
- return $this->__call('refund', [$order]);
- }
- /**
- * @param null|array|ServerRequestInterface $contents
- *
- * @throws ContainerException
- * @throws InvalidParamsException
- */
- public function callback($contents = null, ?array $params = null): Collection
- {
- $request = $this->getCallbackParams($contents);
- Event::dispatch(new Event\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(
- [PreparePlugin::class],
- $plugins,
- [RadarSignPlugin::class],
- [LaunchPlugin::class, ParserPlugin::class],
- );
- }
- /**
- * @param null|array|ServerRequestInterface $contents
- */
- protected function getCallbackParams($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());
- }
- }
|