mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 04:52:49 +00:00
88 lines
2.5 KiB
PHP
88 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class Collection
|
|
*
|
|
* @property string $object
|
|
* @property string $url
|
|
* @property bool $has_more
|
|
* @property mixed $data
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class Collection extends ApiResource
|
|
{
|
|
protected $_requestParams = array();
|
|
|
|
public function setRequestParams($params)
|
|
{
|
|
$this->_requestParams = $params;
|
|
}
|
|
|
|
public function all($params = null, $opts = null)
|
|
{
|
|
list($url, $params) = $this->extractPathAndUpdateParams($params);
|
|
|
|
list($response, $opts) = $this->_request('get', $url, $params, $opts);
|
|
$this->_requestParams = $params;
|
|
return Util\Util::convertToStripeObject($response, $opts);
|
|
}
|
|
|
|
public function create($params = null, $opts = null)
|
|
{
|
|
list($url, $params) = $this->extractPathAndUpdateParams($params);
|
|
|
|
list($response, $opts) = $this->_request('post', $url, $params, $opts);
|
|
$this->_requestParams = $params;
|
|
return Util\Util::convertToStripeObject($response, $opts);
|
|
}
|
|
|
|
public function retrieve($id, $params = null, $opts = null)
|
|
{
|
|
list($url, $params) = $this->extractPathAndUpdateParams($params);
|
|
|
|
$id = Util\Util::utf8($id);
|
|
$extn = urlencode($id);
|
|
list($response, $opts) = $this->_request(
|
|
'get',
|
|
"$url/$extn",
|
|
$params,
|
|
$opts
|
|
);
|
|
$this->_requestParams = $params;
|
|
return Util\Util::convertToStripeObject($response, $opts);
|
|
}
|
|
|
|
/**
|
|
* @return AutoPagingIterator An iterator that can be used to iterate
|
|
* across all objects across all pages. As page boundaries are
|
|
* encountered, the next page will be fetched automatically for
|
|
* continued iteration.
|
|
*/
|
|
public function autoPagingIterator()
|
|
{
|
|
return new Util\AutoPagingIterator($this, $this->_requestParams);
|
|
}
|
|
|
|
private function extractPathAndUpdateParams($params)
|
|
{
|
|
$url = parse_url($this->url);
|
|
if (!isset($url['path'])) {
|
|
throw new Error\Api("Could not parse list url into parts: $url");
|
|
}
|
|
|
|
if (isset($url['query'])) {
|
|
// If the URL contains a query param, parse it out into $params so they
|
|
// don't interact weirdly with each other.
|
|
$query = array();
|
|
parse_str($url['query'], $query);
|
|
// PHP 5.2 doesn't support the ?: operator :(
|
|
$params = array_merge($params ? $params : array(), $query);
|
|
}
|
|
|
|
return array($url['path'], $params);
|
|
}
|
|
}
|