Passed
Pull Request — master (#1002)
by
unknown
02:19
created

ResponsePlugin   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 13
c 1
b 0
f 0
dl 0
loc 33
rs 10
wmc 7

2 Methods

Rating   Name   Duplication   Size   Complexity  
A validateResponse() 0 11 6
A assembly() 0 12 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yansongda\Pay\Plugin\Epay;
6
7
use Closure;
8
use Psr\Http\Message\ResponseInterface;
9
use Yansongda\Artful\Contract\PluginInterface;
10
use Yansongda\Artful\Exception\Exception;
11
use Yansongda\Artful\Exception\InvalidResponseException;
12
use Yansongda\Artful\Logger;
13
use Yansongda\Artful\Rocket;
14
use Yansongda\Supports\Collection;
15
16
class ResponsePlugin implements PluginInterface
17
{
18
    /**
19
     * @throws InvalidResponseException
20
     */
21
    public function assembly(Rocket $rocket, Closure $next): Rocket
22
    {
23
        /* @var Rocket $rocket */
24
        $rocket = $next($rocket);
25
26
        Logger::debug('[Epay][ResponsePlugin] 插件开始装载', ['rocket' => $rocket]);
27
28
        $this->validateResponse($rocket);
29
30
        Logger::info('[Epay][ResponsePlugin] 插件装载完毕', ['rocket' => $rocket]);
31
32
        return $rocket;
33
    }
34
35
    /**
36
     * @throws InvalidResponseException
37
     */
38
    protected function validateResponse(Rocket $rocket): void
39
    {
40
        $destination = $rocket->getDestination();
41
        $destinationOrigin = $rocket->getDestinationOrigin();
42
        if ($destinationOrigin instanceof ResponseInterface
43
            && ($destinationOrigin->getStatusCode() < 200 || $destinationOrigin->getStatusCode() >= 300)) {
44
            throw new InvalidResponseException(Exception::RESPONSE_ERROR, 'epay返回状态码异常,请检查参数是否错误', $rocket->getDestination());
45
        }
46
47
        if ($destination instanceof Collection && '000000' !== $destination->get('respCode')) {
48
            throw new InvalidResponseException(Exception::RESPONSE_ERROR, sprintf('epay返回错误: respCode:%s respMsg:%s', $destination->get('respCode'), $destination->get('respMsg')), $rocket->getDestination());
49
        }
50
    }
51
}
52