123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\Authorizenet\Model;
- use Magento\Authorizenet\Model\TransactionService;
- use Magento\Framework\HTTP\ZendClientFactory;
- /**
- * Model for Authorize.net payment method
- *
- * @SuppressWarnings(PHPMD.TooManyFields)
- * @SuppressWarnings(PHPMD.ExcessiveClassComplexity)
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- * @deprecated 100.3.1 Authorize.net is removing all support for this payment method
- */
- abstract class Authorizenet extends \Magento\Payment\Model\Method\Cc
- {
- /**
- * AIM gateway url
- */
- const CGI_URL = 'https://secure.authorize.net/gateway/transact.dll';
- const REQUEST_METHOD_CC = 'CC';
- const REQUEST_TYPE_AUTH_CAPTURE = 'AUTH_CAPTURE';
- const REQUEST_TYPE_AUTH_ONLY = 'AUTH_ONLY';
- const REQUEST_TYPE_CAPTURE_ONLY = 'CAPTURE_ONLY';
- const REQUEST_TYPE_CREDIT = 'CREDIT';
- const REQUEST_TYPE_VOID = 'VOID';
- const REQUEST_TYPE_PRIOR_AUTH_CAPTURE = 'PRIOR_AUTH_CAPTURE';
- const RESPONSE_DELIM_CHAR = '(~)';
- const RESPONSE_CODE_APPROVED = 1;
- const RESPONSE_CODE_DECLINED = 2;
- const RESPONSE_CODE_ERROR = 3;
- const RESPONSE_CODE_HELD = 4;
- const RESPONSE_REASON_CODE_APPROVED = 1;
- const RESPONSE_REASON_CODE_PENDING_REVIEW_AUTHORIZED = 252;
- const RESPONSE_REASON_CODE_PENDING_REVIEW = 253;
- const RESPONSE_REASON_CODE_PENDING_REVIEW_DECLINED = 254;
- /**
- * Transaction fraud state key
- */
- const TRANSACTION_FRAUD_STATE_KEY = 'is_transaction_fraud';
- /**
- * Real transaction id key
- */
- const REAL_TRANSACTION_ID_KEY = 'real_transaction_id';
- /**
- * Gateway actions locked state key
- */
- const GATEWAY_ACTIONS_LOCKED_STATE_KEY = 'is_gateway_actions_locked';
- /**
- * @var \Magento\Authorizenet\Helper\Data
- */
- protected $dataHelper;
- /**
- * Request factory
- *
- * @var \Magento\Authorizenet\Model\RequestFactory
- */
- protected $requestFactory;
- /**
- * Response factory
- *
- * @var \Magento\Authorizenet\Model\ResponseFactory
- */
- protected $responseFactory;
- /**
- * @var \Magento\Authorizenet\Model\TransactionService;
- */
- protected $transactionService;
- /**
- * Fields that should be replaced in debug with '***'
- *
- * @var array
- */
- protected $_debugReplacePrivateDataKeys = ['merchantAuthentication', 'x_login'];
- /**
- * @var \Magento\Framework\HTTP\ZendClientFactory
- */
- protected $httpClientFactory;
- /**
- * @param \Magento\Framework\Model\Context $context
- * @param \Magento\Framework\Registry $registry
- * @param \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory
- * @param \Magento\Framework\Api\AttributeValueFactory $customAttributeFactory
- * @param \Magento\Payment\Helper\Data $paymentData
- * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
- * @param \Magento\Payment\Model\Method\Logger $logger
- * @param \Magento\Framework\Module\ModuleListInterface $moduleList
- * @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate
- * @param \Magento\Authorizenet\Helper\Data $dataHelper
- * @param \Magento\Authorizenet\Model\Request\Factory $requestFactory
- * @param \Magento\Authorizenet\Model\Response\Factory $responseFactory
- * @param \Magento\Authorizenet\Model\TransactionService $transactionService
- * @param \Magento\Framework\HTTP\ZendClientFactory $httpClientFactory
- * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource
- * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection
- * @param array $data
- * @SuppressWarnings(PHPMD.ExcessiveParameterList)
- */
- public function __construct(
- \Magento\Framework\Model\Context $context,
- \Magento\Framework\Registry $registry,
- \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory,
- \Magento\Framework\Api\AttributeValueFactory $customAttributeFactory,
- \Magento\Payment\Helper\Data $paymentData,
- \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
- \Magento\Payment\Model\Method\Logger $logger,
- \Magento\Framework\Module\ModuleListInterface $moduleList,
- \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate,
- \Magento\Authorizenet\Helper\Data $dataHelper,
- \Magento\Authorizenet\Model\Request\Factory $requestFactory,
- \Magento\Authorizenet\Model\Response\Factory $responseFactory,
- TransactionService $transactionService,
- ZendClientFactory $httpClientFactory,
- \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
- \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
- array $data = []
- ) {
- $this->dataHelper = $dataHelper;
- $this->requestFactory = $requestFactory;
- $this->responseFactory = $responseFactory;
- $this->transactionService = $transactionService;
- $this->httpClientFactory = $httpClientFactory;
- parent::__construct(
- $context,
- $registry,
- $extensionFactory,
- $customAttributeFactory,
- $paymentData,
- $scopeConfig,
- $logger,
- $moduleList,
- $localeDate,
- $resource,
- $resourceCollection,
- $data
- );
- }
- /**
- * Check method for processing with base currency
- *
- * @param string $currencyCode
- * @return bool
- */
- public function canUseForCurrency($currencyCode)
- {
- if (!in_array($currencyCode, $this->getAcceptedCurrencyCodes())) {
- return false;
- }
- return true;
- }
- /**
- * Return array of currency codes supplied by Payment Gateway
- *
- * @return array
- */
- public function getAcceptedCurrencyCodes()
- {
- if (!$this->hasData('_accepted_currency')) {
- $acceptedCurrencyCodes = $this->dataHelper->getAllowedCurrencyCodes();
- $acceptedCurrencyCodes[] = $this->getConfigData('currency');
- $this->setData('_accepted_currency', $acceptedCurrencyCodes);
- }
- return $this->_getData('_accepted_currency');
- }
- /**
- * Cancel the payment through gateway
- *
- * @param \Magento\Payment\Model\InfoInterface $payment
- * @return $this
- */
- public function cancel(\Magento\Payment\Model\InfoInterface $payment)
- {
- return $this->void($payment);
- }
- /**
- * Fetch fraud details
- *
- * @param string $transactionId
- * @return \Magento\Framework\DataObject
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- public function fetchTransactionFraudDetails($transactionId)
- {
- $responseXmlDocument = $this->transactionService->getTransactionDetails($this, $transactionId);
- $response = new \Magento\Framework\DataObject();
- if (empty($responseXmlDocument->transaction->FDSFilters->FDSFilter)) {
- return $response;
- }
- $response->setFdsFilterAction(
- $this->dataHelper->getFdsFilterActionLabel((string)$responseXmlDocument->transaction->FDSFilterAction)
- );
- $response->setAvsResponse((string)$responseXmlDocument->transaction->AVSResponse);
- $response->setCardCodeResponse((string)$responseXmlDocument->transaction->cardCodeResponse);
- $response->setCavvResponse((string)$responseXmlDocument->transaction->CAVVResponse);
- $response->setFraudFilters($this->getFraudFilters($responseXmlDocument->transaction->FDSFilters));
- return $response;
- }
- /**
- * Get fraud filters
- *
- * @param \Magento\Framework\Simplexml\Element $fraudFilters
- * @return array
- */
- protected function getFraudFilters($fraudFilters)
- {
- $result = [];
- foreach ($fraudFilters->FDSFilter as $filer) {
- $result[] = [
- 'name' => (string)$filer->name,
- 'action' => $this->dataHelper->getFdsFilterActionLabel((string)$filer->action)
- ];
- }
- return $result;
- }
- /**
- * Return authorize payment request
- *
- * @return \Magento\Authorizenet\Model\Request
- */
- protected function getRequest()
- {
- $request = $this->requestFactory->create()
- ->setXVersion(3.1)
- ->setXDelimData('True')
- ->setXRelayResponse('False')
- ->setXTestRequest($this->getConfigData('test') ? 'TRUE' : 'FALSE')
- ->setXLogin($this->getConfigData('login'))
- ->setXTranKey($this->getConfigData('trans_key'));
- return $request;
- }
- /**
- * Prepare request to gateway
- *
- * @param \Magento\Framework\DataObject|\Magento\Payment\Model\InfoInterface $payment
- * @return \Magento\Authorizenet\Model\Request
- * @link http://www.authorize.net/support/AIM_guide.pdf
- * @SuppressWarnings(PHPMD.CyclomaticComplexity)
- * @SuppressWarnings(PHPMD.NPathComplexity)
- * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
- */
- protected function buildRequest(\Magento\Framework\DataObject $payment)
- {
- /** @var \Magento\Sales\Model\Order $order */
- $order = $payment->getOrder();
- $this->setStore($order->getStoreId());
- $request = $this->getRequest()
- ->setXType($payment->getAnetTransType())
- ->setXMethod(self::REQUEST_METHOD_CC);
- if ($order && $order->getIncrementId()) {
- $request->setXInvoiceNum($order->getIncrementId());
- }
- if ($payment->getAmount()) {
- $request->setXAmount($payment->getAmount(), 2);
- $request->setXCurrencyCode($order->getBaseCurrencyCode());
- }
- switch ($payment->getAnetTransType()) {
- case self::REQUEST_TYPE_AUTH_CAPTURE:
- $request->setXAllowPartialAuth($this->getConfigData('allow_partial_authorization') ? 'True' : 'False');
- break;
- case self::REQUEST_TYPE_AUTH_ONLY:
- $request->setXAllowPartialAuth($this->getConfigData('allow_partial_authorization') ? 'True' : 'False');
- break;
- case self::REQUEST_TYPE_CREDIT:
- /**
- * Send last 4 digits of credit card number to authorize.net
- * otherwise it will give an error
- */
- $request->setXCardNum($payment->getCcLast4());
- $request->setXTransId($payment->getXTransId());
- break;
- case self::REQUEST_TYPE_VOID:
- $request->setXTransId($payment->getXTransId());
- break;
- case self::REQUEST_TYPE_PRIOR_AUTH_CAPTURE:
- $request->setXTransId($payment->getXTransId());
- break;
- case self::REQUEST_TYPE_CAPTURE_ONLY:
- $request->setXAuthCode($payment->getCcAuthCode());
- break;
- }
- if (!empty($order)) {
- $billing = $order->getBillingAddress();
- if (!empty($billing)) {
- $request->setXFirstName($billing->getFirstname())
- ->setXLastName($billing->getLastname())
- ->setXCompany($billing->getCompany())
- ->setXAddress($billing->getStreetLine(1))
- ->setXCity($billing->getCity())
- ->setXState($billing->getRegion())
- ->setXZip($billing->getPostcode())
- ->setXCountry($billing->getCountryId())
- ->setXPhone($billing->getTelephone())
- ->setXFax($billing->getFax())
- ->setXCustId($order->getCustomerId())
- ->setXCustomerIp($order->getRemoteIp())
- ->setXCustomerTaxId($billing->getTaxId())
- ->setXEmail($order->getCustomerEmail())
- ->setXEmailCustomer($this->getConfigData('email_customer'))
- ->setXMerchantEmail($this->getConfigData('merchant_email'));
- }
- $shipping = $order->getShippingAddress();
- if (!empty($shipping)) {
- $request->setXShipToFirstName($shipping->getFirstname())
- ->setXShipToLastName($shipping->getLastname())
- ->setXShipToCompany($shipping->getCompany())
- ->setXShipToAddress($shipping->getStreetLine(1))
- ->setXShipToCity($shipping->getCity())
- ->setXShipToState($shipping->getRegion())
- ->setXShipToZip($shipping->getPostcode())
- ->setXShipToCountry($shipping->getCountryId());
- }
- $request->setXPoNum($payment->getPoNumber())
- ->setXTax($order->getBaseTaxAmount())
- ->setXFreight($order->getBaseShippingAmount());
- }
- if ($payment->getCcNumber()) {
- $request->setXCardNum($payment->getCcNumber())
- ->setXExpDate(sprintf('%02d-%04d', $payment->getCcExpMonth(), $payment->getCcExpYear()))
- ->setXCardCode($payment->getCcCid());
- }
- return $request;
- }
- /**
- * Post request to gateway and return response
- *
- * @param \Magento\Authorizenet\Model\Request $request
- * @return \Magento\Authorizenet\Model\Response
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- protected function postRequest(\Magento\Authorizenet\Model\Request $request)
- {
- $result = $this->responseFactory->create();
- /** @var \Magento\Framework\HTTP\ZendClient $client */
- $client = $this->httpClientFactory->create();
- $url = $this->getConfigData('cgi_url') ?: self::CGI_URL;
- $debugData = ['url' => $url, 'request' => $request->getData()];
- $client->setUri($url);
- $client->setConfig(['maxredirects' => 0, 'timeout' => 30]);
- foreach ($request->getData() as $key => $value) {
- $request->setData($key, str_replace(self::RESPONSE_DELIM_CHAR, '', $value));
- }
- $request->setXDelimChar(self::RESPONSE_DELIM_CHAR);
- $client->setParameterPost($request->getData());
- $client->setMethod(\Zend_Http_Client::POST);
- try {
- $response = $client->request();
- $responseBody = $response->getBody();
- $debugData['response'] = $responseBody;
- } catch (\Exception $e) {
- $result->setXResponseCode(-1)
- ->setXResponseReasonCode($e->getCode())
- ->setXResponseReasonText($e->getMessage());
- throw new \Magento\Framework\Exception\LocalizedException(
- $this->dataHelper->wrapGatewayError($e->getMessage())
- );
- } finally {
- $this->_debug($debugData);
- }
- $r = explode(self::RESPONSE_DELIM_CHAR, $responseBody);
- if ($r) {
- $result->setXResponseCode((int)str_replace('"', '', $r[0]))
- ->setXResponseReasonCode((int)str_replace('"', '', $r[2]))
- ->setXResponseReasonText($r[3])
- ->setXAvsCode($r[5])
- ->setXTransId($r[6])
- ->setXInvoiceNum($r[7])
- ->setXAmount($r[9])
- ->setXMethod($r[10])
- ->setXType($r[11])
- ->setData('x_MD5_Hash', $r[37])
- ->setXAccountNumber($r[50]);
- } else {
- throw new \Magento\Framework\Exception\LocalizedException(
- __('Something went wrong in the payment gateway.')
- );
- }
- return $result;
- }
- /**
- * If gateway actions are locked return true
- *
- * @param \Magento\Payment\Model\InfoInterface $payment
- * @return bool
- */
- protected function isGatewayActionsLocked($payment)
- {
- return $payment->getAdditionalInformation(self::GATEWAY_ACTIONS_LOCKED_STATE_KEY);
- }
- }
|