34 lines
922 B
PHP
34 lines
922 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yansongda\Pay\Parser;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Yansongda\Pay\Contract\ParserInterface;
|
|
use Yansongda\Pay\Exception\Exception;
|
|
use Yansongda\Pay\Exception\InvalidResponseException;
|
|
|
|
class ArrayParser implements ParserInterface
|
|
{
|
|
/**
|
|
* @throws \Yansongda\Pay\Exception\InvalidResponseException
|
|
*/
|
|
public function parse(?ResponseInterface $response): array
|
|
{
|
|
if (is_null($response)) {
|
|
throw new InvalidResponseException(Exception::RESPONSE_NONE);
|
|
}
|
|
|
|
$contents = $response->getBody()->getContents();
|
|
|
|
$result = json_decode($contents, true);
|
|
|
|
if (JSON_ERROR_NONE !== json_last_error()) {
|
|
throw new InvalidResponseException(Exception::UNPACK_RESPONSE_ERROR, 'Unpack Response Error', ['contents' => $contents, 'response' => $response]);
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|