File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/omnipay/mollie/src/Message/Request/AbstractMollieRequest.php
Back
<?php namespace Omnipay\Mollie\Message\Request; use Omnipay\Common\ItemBag; use Omnipay\Common\Message\AbstractRequest; use Omnipay\Mollie\Gateway; use Omnipay\Mollie\Item; /** * This class holds all the common things for all of Mollie requests. * * @see https://docs.mollie.com/index */ abstract class AbstractMollieRequest extends AbstractRequest { const POST = 'POST'; const GET = 'GET'; const DELETE = 'DELETE'; /** * @var string */ protected $apiVersion = "v2"; /** * @var string */ protected $baseUrl = 'https://api.mollie.com/'; /** * @return string */ public function getApiKey() { return $this->getParameter('apiKey'); } /** * @param string $value * @return $this */ public function setApiKey($value) { return $this->setParameter('apiKey', $value); } /** * @return array|null */ public function getVersionStrings() { return $this->getParameter('versionStrings'); } /** * @param string $value * @return $this */ public function setVersionStrings(array $values) { return $this->setParameter('versionStrings', $values); } /** * @param string $value * @return $this */ public function setTransactionId($value) { return $this->setParameter('transactionId', $value); } /** * @return string */ public function getTransactionId() { return $this->getParameter('transactionId'); } /** * Set the items in this order * * @param Item[] $items An array of items in this order * @return $this */ public function setItems($items) { $orderItems = []; foreach ($items as $item) { if (is_array($item)) { $orderItems[] = new Item($item); } elseif (! ($item instanceof Item)) { throw new \InvalidArgumentException('Item should be an instance of ' . Item::class); } } return parent::setItems($orderItems); } /** * @param string $method * @param string $endpoint * @param array $data * @return array */ protected function sendRequest($method, $endpoint, array $data = null) { $versions = [ 'Omnipay-Mollie/' . Gateway::GATEWAY_VERSION, 'PHP/' . phpversion(), ]; if ($customVersions = $this->getParameter('versionStrings')) { $versions = array_merge($versions, $customVersions); } $headers = [ 'Accept' => "application/json", 'Content-Type' => "application/json", 'Authorization' => 'Bearer ' . $this->getApiKey(), 'User-Agent' => implode(' ', $versions), ]; if (function_exists("php_uname")) { $headers['X-Mollie-Client-Info'] = php_uname(); } $response = $this->httpClient->request( $method, $this->baseUrl . $this->apiVersion . $endpoint, $headers, ($data === null || $data === []) ? null : json_encode($data) ); return json_decode($response->getBody(), true); } protected function createAmountObject($amount) { return isset($amount) ? [ 'currency' => $this->getCurrency(), 'value' => $this->formatCurrency($amount), ] : null; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings