mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-07-05 20:41:31 -07:00
* Simplifies & beautifies everything * Introduces a new Class system. * Errors are defaulted to AWS's handler. * New function names & more efficient handling. * Should fix a majority of the errors. Please read the README for more!
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
namespace Aws\Api\Parser;
|
|
|
|
use Aws\Api\StructureShape;
|
|
use Aws\Api\Service;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Psr\Http\Message\StreamInterface;
|
|
|
|
/**
|
|
* @internal Implements REST-XML parsing (e.g., S3, CloudFront, etc...)
|
|
*/
|
|
class RestXmlParser extends AbstractRestParser
|
|
{
|
|
use PayloadParserTrait;
|
|
|
|
/**
|
|
* @param Service $api Service description
|
|
* @param XmlParser $parser XML body parser
|
|
*/
|
|
public function __construct(Service $api, XmlParser $parser = null)
|
|
{
|
|
parent::__construct($api);
|
|
$this->parser = $parser ?: new XmlParser();
|
|
}
|
|
|
|
protected function payload(
|
|
ResponseInterface $response,
|
|
StructureShape $member,
|
|
array &$result
|
|
) {
|
|
$result += $this->parseMemberFromStream($response->getBody(), $member, $response);
|
|
}
|
|
|
|
public function parseMemberFromStream(
|
|
StreamInterface $stream,
|
|
StructureShape $member,
|
|
$response
|
|
) {
|
|
$xml = $this->parseXml($stream, $response);
|
|
return $this->parser->parse($member, $xml);
|
|
}
|
|
}
|