Файловый менеджер - Редактировать - /var/www/html/libraries/omnipay/vendor/omnipay/multisafepay/src/Message/PurchaseRequest.php
Ðазад
<?php namespace Omnipay\MultiSafepay\Message; use Omnipay\Common\CreditCard; use SimpleXMLElement; /** * @method \Omnipay\MultiSafepay\Message\PurchaseResponse send() */ class PurchaseRequest extends AbstractRequest { public function getLanguage() { return $this->getParameter('language'); } public function setLanguage($value) { return $this->setParameter('language', $value); } public function getGateway() { return $this->getParameter('gateway'); } public function setGateway($value) { return $this->setParameter('gateway', $value); } public function getIssuer() { return $this->getParameter('issuer'); } public function setIssuer($value) { return $this->setParameter('issuer', $value); } public function getGoogleAnalyticsCode() { return $this->getParameter('googleAnalyticsCode'); } public function setGoogleAnalyticsCode($value) { return $this->setParameter('googleAnalyticsCode', $value); } public function getExtraData1() { return $this->getParameter('extraData1'); } public function setExtraData1($value) { return $this->setParameter('extraData1', $value); } public function getExtraData2() { return $this->getParameter('extraData2'); } public function setExtraData2($value) { return $this->setParameter('extraData2', $value); } public function getExtraData3() { return $this->getParameter('extraData3'); } public function setExtraData3($value) { return $this->setParameter('extraData3', $value); } public function getItems() { return $this->getParameter('items'); } public function setItems($value) { return $this->setParameter('items', $value); } /** * {@inheritdoc} */ public function getData() { $this->validate('transactionId', 'amount', 'currency', 'description', 'clientIp', 'card'); if ('IDEAL' === $this->getGateway() && $this->getIssuer()) { $data = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?><directtransaction/>'); } else { $data = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?><redirecttransaction/>'); } $data->addAttribute('ua', $this->userAgent); $merchant = $data->addChild('merchant'); $merchant->addChild('account', $this->getAccountId()); $merchant->addChild('site_id', $this->getSiteId()); $merchant->addChild('site_secure_code', $this->getSiteCode()); $merchant->addChild('notification_url', htmlspecialchars($this->getNotifyUrl())); $merchant->addChild('cancel_url', htmlspecialchars($this->getCancelUrl())); $merchant->addChild('redirect_url', htmlspecialchars($this->getReturnUrl())); /** @var CreditCard $card */ $card = $this->getCard(); $customer = $data->addChild('customer'); $customer->addChild('ipaddress', $this->getClientIp()); $customer->addChild('locale', $this->getLanguage()); $customer->addChild('email', $card->getEmail()); $customer->addChild('firstname', $card->getFirstName()); $customer->addChild('lastname', $card->getLastName()); $customer->addChild('address1', $card->getAddress1()); $customer->addChild('address2', $card->getAddress2()); $customer->addChild('zipcode', $card->getPostcode()); $customer->addChild('city', $card->getCity()); $customer->addChild('country', $card->getCountry()); $customer->addChild('phone', $card->getPhone()); $data->addChild('google_analytics', $this->getGoogleAnalyticsCode()); $transaction = $data->addChild('transaction'); $transaction->addChild('id', $this->getTransactionId()); $transaction->addChild('currency', $this->getCurrency()); $transaction->addChild('amount', $this->getAmountInteger()); $transaction->addChild('description', $this->getDescription()); $transaction->addChild('var1', $this->getExtraData1()); $transaction->addChild('var2', $this->getExtraData2()); $transaction->addChild('var3', $this->getExtraData3()); $transaction->addChild('gateway', $this->getGateway()); if ($items = $this->getItems()) { $itemsHtml = '<ul>'; foreach ($items as $item) { $itemsHtml .= "<li>{$item['quantity']} x {$item['name']}</li>"; } $itemsHtml .= '</ul>'; $transaction->addChild('items', $itemsHtml); } if ('IDEAL' === $this->getGateway() && $this->getIssuer()) { $gatewayInfo = $data->addChild('gatewayinfo'); $gatewayInfo->addChild('issuerid', $this->getIssuer()); } $data->addChild('signature', $this->generateSignature()); return $data; } /** * {@inheritdoc} */ public function sendData($data) { $httpResponse = $this->httpClient->post( $this->getEndpoint(), $this->getHeaders(), $data->asXML() )->send(); return $this->response = new PurchaseResponse($this, $httpResponse->xml()); } /** * @return string */ protected function generateSignature() { return md5( $this->getAmountInteger(). $this->getCurrency(). $this->getAccountId(). $this->getSiteId(). $this->getTransactionId() ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка