����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.144.149.217 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/payflow/src/Message/ |
Upload File : |
<?php namespace Omnipay\Payflow\Message; use Omnipay\Common\Message\AbstractResponse; use Omnipay\Common\Message\RequestInterface; use Omnipay\Common\Exception\InvalidResponseException; /** * Payflow Response */ class Response extends AbstractResponse { public function __construct(RequestInterface $request, $data) { $this->request = $request; if (empty($data)) { throw new InvalidResponseException; } $this->data = $this->decodeData($data); } /** * Decode absurd name value pair format */ public function decodeData($data) { $output = array(); while (strlen($data) > 0) { preg_match('/(\w+)(\[(\d+)\])?=/', $data, $matches); $key = $matches[1]; $data = substr($data, strlen($matches[0])); if (isset($matches[3])) { $value = substr($data, 0, $matches[3]); } else { $next = strpos($data, '&'); $value = $next === false ? $data : substr($data, 0, $next); } $data = substr($data, strlen($value) + 1); $output[$key] = $value; } return $output; } public function isSuccessful() { return isset($this->data['RESULT']) && '0' === $this->data['RESULT']; } public function getTransactionReference() { return isset($this->data['PNREF']) ? $this->data['PNREF'] : null; } public function getMessage() { return isset($this->data['RESPMSG']) ? $this->data['RESPMSG'] : null; } public function getCardReference() { return $this->request instanceof AuthorizeRequest || $this->request instanceof CreateCardRequest ? $this->getTransactionReference() : null; } public function getCode() { return isset($this->data['RESULT']) ? (int) $this->data['RESULT'] : null; } }