| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- declare(strict_types=1);
- namespace Yansongda\Pay\Plugin\Wechat\V3;
- use Closure;
- use Yansongda\Artful\Contract\PluginInterface;
- use Yansongda\Artful\Exception\ContainerException;
- use Yansongda\Artful\Exception\InvalidConfigException;
- use Yansongda\Artful\Exception\InvalidParamsException;
- use Yansongda\Artful\Exception\ServiceNotFoundException;
- use Yansongda\Artful\Logger;
- use Yansongda\Artful\Rocket;
- use Yansongda\Pay\Exception\DecryptException;
- use Yansongda\Pay\Exception\InvalidSignException;
- use function Yansongda\Artful\should_do_http_request;
- use function Yansongda\Pay\verify_wechat_sign;
- class VerifySignaturePlugin implements PluginInterface
- {
- /**
- * @throws ContainerException
- * @throws InvalidConfigException
- * @throws InvalidSignException
- * @throws ServiceNotFoundException
- * @throws DecryptException
- * @throws InvalidParamsException
- */
- public function assembly(Rocket $rocket, Closure $next): Rocket
- {
- /* @var Rocket $rocket */
- $rocket = $next($rocket);
- Logger::debug('[Wechat][V3][VerifySignaturePlugin] 插件开始装载', ['rocket' => $rocket]);
- if (!should_do_http_request($rocket->getDirection()) || is_null($rocket->getDestinationOrigin())) {
- return $rocket;
- }
- verify_wechat_sign($rocket->getDestinationOrigin(), $rocket->getParams());
- Logger::info('[Wechat][V3][VerifySignaturePlugin] 插件装载完毕', ['rocket' => $rocket]);
- return $rocket;
- }
- }
|