File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/firstdata/src/Message/CompletePurchaseRequest.php
Back
<?php /** * First Data Connect Complete Purchase Request */ namespace Omnipay\FirstData\Message; use Omnipay\Common\Exception\InvalidResponseException; /** * First Data Connect Complete Purchase Request */ class CompletePurchaseRequest extends PurchaseRequest { public function getData() { $theirHash = (string) $this->httpRequest->request->get('response_hash'); $dateTime = (string) $this->httpRequest->request->get('txndatetime'); $amount = (string) $this->httpRequest->request->get('chargetotal'); $code = (string) $this->httpRequest->request->get('approval_code'); $ourHash = $this->createResponseHash($amount, $dateTime, $code); if ($theirHash !== $ourHash) { throw new InvalidResponseException("Callback hash does not match expected value"); } return $this->httpRequest->request->all(); } public function sendData($data) { return $this->response = new CompletePurchaseResponse($this, $data); } /** * Generate a hash string that matches the format of the one returned by the payment gateway * * @param string $amount * @param string $dateTime * @param string $code * @return string */ public function createResponseHash($amount, $dateTime, $code) { $this->validate('storeId', 'sharedSecret', 'currency'); $storeId = $this->getStoreId(); $sharedSecret = $this->getSharedSecret(); $currency = $this->getCurrencyNumeric(); $stringToHash = $sharedSecret . $code . $amount . $currency . $dateTime . $storeId; $ascii = bin2hex($stringToHash); return sha1($ascii); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.03 |
proxy
|
phpinfo
|
Settings