| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- declare(strict_types=1);
- namespace Yansongda\Pay\Plugin\Unipay\Open;
- use Closure;
- use Yansongda\Artful\Contract\PluginInterface;
- use Yansongda\Artful\Exception\ContainerException;
- use Yansongda\Artful\Exception\InvalidConfigException;
- use Yansongda\Artful\Exception\ServiceNotFoundException;
- use Yansongda\Artful\Logger;
- use Yansongda\Artful\Rocket;
- use Yansongda\Pay\Exception\InvalidSignException;
- use Yansongda\Supports\Collection;
- use function Yansongda\Artful\should_do_http_request;
- use function Yansongda\Pay\get_provider_config;
- use function Yansongda\Pay\verify_unipay_sign;
- class VerifySignaturePlugin implements PluginInterface
- {
- /**
- * @throws ContainerException
- * @throws InvalidConfigException
- * @throws InvalidSignException
- * @throws ServiceNotFoundException
- */
- public function assembly(Rocket $rocket, Closure $next): Rocket
- {
- /* @var Rocket $rocket */
- $rocket = $next($rocket);
- Logger::debug('[Unipay][VerifySignaturePlugin] 插件开始装载', ['rocket' => $rocket]);
- if (!should_do_http_request($rocket->getDirection())) {
- return $rocket;
- }
- $destination = $rocket->getDestination();
- if (!$destination instanceof Collection) {
- return $rocket;
- }
- $params = $rocket->getParams();
- $config = get_provider_config('unipay', $params);
- verify_unipay_sign(
- $config,
- $destination->except('signature')->sortKeys()->toString(),
- $destination->get('signature', ''),
- $destination->get('signPubKeyCert')
- );
- Logger::info('[Unipay][VerifySignaturePlugin] 插件装载完毕', ['rocket' => $rocket]);
- return $rocket;
- }
- }
|