mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-08-20 05:13:42 -07:00
spaces.php
This commit is contained in:
parent
7755490b81
commit
eefa32741e
845 changed files with 50409 additions and 0 deletions
93
aws/Aws/AwsClientTrait.php
Normal file
93
aws/Aws/AwsClientTrait.php
Normal file
|
@ -0,0 +1,93 @@
|
|||
<?php
|
||||
namespace Aws;
|
||||
|
||||
use Aws\Api\Service;
|
||||
use GuzzleHttp\Promise\Promise;
|
||||
|
||||
/**
|
||||
* A trait providing generic functionality for interacting with Amazon Web
|
||||
* Services. This is meant to be used in classes implementing
|
||||
* \Aws\AwsClientInterface
|
||||
*/
|
||||
trait AwsClientTrait
|
||||
{
|
||||
public function getPaginator($name, array $args = [])
|
||||
{
|
||||
$config = $this->getApi()->getPaginatorConfig($name);
|
||||
|
||||
return new ResultPaginator($this, $name, $args, $config);
|
||||
}
|
||||
|
||||
public function getIterator($name, array $args = [])
|
||||
{
|
||||
$config = $this->getApi()->getPaginatorConfig($name);
|
||||
if (!$config['result_key']) {
|
||||
throw new \UnexpectedValueException(sprintf(
|
||||
'There are no resources to iterate for the %s operation of %s',
|
||||
$name, $this->getApi()['serviceFullName']
|
||||
));
|
||||
}
|
||||
|
||||
$key = is_array($config['result_key'])
|
||||
? $config['result_key'][0]
|
||||
: $config['result_key'];
|
||||
|
||||
if ($config['output_token'] && $config['input_token']) {
|
||||
return $this->getPaginator($name, $args)->search($key);
|
||||
}
|
||||
|
||||
$result = $this->execute($this->getCommand($name, $args))->search($key);
|
||||
|
||||
return new \ArrayIterator((array) $result);
|
||||
}
|
||||
|
||||
public function waitUntil($name, array $args = [])
|
||||
{
|
||||
return $this->getWaiter($name, $args)->promise()->wait();
|
||||
}
|
||||
|
||||
public function getWaiter($name, array $args = [])
|
||||
{
|
||||
$config = isset($args['@waiter']) ? $args['@waiter'] : [];
|
||||
$config += $this->getApi()->getWaiterConfig($name);
|
||||
|
||||
return new Waiter($this, $name, $args, $config);
|
||||
}
|
||||
|
||||
public function execute(CommandInterface $command)
|
||||
{
|
||||
return $this->executeAsync($command)->wait();
|
||||
}
|
||||
|
||||
public function executeAsync(CommandInterface $command)
|
||||
{
|
||||
$handler = $command->getHandlerList()->resolve();
|
||||
return $handler($command);
|
||||
}
|
||||
|
||||
public function __call($name, array $args)
|
||||
{
|
||||
$params = isset($args[0]) ? $args[0] : [];
|
||||
|
||||
if (substr($name, -5) === 'Async') {
|
||||
return $this->executeAsync(
|
||||
$this->getCommand(substr($name, 0, -5), $params)
|
||||
);
|
||||
}
|
||||
|
||||
return $this->execute($this->getCommand($name, $params));
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $name
|
||||
* @param array $args
|
||||
*
|
||||
* @return CommandInterface
|
||||
*/
|
||||
abstract public function getCommand($name, array $args = []);
|
||||
|
||||
/**
|
||||
* @return Service
|
||||
*/
|
||||
abstract public function getApi();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue