File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/worldpay/src/Message/PurchaseRequest.php
Back
<?php namespace Omnipay\WorldPay\Message; use Omnipay\Common\Message\AbstractRequest; /** * WorldPay Purchase Request */ class PurchaseRequest extends AbstractRequest { protected $liveEndpoint = 'https://secure.worldpay.com/wcc/purchase'; protected $testEndpoint = 'https://secure-test.worldpay.com/wcc/purchase'; public function getInstallationId() { return $this->getParameter('installationId'); } public function setInstallationId($value) { return $this->setParameter('installationId', $value); } public function getAccountId() { return $this->getParameter('accountId'); } public function setAccountId($value) { return $this->setParameter('accountId', $value); } public function getSecretWord() { return $this->getParameter('secretWord'); } public function setSecretWord($value) { return $this->setParameter('secretWord', $value); } public function getCallbackPassword() { return $this->getParameter('callbackPassword'); } public function setCallbackPassword($value) { return $this->setParameter('callbackPassword', $value); } public function getData() { $this->validate('amount'); // Either the nodifyUrl or the returnUrl can be provided. // The returnUrl is deprecated, as strictly this is a notifyUrl. if (!$this->getNotifyUrl()) { $this->validate('returnUrl'); } $data = array(); $data['instId'] = $this->getInstallationId(); $data['accId1'] = $this->getAccountId(); $data['cartId'] = $this->getTransactionId(); $data['desc'] = $this->getDescription(); $data['amount'] = $this->getAmount(); $data['currency'] = $this->getCurrency(); $data['testMode'] = $this->getTestMode() ? 100 : 0; $data['MC_callback'] = $this->getNotifyUrl() ?: $this->getReturnUrl(); if ($this->getCard()) { $data['name'] = $this->getCard()->getName(); $data['address1'] = $this->getCard()->getAddress1(); $data['address2'] = $this->getCard()->getAddress2(); $data['town'] = $this->getCard()->getCity(); $data['region'] = $this->getCard()->getState(); $data['postcode'] = $this->getCard()->getPostcode(); $data['country'] = $this->getCard()->getCountry(); $data['tel'] = $this->getCard()->getPhone(); $data['email'] = $this->getCard()->getEmail(); } if ($this->getSecretWord()) { $data['signatureFields'] = 'instId:amount:currency:cartId'; $signature_data = array($this->getSecretWord(), $data['instId'], $data['amount'], $data['currency'], $data['cartId']); $data['signature'] = md5(implode(':', $signature_data)); } return $data; } public function sendData($data) { return $this->response = new PurchaseResponse($this, $data); } public function getEndpoint() { return $this->getTestMode() ? $this->testEndpoint : $this->liveEndpoint; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0 |
proxy
|
phpinfo
|
Settings