Server IP : 66.29.132.124 / Your IP : 3.12.153.240 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/vendor/omnipay/paypal/src/Message/ |
Upload File : |
<?php namespace Omnipay\PayPal\Message; use Omnipay\Common\Message\RedirectResponseInterface; /** * PayPal Express Authorize Response */ class ExpressAuthorizeResponse extends Response implements RedirectResponseInterface { protected $liveCheckoutEndpoint = 'https://www.paypal.com/cgi-bin/webscr'; protected $testCheckoutEndpoint = 'https://www.sandbox.paypal.com/cgi-bin/webscr'; public function isSuccessful() { return false; } public function isRedirect() { return isset($this->data['ACK']) && in_array($this->data['ACK'], array('Success', 'SuccessWithWarning')); } public function getRedirectUrl() { return $this->getCheckoutEndpoint().'?'.http_build_query($this->getRedirectQueryParameters(), '', '&'); } public function getTransactionReference() { return isset($this->data['TOKEN']) ? $this->data['TOKEN'] : null; } public function getRedirectMethod() { return 'GET'; } public function getRedirectData() { return null; } protected function getRedirectQueryParameters() { return array( 'cmd' => '_express-checkout', 'useraction' => 'commit', 'token' => $this->getTransactionReference(), ); } protected function getCheckoutEndpoint() { return $this->getRequest()->getTestMode() ? $this->testCheckoutEndpoint : $this->liveCheckoutEndpoint; } }