for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Wechat\V3\Pay\App;
use Closure;
use Yansongda\Artful\Contract\PluginInterface;
use Yansongda\Artful\Exception\InvalidParamsException;
use Yansongda\Artful\Logger;
use Yansongda\Artful\Rocket;
use Yansongda\Pay\Exception\Exception;
use function Yansongda\Artful\filter_params;
/**
* @see https://pay.weixin.qq.com/docs/merchant/apis/in-app-payment/get-fund-bill.html
* @see https://pay.weixin.qq.com/docs/partner/apis/partner-in-app-payment/get-fund-bill.html
*/
class GetFundBillPlugin implements PluginInterface
{
* @throws InvalidParamsException
public function assembly(Rocket $rocket, Closure $next): Rocket
Logger::debug('[Wechat][V3][Pay][App][GetFundBillPlugin] 插件开始装载', ['rocket' => $rocket]);
$payload = $rocket->getPayload();
if (is_null($payload)) {
throw new InvalidParamsException(Exception::PARAMS_NECESSARY_PARAMS_MISSING, '参数异常: App 申请资金账单,参数为空');
}
$query = filter_params($payload)->query();
$rocket->setPayload([
'_method' => 'GET',
'_url' => 'v3/bill/fundflowbill?'.$query,
'_service_url' => 'v3/bill/fundflowbill?'.$query,
]);
Logger::info('[Wechat][V3][Pay][App][GetFundBillPlugin] 插件装载完毕', ['rocket' => $rocket]);
return $next($rocket);