Файловый менеджер - Редактировать - /var/www/html/libraries/omnipay3/vendor/omnipay/authorizenet/src/Message/SIMAbstractRequest.php
Ðазад
<?php namespace Omnipay\AuthorizeNet\Message; /** * Authorize.Net SIM Abstract Request */ use Omnipay\Common\Message\AbstractRequest; abstract class SIMAbstractRequest extends AbstractRequest { /** * Custom field name to send the transaction ID to the notify handler. */ const TRANSACTION_ID_PARAM = 'omnipay_transaction_id'; public function getApiLoginId() { return $this->getParameter('apiLoginId'); } public function setApiLoginId($value) { return $this->setParameter('apiLoginId', $value); } public function getTransactionKey() { return $this->getParameter('transactionKey'); } public function setTransactionKey($value) { return $this->setParameter('transactionKey', $value); } public function getSignatureKey() { return $this->getParameter('signatureKey'); } public function setSignatureKey($value) { return $this->setParameter('signatureKey', $value); } public function getDeveloperMode() { return $this->getParameter('developerMode'); } public function setDeveloperMode($value) { return $this->setParameter('developerMode', $value); } public function getCustomerId() { return $this->getParameter('customerId'); } public function setCustomerId($value) { return $this->setParameter('customerId', $value); } public function getHashSecret() { return $this->getParameter('hashSecret'); } public function setHashSecret($value) { return $this->setParameter('hashSecret', $value); } public function getLiveEndpoint() { return $this->getParameter('liveEndpoint'); } public function setLiveEndpoint($value) { return $this->setParameter('liveEndpoint', $value); } public function setDeveloperEndpoint($value) { return $this->setParameter('developerEndpoint', $value); } public function getDeveloperEndpoint() { return $this->getParameter('developerEndpoint'); } public function setInvoiceNumber($value) { return $this->setParameter('invoiceNumber', $value); } public function getInvoiceNumber() { return $this->getParameter('invoiceNumber'); } /** * Base data used only for the AIM API. */ protected function getBaseData() { $data = array(); $data['x_login'] = $this->getApiLoginId(); $data['x_tran_key'] = $this->getTransactionKey(); $data['x_type'] = $this->action; $data['x_version'] = '3.1'; $data['x_delim_data'] = 'TRUE'; $data['x_delim_char'] = ','; $data['x_encap_char'] = '|'; $data['x_relay_response'] = 'FALSE'; return $data; } protected function getBillingData() { $data = array(); $data['x_amount'] = $this->getAmount(); // The invoice number field is properly supported. $data['x_invoice_num'] = $this->getInvoiceNumber(); // A custom field can be used to pass over the merchant site transaction ID. $data[static::TRANSACTION_ID_PARAM] = $this->getTransactionId(); $data['x_description'] = $this->getDescription(); if ($card = $this->getCard()) { // customer billing details $data['x_first_name'] = $card->getBillingFirstName(); $data['x_last_name'] = $card->getBillingLastName(); $data['x_company'] = $card->getBillingCompany(); $data['x_address'] = trim( $card->getBillingAddress1() . " \n" . $card->getBillingAddress2() ); $data['x_city'] = $card->getBillingCity(); $data['x_state'] = $card->getBillingState(); $data['x_zip'] = $card->getBillingPostcode(); $data['x_country'] = $card->getBillingCountry(); $data['x_phone'] = $card->getBillingPhone(); $data['x_email'] = $card->getEmail(); // customer shipping details $data['x_ship_to_first_name'] = $card->getShippingFirstName(); $data['x_ship_to_last_name'] = $card->getShippingLastName(); $data['x_ship_to_company'] = $card->getShippingCompany(); $data['x_ship_to_address'] = trim( $card->getShippingAddress1() . " \n" . $card->getShippingAddress2() ); $data['x_ship_to_city'] = $card->getShippingCity(); $data['x_ship_to_state'] = $card->getShippingState(); $data['x_ship_to_zip'] = $card->getShippingPostcode(); $data['x_ship_to_country'] = $card->getShippingCountry(); } return $data; } public function sendData($data) { $httpResponse = $this->httpClient->request('POST', $this->getEndpoint(), [], http_build_query($data)); return $this->response = new AIMResponse($this, $httpResponse->getBody()->getContents()); } public function getEndpoint() { if ($this->getDeveloperMode()) { return $this->getParameter('developerEndpoint'); } else { return $this->getParameter('liveEndpoint'); } } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка