We will be off on April 7th (Monday) for public holiday in our country

Commit 3e536742 authored by Attila Kiss's avatar Attila Kiss Committed by GitHub

Merge pull request #745 from Adyen/develop

Release 6.1.2
parents 6bdeaaa5 94f97aa4
...@@ -8,9 +8,9 @@ php: ...@@ -8,9 +8,9 @@ php:
- 7.3 - 7.3
install: install:
- echo "{\"http-basic\":{\"repo.magento.com\":{\"username\":\"${MAGENTO_USERNAME}\",\"password\":\"${MAGENTO_PASSWORD}\"}}}" > auth.json - echo "{\"http-basic\":{\"repo.magento.com\":{\"username\":\"${MAGENTO_USERNAME}\",\"password\":\"${MAGENTO_PASSWORD}\"}}}" > auth.json
- composer install --prefer-dist - composer install --prefer-dist
script: script:
- php vendor/bin/phpcs - php vendor/bin/phpcs
- vendor/bin/phpunit -c Test/phpunit.xml - vendor/bin/phpunit -c Test/phpunit.xml
\ No newline at end of file \ No newline at end of file
...@@ -85,11 +85,10 @@ class APIKeyMessage implements \Magento\Framework\Notification\MessageInterface ...@@ -85,11 +85,10 @@ class APIKeyMessage implements \Magento\Framework\Notification\MessageInterface
*/ */
public function isDisplayed() public function isDisplayed()
{ {
// Only execute the query the first time you access the Admin page // Only execute the query the first time you access the Admin page
if ($this->authSession->isFirstPageAfterLogin() && if ($this->authSession->isFirstPageAfterLogin()
!empty($this->adyenHelper->getWsUsername()) && && !empty($this->adyenHelper->getWsUsername())
empty($this->adyenHelper->getAPIKey()) && empty($this->adyenHelper->getAPIKey())
) { ) {
try { try {
$title = 'Adyen extension requires the API KEY!'; $title = 'Adyen extension requires the API KEY!';
...@@ -109,7 +108,6 @@ class APIKeyMessage implements \Magento\Framework\Notification\MessageInterface ...@@ -109,7 +108,6 @@ class APIKeyMessage implements \Magento\Framework\Notification\MessageInterface
*/ */
$this->inboxFactory->create()->parse($messageData); $this->inboxFactory->create()->parse($messageData);
return true; return true;
} catch (\Exception $e) { } catch (\Exception $e) {
return false; return false;
} }
......
...@@ -47,9 +47,6 @@ class CronMessage implements \Magento\Framework\Notification\MessageInterface ...@@ -47,9 +47,6 @@ class CronMessage implements \Magento\Framework\Notification\MessageInterface
$this->backendHelper = $backendHelper; $this->backendHelper = $backendHelper;
} }
/**
* Message identity
*/
const MESSAGE_IDENTITY = 'Adyen Cronjob system message'; const MESSAGE_IDENTITY = 'Adyen Cronjob system message';
/** /**
...@@ -93,7 +90,11 @@ class CronMessage implements \Magento\Framework\Notification\MessageInterface ...@@ -93,7 +90,11 @@ class CronMessage implements \Magento\Framework\Notification\MessageInterface
public function getText() public function getText()
{ {
$urlNotificationsOverview = $this->backendHelper->getUrl("adyen/notifications/overview"); $urlNotificationsOverview = $this->backendHelper->getUrl("adyen/notifications/overview");
$message = __('You have <a href="%1">%2 unprocessed notification(s)</a>. Please check your Cron', $urlNotificationsOverview, $this->_cronCheck); $message = __(
'You have <a href="%1">%2 unprocessed notification(s)</a>. Please check your Cron',
$urlNotificationsOverview,
$this->_cronCheck
);
$urlMagento = "http://devdocs.magento.com/guides/v2.0/config-guide/cli/config-cli-subcommands-cron.html"; $urlMagento = "http://devdocs.magento.com/guides/v2.0/config-guide/cli/config-cli-subcommands-cron.html";
$urlAdyen = "https://docs.adyen.com/developers/plugins/magento-2/set-up-the-plugin-in-magento#step2runcron"; $urlAdyen = "https://docs.adyen.com/developers/plugins/magento-2/set-up-the-plugin-in-magento#step2runcron";
$message .= __( $message .= __(
......
...@@ -40,9 +40,6 @@ class VersionMessage implements \Magento\Framework\Notification\MessageInterface ...@@ -40,9 +40,6 @@ class VersionMessage implements \Magento\Framework\Notification\MessageInterface
$this->_inboxFactory = $inboxFactory; $this->_inboxFactory = $inboxFactory;
} }
/**
* Message identity
*/
const MESSAGE_IDENTITY = 'Adyen Version Control message'; const MESSAGE_IDENTITY = 'Adyen Version Control message';
/** /**
...@@ -105,8 +102,13 @@ class VersionMessage implements \Magento\Framework\Notification\MessageInterface ...@@ -105,8 +102,13 @@ class VersionMessage implements \Magento\Framework\Notification\MessageInterface
{ {
$githubContent = $this->getSessionData("AdyenGithubVersion"); $githubContent = $this->getSessionData("AdyenGithubVersion");
$message = __("A new Adyen extension version is now available: "); $message = __("A new Adyen extension version is now available: ");
$message .= __("<a href= \"" . $githubContent['html_url'] . "\" target='_blank'> " . $githubContent['tag_name'] . "!</a>"); $message .= __(
$message .= __(" You are running the " . $this->_adyenHelper->getModuleVersion() . " version. We advise to update your extension."); "<a href= \"" . $githubContent['html_url'] . "\" target='_blank'> " . $githubContent['tag_name'] . "!</a>"
);
$message .= __(
" You are running the " . $this->_adyenHelper->getModuleVersion(
) . " version. We advise to update your extension."
);
return __($message); return __($message);
} }
......
...@@ -28,6 +28,7 @@ interface AdyenInitiateTerminalApiInterface ...@@ -28,6 +28,7 @@ interface AdyenInitiateTerminalApiInterface
{ {
/** /**
* Trigger sync call on terminal * Trigger sync call on terminal
*
* @param string $payload * @param string $payload
* @return mixed * @return mixed
*/ */
......
...@@ -24,11 +24,10 @@ ...@@ -24,11 +24,10 @@
namespace Adyen\Payment\Api; namespace Adyen\Payment\Api;
interface AdyenOriginKeyInterface interface AdyenOriginKeyInterface
{ {
/** /**
* @return string * @return string
*/ */
public function getOriginKey(); public function getOriginKey();
} }
\ No newline at end of file
...@@ -25,18 +25,17 @@ namespace Adyen\Payment\Api; ...@@ -25,18 +25,17 @@ namespace Adyen\Payment\Api;
/** /**
* Interface GuestAdyenPaymentMethodManagementInterface * Interface GuestAdyenPaymentMethodManagementInterface
*
* @api * @api
* @package Adyen\Payment\Api
*/ */
interface AdyenPaymentMethodManagementInterface interface AdyenPaymentMethodManagementInterface
{ {
/** /**
* Get payment information * Get payment information
* *
* @param string $cartId * @param string $cartId
* @param null|\Magento\Quote\Api\Data\AddressInterface * @param null|\Magento\Quote\Api\Data\AddressInterface
* @return \Magento\Checkout\Api\Data\PaymentDetailsInterface * @return \Magento\Checkout\Api\Data\PaymentDetailsInterface
*/ */
public function getPaymentMethods($cartId, \Magento\Quote\Api\Data\AddressInterface $shippingAddress = null); public function getPaymentMethods($cartId, \Magento\Quote\Api\Data\AddressInterface $shippingAddress = null);
......
...@@ -87,7 +87,7 @@ interface InvoiceInterface ...@@ -87,7 +87,7 @@ interface InvoiceInterface
public function getOriginalReference(); public function getOriginalReference();
/** /**
* @param $originalReference * @param $originalReference
* @return mixed * @return mixed
*/ */
public function setOriginalReference($originalReference); public function setOriginalReference($originalReference);
......
...@@ -102,7 +102,6 @@ interface NotificationInterface ...@@ -102,7 +102,6 @@ interface NotificationInterface
*/ */
const UPDATED_AT = 'updated_at'; const UPDATED_AT = 'updated_at';
/** /**
* Gets the ID for the notification. * Gets the ID for the notification.
* *
...@@ -133,7 +132,6 @@ interface NotificationInterface ...@@ -133,7 +132,6 @@ interface NotificationInterface
*/ */
public function setPspreference($pspreference); public function setPspreference($pspreference);
/** /**
* Sets OriginalReference. * Sets OriginalReference.
* *
......
...@@ -126,7 +126,6 @@ interface OrderPaymentInterface ...@@ -126,7 +126,6 @@ interface OrderPaymentInterface
*/ */
public function setPaymentId($paymentId); public function setPaymentId($paymentId);
/** /**
* Gets the Paymentmethod for the payment. * Gets the Paymentmethod for the payment.
* *
......
...@@ -25,18 +25,16 @@ namespace Adyen\Payment\Api; ...@@ -25,18 +25,16 @@ namespace Adyen\Payment\Api;
/** /**
* Interface GuestAdyenPaymentMethodManagementInterface * Interface GuestAdyenPaymentMethodManagementInterface
*
* @api * @api
* @package Adyen\Payment\Api
*/ */
interface GuestAdyenPaymentMethodManagementInterface interface GuestAdyenPaymentMethodManagementInterface
{ {
/** /**
* Get payment information * Get payment information
* *
* @param string $cartId * @param string $cartId
* @param null|\Magento\Quote\Api\Data\AddressInterface * @param null|\Magento\Quote\Api\Data\AddressInterface
* @return \Magento\Checkout\Api\Data\PaymentDetailsInterface * @return \Magento\Checkout\Api\Data\PaymentDetailsInterface
*/ */
public function getPaymentMethods($cartId, \Magento\Quote\Api\Data\AddressInterface $shippingAddress = null); public function getPaymentMethods($cartId, \Magento\Quote\Api\Data\AddressInterface $shippingAddress = null);
......
...@@ -30,30 +30,31 @@ class Installment extends \Magento\Framework\View\Element\Html\Select ...@@ -30,30 +30,31 @@ class Installment extends \Magento\Framework\View\Element\Html\Select
* *
* @var array * @var array
*/ */
protected $_options = [ '1' => '1x', protected $_options = [
'2' => '2x', '1' => '1x',
'3' => '3x', '2' => '2x',
'4' => '4x', '3' => '3x',
'5' => '5x', '4' => '4x',
'6' => '6x', '5' => '5x',
'7' => '7x', '6' => '6x',
'8' => '8x', '7' => '7x',
'9' => '9x', '8' => '8x',
'10' => '10x', '9' => '9x',
'11' => '11x', '10' => '10x',
'12' => '12x', '11' => '11x',
'13' => '13x', '12' => '12x',
'14' => '14x', '13' => '13x',
'15' => '15x', '14' => '14x',
'16' => '16x', '15' => '15x',
'17' => '17x', '16' => '16x',
'18' => '18x', '17' => '17x',
'19' => '19x', '18' => '18x',
'20' => '20x', '19' => '19x',
'21' => '21x', '20' => '20x',
'22' => '22x', '21' => '21x',
'23' => '23x', '22' => '22x',
'24' => '24x' '23' => '23x',
'24' => '24x'
]; ];
/** /**
......
...@@ -31,7 +31,6 @@ class Installments extends \Magento\Config\Block\System\Config\Form\Field\FieldA ...@@ -31,7 +31,6 @@ class Installments extends \Magento\Config\Block\System\Config\Form\Field\FieldA
*/ */
protected $_installmentRenderer = null; protected $_installmentRenderer = null;
/** /**
* @var \Adyen\Payment\Block\Adminhtml\System\Config\Field\Cctypes * @var \Adyen\Payment\Block\Adminhtml\System\Config\Field\Cctypes
*/ */
...@@ -47,7 +46,7 @@ class Installments extends \Magento\Config\Block\System\Config\Form\Field\FieldA ...@@ -47,7 +46,7 @@ class Installments extends \Magento\Config\Block\System\Config\Form\Field\FieldA
{ {
if (!$this->_installmentRenderer) { if (!$this->_installmentRenderer) {
$this->_installmentRenderer = $this->getLayout()->createBlock( $this->_installmentRenderer = $this->getLayout()->createBlock(
'\Adyen\Payment\Block\Adminhtml\System\Config\Field\Installment', \Adyen\Payment\Block\Adminhtml\System\Config\Field\Installment::class,
'', '',
['data' => ['is_render_to_js_template' => true]] ['data' => ['is_render_to_js_template' => true]]
); );
...@@ -65,7 +64,7 @@ class Installments extends \Magento\Config\Block\System\Config\Form\Field\FieldA ...@@ -65,7 +64,7 @@ class Installments extends \Magento\Config\Block\System\Config\Form\Field\FieldA
{ {
if (!$this->_ccTypesRenderer) { if (!$this->_ccTypesRenderer) {
$this->_ccTypesRenderer = $this->getLayout()->createBlock( $this->_ccTypesRenderer = $this->getLayout()->createBlock(
'\Adyen\Payment\Block\Adminhtml\System\Config\Field\Cctypes', \Adyen\Payment\Block\Adminhtml\System\Config\Field\Cctypes::class,
'', '',
['data' => ['is_render_to_js_template' => true]] ['data' => ['is_render_to_js_template' => true]]
); );
...@@ -75,6 +74,7 @@ class Installments extends \Magento\Config\Block\System\Config\Form\Field\FieldA ...@@ -75,6 +74,7 @@ class Installments extends \Magento\Config\Block\System\Config\Form\Field\FieldA
/** /**
* Prepare to render * Prepare to render
*
* @return void * @return void
*/ */
protected function _prepareToRender() protected function _prepareToRender()
...@@ -82,22 +82,22 @@ class Installments extends \Magento\Config\Block\System\Config\Form\Field\FieldA ...@@ -82,22 +82,22 @@ class Installments extends \Magento\Config\Block\System\Config\Form\Field\FieldA
$this->addColumn( $this->addColumn(
'amount', 'amount',
[ [
'label' => __('Amount Range'), 'label' => __('Amount Range'),
'renderer' => false, 'renderer' => false,
] ]
); );
$this->addColumn( $this->addColumn(
'installments', 'installments',
[ [
'label' => __('Number Of Installments'), 'label' => __('Number Of Installments'),
'renderer' => $this->getNumberOfInstallmentsRenderer(), 'renderer' => $this->getNumberOfInstallmentsRenderer(),
] ]
); );
$this->addColumn( $this->addColumn(
'cc_types', 'cc_types',
[ [
'label' => __('Allowed Credit Card Types'), 'label' => __('Allowed Credit Card Types'),
'renderer' => $this->getCcTypesRenderer(), 'renderer' => $this->getCcTypesRenderer(),
] ]
); );
$this->_addAfter = false; $this->_addAfter = false;
......
...@@ -41,7 +41,7 @@ class InstallmentsPosCloud extends \Magento\Config\Block\System\Config\Form\Fiel ...@@ -41,7 +41,7 @@ class InstallmentsPosCloud extends \Magento\Config\Block\System\Config\Form\Fiel
{ {
if (!$this->_installmentRenderer) { if (!$this->_installmentRenderer) {
$this->_installmentRenderer = $this->getLayout()->createBlock( $this->_installmentRenderer = $this->getLayout()->createBlock(
'\Adyen\Payment\Block\Adminhtml\System\Config\Field\Installment', \Adyen\Payment\Block\Adminhtml\System\Config\Field\Installment::class,
'', '',
['data' => ['is_render_to_js_template' => true]] ['data' => ['is_render_to_js_template' => true]]
); );
...@@ -51,6 +51,7 @@ class InstallmentsPosCloud extends \Magento\Config\Block\System\Config\Form\Fiel ...@@ -51,6 +51,7 @@ class InstallmentsPosCloud extends \Magento\Config\Block\System\Config\Form\Fiel
/** /**
* Prepare to render * Prepare to render
*
* @return void * @return void
*/ */
protected function _prepareToRender() protected function _prepareToRender()
...@@ -58,15 +59,15 @@ class InstallmentsPosCloud extends \Magento\Config\Block\System\Config\Form\Fiel ...@@ -58,15 +59,15 @@ class InstallmentsPosCloud extends \Magento\Config\Block\System\Config\Form\Fiel
$this->addColumn( $this->addColumn(
'amount', 'amount',
[ [
'label' => __('Amount Range'), 'label' => __('Amount Range'),
'renderer' => false, 'renderer' => false,
] ]
); );
$this->addColumn( $this->addColumn(
'installments', 'installments',
[ [
'label' => __('Number Of Installments'), 'label' => __('Number Of Installments'),
'renderer' => $this->getNumberOfInstallmentsRenderer(), 'renderer' => $this->getNumberOfInstallmentsRenderer(),
] ]
); );
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
/** /**
* Field renderer for PayPal merchant country selector * Field renderer for PayPal merchant country selector
*/ */
namespace Adyen\Payment\Block\Adminhtml\System\Config\Field; namespace Adyen\Payment\Block\Adminhtml\System\Config\Field;
class Version extends \Magento\Config\Block\System\Config\Form\Field class Version extends \Magento\Config\Block\System\Config\Form\Field
...@@ -33,8 +34,10 @@ class Version extends \Magento\Config\Block\System\Config\Form\Field ...@@ -33,8 +34,10 @@ class Version extends \Magento\Config\Block\System\Config\Form\Field
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
protected $_adyenHelper; protected $_adyenHelper;
/** /**
* Version constructor. * Version constructor.
*
* @param \Magento\Framework\Module\ModuleListInterface $moduleList * @param \Magento\Framework\Module\ModuleListInterface $moduleList
* @param \Magento\Backend\Block\Template\Context $context * @param \Magento\Backend\Block\Template\Context $context
* @param array $data * @param array $data
......
...@@ -90,6 +90,7 @@ class Success extends \Magento\Framework\View\Element\Template ...@@ -90,6 +90,7 @@ class Success extends \Magento\Framework\View\Element\Template
/** /**
* Detect if Boleto is used as payment method * Detect if Boleto is used as payment method
*
* @return bool * @return bool
*/ */
public function isBoletoPayment() public function isBoletoPayment()
...@@ -150,8 +151,6 @@ class Success extends \Magento\Framework\View\Element\Template ...@@ -150,8 +151,6 @@ class Success extends \Magento\Framework\View\Element\Template
return $result; return $result;
} }
/** /**
* @return \Magento\Sales\Model\Order * @return \Magento\Sales\Model\Order
*/ */
......
...@@ -97,4 +97,4 @@ class CardRenderer extends AbstractCardRenderer ...@@ -97,4 +97,4 @@ class CardRenderer extends AbstractCardRenderer
{ {
return $this->adyenHelper->getVariantIcon($this->getTokenDetails()['type'])['width']; return $this->adyenHelper->getVariantIcon($this->getTokenDetails()['type'])['width'];
} }
} }
\ No newline at end of file
...@@ -67,30 +67,30 @@ class Cc extends \Magento\Payment\Block\Form\Cc ...@@ -67,30 +67,30 @@ class Cc extends \Magento\Payment\Block\Form\Cc
$this->checkoutSession = $checkoutSession; $this->checkoutSession = $checkoutSession;
} }
/** /**
* @return string * @return string
*/ */
public function getCheckoutCardComponentJs() public function getCheckoutCardComponentJs()
{ {
return $this->adyenHelper->getCheckoutCardComponentJs($this->checkoutSession->getQuote()->getStore()->getId()); return $this->adyenHelper->getCheckoutCardComponentJs($this->checkoutSession->getQuote()->getStore()->getId());
} }
/** /**
* @return string * @return string
* @throws \Adyen\AdyenException * @throws \Adyen\AdyenException
*/ */
public function getCheckoutOriginKeys() public function getCheckoutOriginKeys()
{ {
return $this->adyenHelper->getOriginKeyForBaseUrl(); return $this->adyenHelper->getOriginKeyForBaseUrl();
} }
/** /**
* @return string * @return string
*/ */
public function getCheckoutEnvironment() public function getCheckoutEnvironment()
{ {
return $this->adyenHelper->getCheckoutEnvironment($this->checkoutSession->getQuote()->getStore()->getId()); return $this->adyenHelper->getCheckoutEnvironment($this->checkoutSession->getQuote()->getStore()->getId());
} }
/** /**
* Retrieve has verification configuration * Retrieve has verification configuration
...@@ -106,43 +106,43 @@ class Cc extends \Magento\Payment\Block\Form\Cc ...@@ -106,43 +106,43 @@ class Cc extends \Magento\Payment\Block\Form\Cc
return true; return true;
} }
/** /**
* @return string * @return string
*/ */
public function getLocale() public function getLocale()
{ {
return $this->adyenHelper->getStoreLocale($this->checkoutSession->getQuote()->getStore()->getId()); return $this->adyenHelper->getStoreLocale($this->checkoutSession->getQuote()->getStore()->getId());
} }
/** /**
* Retrieve available credit card type codes by alt code * Retrieve available credit card type codes by alt code
* *
* @return array * @return array
*/ */
public function getCcAvailableTypesByAlt() public function getCcAvailableTypesByAlt()
{ {
$types = []; $types = [];
$ccTypes = $this->adyenHelper->getAdyenCcTypes(); $ccTypes = $this->adyenHelper->getAdyenCcTypes();
$availableTypes = $this->adyenHelper->getAdyenCcConfigData('cctypes'); $availableTypes = $this->adyenHelper->getAdyenCcConfigData('cctypes');
if ($availableTypes) { if ($availableTypes) {
$availableTypes = explode(',', $availableTypes); $availableTypes = explode(',', $availableTypes);
foreach (array_keys($ccTypes) as $code) { foreach (array_keys($ccTypes) as $code) {
if (in_array($code, $availableTypes)) { if (in_array($code, $availableTypes)) {
$types[$ccTypes[$code]['code_alt']] = $code; $types[$ccTypes[$code]['code_alt']] = $code;
} }
} }
} }
return $types; return $types;
} }
/** /**
* Allow checkbox for MOTO payments to be saved as RECURRING * Allow checkbox for MOTO payments to be saved as RECURRING
* *
* @return bool * @return bool
*/ */
public function allowRecurring() public function allowRecurring()
{ {
if ($this->adyenHelper->getAdyenAbstractConfigData('enable_recurring', null)) { if ($this->adyenHelper->getAdyenAbstractConfigData('enable_recurring', null)) {
return true; return true;
...@@ -157,5 +157,4 @@ class Cc extends \Magento\Payment\Block\Form\Cc ...@@ -157,5 +157,4 @@ class Cc extends \Magento\Payment\Block\Form\Cc
{ {
return $this->adyenHelper->isCreditCardVaultEnabled(); return $this->adyenHelper->isCreditCardVaultEnabled();
} }
} }
...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Block\Form; ...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Block\Form;
class PayByMail extends \Magento\Payment\Block\Form class PayByMail extends \Magento\Payment\Block\Form
{ {
/** /**
* @var string * @var string
*/ */
......
...@@ -27,7 +27,6 @@ use Magento\Framework\View\Element\Template; ...@@ -27,7 +27,6 @@ use Magento\Framework\View\Element\Template;
class AbstractInfo extends \Magento\Payment\Block\Info class AbstractInfo extends \Magento\Payment\Block\Info
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
...@@ -37,7 +36,7 @@ class AbstractInfo extends \Magento\Payment\Block\Info ...@@ -37,7 +36,7 @@ class AbstractInfo extends \Magento\Payment\Block\Info
* @var \Adyen\Payment\Model\ResourceModel\Order\Payment\CollectionFactory * @var \Adyen\Payment\Model\ResourceModel\Order\Payment\CollectionFactory
*/ */
protected $_adyenOrderPaymentCollectionFactory; protected $_adyenOrderPaymentCollectionFactory;
/** /**
* AbstractInfo constructor. * AbstractInfo constructor.
* *
......
...@@ -40,7 +40,7 @@ class Boleto extends AbstractInfo ...@@ -40,7 +40,7 @@ class Boleto extends AbstractInfo
if (empty($paymentAction[$data])) { if (empty($paymentAction[$data])) {
return ''; return '';
} }
return $paymentAction[$data]; return $paymentAction[$data];
} }
} }
...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Block\Info; ...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Block\Info;
class Cc extends AbstractInfo class Cc extends AbstractInfo
{ {
/** /**
* @var string * @var string
*/ */
......
...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Block\Info; ...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Block\Info;
class Oneclick extends Cc class Oneclick extends Cc
{ {
/** /**
* @var string * @var string
*/ */
......
...@@ -86,10 +86,10 @@ class PaymentLink extends AbstractInfo ...@@ -86,10 +86,10 @@ class PaymentLink extends AbstractInfo
public function _toHtml() public function _toHtml()
{ {
return strpos($this->getPayment()->getMethod(), 'adyen_') === 0 return strpos($this->getPayment()->getMethod(), 'adyen_') === 0
&& $this->_scopeConfig->getValue('payment/adyen_hpp/active') && $this->_scopeConfig->getValue('payment/adyen_hpp/active')
&& $this->_scopeConfig->getValue('payment/adyen_pay_by_mail/active') && $this->_scopeConfig->getValue('payment/adyen_pay_by_mail/active')
&& $this->getOrder()->getTotalDue() > 0 && $this->getOrder()->getTotalDue() > 0
? parent::_toHtml() ? parent::_toHtml()
: ''; : '';
} }
} }
...@@ -28,7 +28,6 @@ use Symfony\Component\Config\Definition\Exception\Exception; ...@@ -28,7 +28,6 @@ use Symfony\Component\Config\Definition\Exception\Exception;
class Redirect extends \Magento\Payment\Block\Form class Redirect extends \Magento\Payment\Block\Form
{ {
/** /**
* @var \Magento\Sales\Model\OrderFactory * @var \Magento\Sales\Model\OrderFactory
*/ */
...@@ -64,29 +63,29 @@ class Redirect extends \Magento\Payment\Block\Form ...@@ -64,29 +63,29 @@ class Redirect extends \Magento\Payment\Block\Form
*/ */
protected $_taxConfig; protected $_taxConfig;
/** /**
* @var \Magento\Tax\Model\Calculation * @var \Magento\Tax\Model\Calculation
*/ */
protected $_taxCalculation; protected $_taxCalculation;
/** /**
* Request object * Request object
*/ */
protected $_request; protected $_request;
/** /**
* Redirect constructor. * Redirect constructor.
* *
* @param \Magento\Framework\View\Element\Template\Context $context * @param \Magento\Framework\View\Element\Template\Context $context
* @param array $data * @param array $data
* @param \Magento\Sales\Model\OrderFactory $orderFactory * @param \Magento\Sales\Model\OrderFactory $orderFactory
* @param \Magento\Checkout\Model\Session $checkoutSession * @param \Magento\Checkout\Model\Session $checkoutSession
* @param \Adyen\Payment\Helper\Data $adyenHelper * @param \Adyen\Payment\Helper\Data $adyenHelper
* @param \Magento\Framework\Locale\ResolverInterface $resolver * @param \Magento\Framework\Locale\ResolverInterface $resolver
* @param \Adyen\Payment\Logger\AdyenLogger $adyenLogger * @param \Adyen\Payment\Logger\AdyenLogger $adyenLogger
* @param \Magento\Tax\Model\Config $taxConfig * @param \Magento\Tax\Model\Config $taxConfig
* @param \Magento\Tax\Model\Calculation $taxCalculation * @param \Magento\Tax\Model\Calculation $taxCalculation
*/ */
public function __construct( public function __construct(
\Magento\Framework\View\Element\Template\Context $context, \Magento\Framework\View\Element\Template\Context $context,
\Magento\Sales\Model\OrderFactory $orderFactory, \Magento\Sales\Model\OrderFactory $orderFactory,
...@@ -106,47 +105,48 @@ class Redirect extends \Magento\Payment\Block\Form ...@@ -106,47 +105,48 @@ class Redirect extends \Magento\Payment\Block\Form
$this->_resolver = $resolver; $this->_resolver = $resolver;
$this->_adyenLogger = $adyenLogger; $this->_adyenLogger = $adyenLogger;
$this->_getOrder(); $this->_getOrder();
$this->_taxConfig = $taxConfig; $this->_taxConfig = $taxConfig;
$this->_taxCalculation = $taxCalculation; $this->_taxCalculation = $taxCalculation;
$this->_request = $context->getRequest(); $this->_request = $context->getRequest();
} }
/** /**
* @return mixed|string[] * @return mixed|string[]
* @throws AdyenException * @throws AdyenException
*/ */
public function getRedirectMethod() public function getRedirectMethod()
{ {
if ($redirectMethod = $this->getPayment()->getAdditionalInformation('redirectMethod')) { if ($redirectMethod = $this->getPayment()->getAdditionalInformation('redirectMethod')) {
return $redirectMethod; return $redirectMethod;
} }
throw new AdyenException("No redirect method is provided."); throw new AdyenException("No redirect method is provided.");
} }
/**
* Retrieves redirect url for the flow of checkout API
*
* @return string[]
* @throws AdyenException
*/
public function getRedirectUrl()
{
if ($redirectUrl = $this->getPayment()->getAdditionalInformation('redirectUrl')) {
return $redirectUrl;
}
throw new AdyenException("No redirect url is provided.");
}
/** /**
* @return $this * @return Redirect
*/ */
public function _prepareLayout() public function _prepareLayout()
{ {
return parent::_prepareLayout(); return parent::_prepareLayout();
} }
/**
* Retrieves redirect url for the flow of checkout API
*
* @return string[]
* @throws AdyenException
*/
public function getRedirectUrl()
{
if ($redirectUrl = $this->getPayment()->getAdditionalInformation('redirectUrl')) {
return $redirectUrl;
}
throw new AdyenException("No redirect url is provided.");
}
/** /**
* @return string * @return string
*/ */
...@@ -155,12 +155,11 @@ class Redirect extends \Magento\Payment\Block\Form ...@@ -155,12 +155,11 @@ class Redirect extends \Magento\Payment\Block\Form
$url = ""; $url = "";
try { try {
if ($this->_order->getPayment()) { if ($this->_order->getPayment()) {
switch ($this->_adyenHelper->isDemoMode()) { switch ($this->_adyenHelper->isDemoMode()) {
case true: case true:
if ($this->_adyenHelper->doesPaymentMethodSkipDetails( if ($this->_adyenHelper->doesPaymentMethodSkipDetails(
$this->_order->getPayment()->getAdditionalInformation('brand_code') $this->_order->getPayment()->getAdditionalInformation('brand_code')
) )
) { ) {
$url = "https://test.adyen.com/hpp/skipDetails.shtml"; $url = "https://test.adyen.com/hpp/skipDetails.shtml";
} else { } else {
...@@ -169,8 +168,8 @@ class Redirect extends \Magento\Payment\Block\Form ...@@ -169,8 +168,8 @@ class Redirect extends \Magento\Payment\Block\Form
break; break;
default: default:
if ($this->_adyenHelper->doesPaymentMethodSkipDetails( if ($this->_adyenHelper->doesPaymentMethodSkipDetails(
$this->_order->getPayment()->getAdditionalInformation('brand_code') $this->_order->getPayment()->getAdditionalInformation('brand_code')
) )
) { ) {
$url = "https://live.adyen.com/hpp/skipDetails.shtml"; $url = "https://live.adyen.com/hpp/skipDetails.shtml";
} else { } else {
...@@ -187,13 +186,13 @@ class Redirect extends \Magento\Payment\Block\Form ...@@ -187,13 +186,13 @@ class Redirect extends \Magento\Payment\Block\Form
return $url; return $url;
} }
/** /**
* @return mixed * @return mixed
*/ */
private function getBrandCode() private function getBrandCode()
{ {
return $this->getPayment()->getAdditionalInformation('brand_code'); return $this->getPayment()->getAdditionalInformation('brand_code');
} }
/** /**
* Set Billing Address data * Set Billing Address data
...@@ -378,7 +377,8 @@ class Redirect extends \Magento\Payment\Block\Form ...@@ -378,7 +377,8 @@ class Redirect extends \Magento\Payment\Block\Form
); );
} }
$formFields['openinvoicedata.refundDescription'] = "Refund / Correction for " . $formFields['merchantReference']; $formFields['openinvoicedata.refundDescription'] = "Refund / Correction for " .
$formFields['merchantReference'];
$formFields['openinvoicedata.numberOfLines'] = $count; $formFields['openinvoicedata.numberOfLines'] = $count;
return $formFields; return $formFields;
...@@ -420,81 +420,84 @@ class Redirect extends \Magento\Payment\Block\Form ...@@ -420,81 +420,84 @@ class Redirect extends \Magento\Payment\Block\Form
return $this->_checkoutSession; return $this->_checkoutSession;
} }
/** /**
* Retrieve request object * Retrieve request object
* *
* @return \Magento\Framework\App\RequestInterface * @return \Magento\Framework\App\RequestInterface
*/ */
protected function _getRequest() protected function _getRequest()
{ {
return $this->_request; return $this->_request;
} }
/** /**
* Get order object * Get order object
* *
* @return \Magento\Sales\Model\Order * @return \Magento\Sales\Model\Order
*/ */
protected function _getOrder() protected function _getOrder()
{ {
if (!$this->_order) { if (!$this->_order) {
$incrementId = $this->_getCheckout()->getLastRealOrderId(); $incrementId = $this->_getCheckout()->getLastRealOrderId();
$this->_order = $this->_orderFactory->create()->loadByIncrementId($incrementId); $this->_order = $this->_orderFactory->create()->loadByIncrementId($incrementId);
} }
return $this->_order; return $this->_order;
} }
/** /**
* @return mixed * @return mixed
*/ */
public function getPaReq() public function getPaReq()
{ {
if ($paReq = $this->getPayment()->getAdditionalInformation('paRequest')) { if ($paReq = $this->getPayment()->getAdditionalInformation('paRequest')) {
return $paReq; return $paReq;
} }
throw new AdyenException("No paRequest is provided."); throw new AdyenException("No paRequest is provided.");
} }
/** /**
* @return string[] * @return string[]
* @throws AdyenException * @throws AdyenException
*/ */
public function getMd() public function getMd()
{ {
if ($md = $this->getPayment()->getAdditionalInformation('md')) { if ($md = $this->getPayment()->getAdditionalInformation('md')) {
return $md; return $md;
} }
throw new AdyenException("No MD is provided."); throw new AdyenException("No MD is provided.");
} }
/** /**
* @return string * @return string
*/ */
public function getTermUrl() public function getTermUrl()
{ {
return $this->getUrl('adyen/process/redirect', return $this->getUrl(
['_secure' => $this->_getRequest()->isSecure()]); 'adyen/process/redirect',
} ['_secure' => $this->_getRequest()->isSecure()]
);
/** }
* Retrieve payment object if available
* /**
* @return \Magento\Framework\DataObject|\Magento\Sales\Api\Data\OrderPaymentInterface|mixed|null * Retrieve payment object if available
* @throws AdyenException *
*/ * @return \Magento\Framework\DataObject|\Magento\Sales\Api\Data\OrderPaymentInterface|mixed|null
private function getPayment() { * @throws AdyenException
try { */
$paymentObject = $this->_order->getPayment(); private function getPayment()
if (!empty($paymentObject)) { {
return $paymentObject; try {
} $paymentObject = $this->_order->getPayment();
} catch (Exception $e) { if (!empty($paymentObject)) {
// do nothing for now return $paymentObject;
throw($e); }
} } catch (Exception $e) {
// do nothing for now
throw new AdyenException("No payment object is found."); throw($e);
} }
throw new AdyenException("No payment object is found.");
}
} }
...@@ -36,6 +36,5 @@ class Overview extends \Magento\Backend\App\Action ...@@ -36,6 +36,5 @@ class Overview extends \Magento\Backend\App\Action
$resultPage->setActiveMenu('Adyen_Payment::notifications_overview') $resultPage->setActiveMenu('Adyen_Payment::notifications_overview')
->getConfig()->getTitle()->prepend(__('Adyen Notifications Overview')); ->getConfig()->getTitle()->prepend(__('Adyen Notifications Overview'));
return $resultPage; return $resultPage;
} }
} }
\ No newline at end of file
...@@ -27,8 +27,7 @@ use Symfony\Component\Config\Definition\Exception\Exception; ...@@ -27,8 +27,7 @@ use Symfony\Component\Config\Definition\Exception\Exception;
use Magento\Framework\App\Request\Http as Http; use Magento\Framework\App\Request\Http as Http;
/** /**
* Class Json * Class Json extends Action
* @package Adyen\Payment\Controller\Process
*/ */
class Json extends \Magento\Framework\App\Action\Action class Json extends \Magento\Framework\App\Action\Action
{ {
...@@ -77,9 +76,9 @@ class Json extends \Magento\Framework\App\Action\Action ...@@ -77,9 +76,9 @@ class Json extends \Magento\Framework\App\Action\Action
$this->_adyenHelper = $adyenHelper; $this->_adyenHelper = $adyenHelper;
$this->_adyenLogger = $adyenLogger; $this->_adyenLogger = $adyenLogger;
$this->serializer = $serializer; $this->serializer = $serializer;
// Fix for Magento2.3 adding isAjax to the request params // Fix for Magento2.3 adding isAjax to the request params
if(interface_exists("\Magento\Framework\App\CsrfAwareActionInterface")) { if (interface_exists(\Magento\Framework\App\CsrfAwareActionInterface::class)) {
$request = $this->getRequest(); $request = $this->getRequest();
if ($request instanceof Http && $request->isPost()) { if ($request instanceof Http && $request->isPost()) {
$request->setParam('isAjax', true); $request->setParam('isAjax', true);
...@@ -110,7 +109,6 @@ class Json extends \Magento\Framework\App\Action\Action ...@@ -110,7 +109,6 @@ class Json extends \Magento\Framework\App\Action\Action
$notificationMode = isset($notificationItems['live']) ? $notificationItems['live'] : ""; $notificationMode = isset($notificationItems['live']) ? $notificationItems['live'] : "";
if ($notificationMode !== "" && $this->_validateNotificationMode($notificationMode)) { if ($notificationMode !== "" && $this->_validateNotificationMode($notificationMode)) {
foreach ($notificationItems['notificationItems'] as $notificationItem) { foreach ($notificationItems['notificationItems'] as $notificationItem) {
$status = $this->_processNotification( $status = $this->_processNotification(
$notificationItem['NotificationRequestItem'], $notificationItem['NotificationRequestItem'],
...@@ -126,7 +124,8 @@ class Json extends \Magento\Framework\App\Action\Action ...@@ -126,7 +124,8 @@ class Json extends \Magento\Framework\App\Action\Action
} }
$cronCheckTest = $notificationItems['notificationItems'][0]['NotificationRequestItem']['pspReference']; $cronCheckTest = $notificationItems['notificationItems'][0]['NotificationRequestItem']['pspReference'];
// Run the query for checking unprocessed notifications, do this only for test notifications coming from the Adyen Customer Area // Run the query for checking unprocessed notifications, do this only for test notifications coming
// from the Adyen Customer Area
if ($this->_isTestNotification($cronCheckTest)) { if ($this->_isTestNotification($cronCheckTest)) {
$unprocessedNotifications = $this->_adyenHelper->getUnprocessedNotifications(); $unprocessedNotifications = $this->_adyenHelper->getUnprocessedNotifications();
if ($unprocessedNotifications > 0) { if ($unprocessedNotifications > 0) {
...@@ -164,7 +163,8 @@ class Json extends \Magento\Framework\App\Action\Action ...@@ -164,7 +163,8 @@ class Json extends \Magento\Framework\App\Action\Action
$mode = $this->_adyenHelper->getAdyenAbstractConfigData('demo_mode'); $mode = $this->_adyenHelper->getAdyenAbstractConfigData('demo_mode');
// Notification mode can be a string or a boolean // Notification mode can be a string or a boolean
if (($mode == '1' && ($notificationMode == "false" || $notificationMode == false)) || ($mode == '0' && ($notificationMode == 'true' || $notificationMode == true))) { if (($mode == '1' && ($notificationMode == "false" || !$notificationMode))
|| ($mode == '0' && ($notificationMode == 'true' || $notificationMode))) {
return true; return true;
} }
return false; return false;
...@@ -182,7 +182,6 @@ class Json extends \Magento\Framework\App\Action\Action ...@@ -182,7 +182,6 @@ class Json extends \Magento\Framework\App\Action\Action
{ {
// validate the notification // validate the notification
if ($this->authorised($response)) { if ($this->authorised($response)) {
// log the notification // log the notification
$this->_adyenLogger->addAdyenNotification( $this->_adyenLogger->addAdyenNotification(
"The content of the notification item is: " . print_r($response, 1) "The content of the notification item is: " . print_r($response, 1)
...@@ -191,7 +190,7 @@ class Json extends \Magento\Framework\App\Action\Action ...@@ -191,7 +190,7 @@ class Json extends \Magento\Framework\App\Action\Action
// check if notification already exists // check if notification already exists
if (!$this->_isDuplicate($response)) { if (!$this->_isDuplicate($response)) {
try { try {
$notification = $this->_objectManager->create('Adyen\Payment\Model\Notification'); $notification = $this->_objectManager->create(\Adyen\Payment\Model\Notification::class);
if (isset($response['pspReference'])) { if (isset($response['pspReference'])) {
$notification->setPspreference($response['pspReference']); $notification->setPspreference($response['pspReference']);
...@@ -289,11 +288,9 @@ class Json extends \Magento\Framework\App\Action\Action ...@@ -289,11 +288,9 @@ class Json extends \Magento\Framework\App\Action\Action
// If notification is test check if fields are correct if not return error // If notification is test check if fields are correct if not return error
if ($this->_isTestNotification($response['pspReference'])) { if ($this->_isTestNotification($response['pspReference'])) {
if ($usernameCmp != 0 || $passwordCmp != 0) { $this->_returnResult(
$this->_returnResult( 'username (PHP_AUTH_USER) and\or password (PHP_AUTH_PW) are not the same as Magento settings'
'username (PHP_AUTH_USER) and\or password (PHP_AUTH_PW) are not the same as Magento settings' );
);
}
} }
return false; return false;
} }
...@@ -313,7 +310,7 @@ class Json extends \Magento\Framework\App\Action\Action ...@@ -313,7 +310,7 @@ class Json extends \Magento\Framework\App\Action\Action
if (isset($response['originalReference'])) { if (isset($response['originalReference'])) {
$originalReference = trim($response['originalReference']); $originalReference = trim($response['originalReference']);
} }
$notification = $this->_objectManager->create('Adyen\Payment\Model\Notification'); $notification = $this->_objectManager->create(\Adyen\Payment\Model\Notification::class);
return $notification->isDuplicate($pspReference, $eventCode, $success, $originalReference); return $notification->isDuplicate($pspReference, $eventCode, $success, $originalReference);
} }
...@@ -328,19 +325,29 @@ class Json extends \Magento\Framework\App\Action\Action ...@@ -328,19 +325,29 @@ class Json extends \Magento\Framework\App\Action\Action
} elseif (isset($_SERVER['REDIRECT_REMOTE_AUTHORIZATION']) && } elseif (isset($_SERVER['REDIRECT_REMOTE_AUTHORIZATION']) &&
$_SERVER['REDIRECT_REMOTE_AUTHORIZATION'] != '' $_SERVER['REDIRECT_REMOTE_AUTHORIZATION'] != ''
) { ) {
list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = list(
$_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']
) =
explode(':', base64_decode($_SERVER['REDIRECT_REMOTE_AUTHORIZATION']), 2); explode(':', base64_decode($_SERVER['REDIRECT_REMOTE_AUTHORIZATION']), 2);
} elseif (!empty($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])) { } elseif (!empty($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])) {
list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = list(
$_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']
) =
explode(':', base64_decode(substr($_SERVER['REDIRECT_HTTP_AUTHORIZATION'], 6)), 2); explode(':', base64_decode(substr($_SERVER['REDIRECT_HTTP_AUTHORIZATION'], 6)), 2);
} elseif (!empty($_SERVER['HTTP_AUTHORIZATION'])) { } elseif (!empty($_SERVER['HTTP_AUTHORIZATION'])) {
list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = list(
$_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']
) =
explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6)), 2); explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6)), 2);
} elseif (!empty($_SERVER['REMOTE_USER'])) { } elseif (!empty($_SERVER['REMOTE_USER'])) {
list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = list(
$_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']
) =
explode(':', base64_decode(substr($_SERVER['REMOTE_USER'], 6)), 2); explode(':', base64_decode(substr($_SERVER['REMOTE_USER'], 6)), 2);
} elseif (!empty($_SERVER['REDIRECT_REMOTE_USER'])) { } elseif (!empty($_SERVER['REDIRECT_REMOTE_USER'])) {
list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = list(
$_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']
) =
explode(':', base64_decode(substr($_SERVER['REDIRECT_REMOTE_USER'], 6)), 2); explode(':', base64_decode(substr($_SERVER['REDIRECT_REMOTE_USER'], 6)), 2);
} }
} }
...@@ -381,6 +388,5 @@ class Json extends \Magento\Framework\App\Action\Action ...@@ -381,6 +388,5 @@ class Json extends \Magento\Framework\App\Action\Action
->clearHeader('Content-Type') ->clearHeader('Content-Type')
->setHeader('Content-Type', 'text/html') ->setHeader('Content-Type', 'text/html')
->setBody($message); ->setBody($message);
return;
} }
} }
This diff is collapsed.
This diff is collapsed.
...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Controller\Process; ...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Controller\Process;
class ResultPos extends \Magento\Framework\App\Action\Action class ResultPos extends \Magento\Framework\App\Action\Action
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
...@@ -194,7 +193,7 @@ class ResultPos extends \Magento\Framework\App\Action\Action ...@@ -194,7 +193,7 @@ class ResultPos extends \Magento\Framework\App\Action\Action
$amountChecksum = 0; $amountChecksum = 0;
$amountLength = strlen($amount); $amountLength = strlen($amount);
for ($i=0; $i<$amountLength; $i++) { for ($i = 0; $i < $amountLength; $i++) {
// ASCII value use ord // ASCII value use ord
$checksumCalc = ord($amount[$i]) - 48; $checksumCalc = ord($amount[$i]) - 48;
$amountChecksum += $checksumCalc; $amountChecksum += $checksumCalc;
...@@ -202,21 +201,21 @@ class ResultPos extends \Magento\Framework\App\Action\Action ...@@ -202,21 +201,21 @@ class ResultPos extends \Magento\Framework\App\Action\Action
$currencyChecksum = 0; $currencyChecksum = 0;
$currencyLength = strlen($currency); $currencyLength = strlen($currency);
for ($i=0; $i<$currencyLength; $i++) { for ($i = 0; $i < $currencyLength; $i++) {
$checksumCalc = ord($currency[$i]) - 64; $checksumCalc = ord($currency[$i]) - 64;
$currencyChecksum += $checksumCalc; $currencyChecksum += $checksumCalc;
} }
$resultChecksum = 0; $resultChecksum = 0;
$resultLength = strlen($result); $resultLength = strlen($result);
for ($i=0; $i<$resultLength; $i++) { for ($i = 0; $i < $resultLength; $i++) {
$checksumCalc = ord($result[$i]) - 64; $checksumCalc = ord($result[$i]) - 64;
$resultChecksum += $checksumCalc; $resultChecksum += $checksumCalc;
} }
$sessionIdChecksum = 0; $sessionIdChecksum = 0;
$sessionIdLength = strlen($sessionId); $sessionIdLength = strlen($sessionId);
for ($i=0; $i<$sessionIdLength; $i++) { for ($i = 0; $i < $sessionIdLength; $i++) {
$checksumCalc = $this->_getAscii2Int($sessionId[$i]); $checksumCalc = $this->_getAscii2Int($sessionId[$i]);
$sessionIdChecksum += $checksumCalc; $sessionIdChecksum += $checksumCalc;
} }
......
...@@ -28,7 +28,6 @@ use Magento\Payment\Gateway\CommandInterface; ...@@ -28,7 +28,6 @@ use Magento\Payment\Gateway\CommandInterface;
class PayByMailCommand implements CommandInterface class PayByMailCommand implements CommandInterface
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
...@@ -61,7 +60,7 @@ class PayByMailCommand implements CommandInterface ...@@ -61,7 +60,7 @@ class PayByMailCommand implements CommandInterface
public function execute(array $commandSubject) public function execute(array $commandSubject)
{ {
$stateObject = \Magento\Payment\Gateway\Helper\SubjectReader::readStateObject($commandSubject); $stateObject = \Magento\Payment\Gateway\Helper\SubjectReader::readStateObject($commandSubject);
$payment =\Magento\Payment\Gateway\Helper\SubjectReader::readPayment($commandSubject); $payment = \Magento\Payment\Gateway\Helper\SubjectReader::readPayment($commandSubject);
$payment = $payment->getPayment(); $payment = $payment->getPayment();
// do not let magento set status to processing // do not let magento set status to processing
...@@ -74,7 +73,7 @@ class PayByMailCommand implements CommandInterface ...@@ -74,7 +73,7 @@ class PayByMailCommand implements CommandInterface
$stateObject->setState(\Magento\Sales\Model\Order::STATE_NEW); $stateObject->setState(\Magento\Sales\Model\Order::STATE_NEW);
$stateObject->setStatus($this->_adyenHelper->getAdyenAbstractConfigData('order_status')); $stateObject->setStatus($this->_adyenHelper->getAdyenAbstractConfigData('order_status'));
$stateObject->setIsNotified(false); $stateObject->setIsNotified(false);
return $this; return $this;
} }
...@@ -118,7 +117,6 @@ class PayByMailCommand implements CommandInterface ...@@ -118,7 +117,6 @@ class PayByMailCommand implements CommandInterface
return $url; return $url;
} }
/** /**
* @param \Magento\Sales\Model\Order\Payment $payment * @param \Magento\Sales\Model\Order\Payment $payment
* @param float|bool $paymentAmount * @param float|bool $paymentAmount
...@@ -128,31 +126,34 @@ class PayByMailCommand implements CommandInterface ...@@ -128,31 +126,34 @@ class PayByMailCommand implements CommandInterface
{ {
$order = $payment->getOrder(); $order = $payment->getOrder();
$realOrderId = $order->getRealOrderId(); $realOrderId = $order->getRealOrderId();
$orderCurrencyCode = $order->getOrderCurrencyCode(); $orderCurrencyCode = $order->getOrderCurrencyCode();
$storeId = $order->getStore()->getId(); $storeId = $order->getStore()->getId();
// check if paybymail has it's own skin // check if paybymail has it's own skin
$skinCode = trim($this->_adyenHelper->getAdyenPayByMailConfigData('skin_code')); $skinCode = trim($this->_adyenHelper->getAdyenPayByMailConfigData('skin_code'));
if ($skinCode == "") { if ($skinCode == "") {
// use HPP skin and HMAC // use HPP skin and HMAC
$skinCode = $this->_adyenHelper->getAdyenHppConfigData('skin_code'); $skinCode = $this->_adyenHelper->getAdyenHppConfigData('skin_code');
$hmacKey = $this->_adyenHelper->getHmac(); $hmacKey = $this->_adyenHelper->getHmac();
$shopperLocale = trim($this->_adyenHelper->getAdyenHppConfigData('shopper_locale', $storeId)); $shopperLocale = trim($this->_adyenHelper->getAdyenHppConfigData('shopper_locale', $storeId));
$countryCode = trim($this->_adyenHelper->getAdyenHppConfigData('country_code', $storeId)); $countryCode = trim($this->_adyenHelper->getAdyenHppConfigData('country_code', $storeId));
} else { } else {
// use pay_by_mail skin and hmac // use pay_by_mail skin and hmac
$hmacKey = $this->_adyenHelper->getHmacPayByMail(); $hmacKey = $this->_adyenHelper->getHmacPayByMail();
} }
$amount = $this->_adyenHelper->formatAmount($paymentAmount ?: $order->getGrandTotal(), $orderCurrencyCode); $amount = $this->_adyenHelper->formatAmount(
$merchantAccount = trim($this->_adyenHelper->getAdyenAbstractConfigData('merchant_account', $storeId)); $paymentAmount ?: $order->getGrandTotal(),
$shopperEmail = $order->getCustomerEmail(); $orderCurrencyCode
$customerId = $order->getCustomerId(); );
$merchantAccount = trim($this->_adyenHelper->getAdyenAbstractConfigData('merchant_account', $storeId));
$shopperEmail = $order->getCustomerEmail();
$customerId = $order->getCustomerId();
// get locale from store // get locale from store
$shopperLocale = (!empty($shopperLocale)) ? $shopperLocale : $this->_adyenHelper->getStoreLocale($storeId); $shopperLocale = (!empty($shopperLocale)) ? $shopperLocale : $this->_adyenHelper->getStoreLocale($storeId);
$countryCode = (!empty($countryCode)) ? $countryCode : false; $countryCode = (!empty($countryCode)) ? $countryCode : false;
// if directory lookup is enabled use the billingadress as countrycode // if directory lookup is enabled use the billingadress as countrycode
if ($countryCode == false) { if ($countryCode == false) {
...@@ -163,44 +164,44 @@ class PayByMailCommand implements CommandInterface ...@@ -163,44 +164,44 @@ class PayByMailCommand implements CommandInterface
} }
} }
$deliveryDays = $this->_adyenHelper->getAdyenHppConfigData('delivery_days', $storeId); $deliveryDays = $this->_adyenHelper->getAdyenHppConfigData('delivery_days', $storeId);
$deliveryDays = (!empty($deliveryDays)) ? $deliveryDays : 5; $deliveryDays = (!empty($deliveryDays)) ? $deliveryDays : 5;
$formFields = []; $formFields = [];
$formFields['merchantAccount'] = $merchantAccount; $formFields['merchantAccount'] = $merchantAccount;
$formFields['merchantReference'] = $realOrderId; $formFields['merchantReference'] = $realOrderId;
$formFields['paymentAmount'] = (int)$amount; $formFields['paymentAmount'] = (int)$amount;
$formFields['currencyCode'] = $orderCurrencyCode; $formFields['currencyCode'] = $orderCurrencyCode;
$formFields['shipBeforeDate'] = date( $formFields['shipBeforeDate'] = date(
"Y-m-d", "Y-m-d",
mktime(date("H"), date("i"), date("s"), date("m"), date("j") + $deliveryDays, date("Y")) mktime(date("H"), date("i"), date("s"), date("m"), date("j") + $deliveryDays, date("Y"))
); );
$formFields['skinCode'] = $skinCode; $formFields['skinCode'] = $skinCode;
$formFields['shopperLocale'] = $shopperLocale; $formFields['shopperLocale'] = $shopperLocale;
if ($countryCode != "") { if ($countryCode != "") {
$formFields['countryCode'] = $countryCode; $formFields['countryCode'] = $countryCode;
} }
$formFields['shopperEmail'] = $shopperEmail; $formFields['shopperEmail'] = $shopperEmail;
// recurring // recurring
$recurringType = $this->_adyenHelper->getRecurringTypeFromOneclickRecurringSetting($storeId); $recurringType = $this->_adyenHelper->getRecurringTypeFromOneclickRecurringSetting($storeId);
$sessionValidity = $this->_adyenHelper->getAdyenPayByMailConfigData('session_validity', $storeId); $sessionValidity = $this->_adyenHelper->getAdyenPayByMailConfigData('session_validity', $storeId);
if ($sessionValidity == "") { if ($sessionValidity == "") {
$sessionValidity = 3; $sessionValidity = 3;
} }
$formFields['sessionValidity'] = date("c", strtotime("+". $sessionValidity. " days")); $formFields['sessionValidity'] = date("c", strtotime("+" . $sessionValidity . " days"));
if ($customerId > 0) { if ($customerId > 0) {
$formFields['recurringContract'] = $recurringType; $formFields['recurringContract'] = $recurringType;
$formFields['shopperReference'] = $customerId; $formFields['shopperReference'] = $customerId;
} }
// Sign request using secret key // Sign request using secret key
$merchantSig = \Adyen\Util\Util::calculateSha256Signature($hmacKey, $formFields); $merchantSig = \Adyen\Util\Util::calculateSha256Signature($hmacKey, $formFields);
$formFields['merchantSig'] = $merchantSig; $formFields['merchantSig'] = $merchantSig;
$this->_adyenLogger->addAdyenDebug(print_r($formFields, true)); $this->_adyenLogger->addAdyenDebug(print_r($formFields, true));
......
...@@ -26,9 +26,6 @@ namespace Adyen\Payment\Gateway\Http\Client; ...@@ -26,9 +26,6 @@ namespace Adyen\Payment\Gateway\Http\Client;
use Magento\Payment\Gateway\Http\ClientInterface; use Magento\Payment\Gateway\Http\ClientInterface;
use Adyen\Payment\Model\ApplicationInfo; use Adyen\Payment\Model\ApplicationInfo;
/**
* Class TransactionAuthorization
*/
class TransactionAuthorization implements ClientInterface class TransactionAuthorization implements ClientInterface
{ {
......
...@@ -26,9 +26,6 @@ namespace Adyen\Payment\Gateway\Http\Client; ...@@ -26,9 +26,6 @@ namespace Adyen\Payment\Gateway\Http\Client;
use Magento\Payment\Gateway\Http\ClientInterface; use Magento\Payment\Gateway\Http\ClientInterface;
use Adyen\Payment\Model\ApplicationInfo; use Adyen\Payment\Model\ApplicationInfo;
/**
* Class TransactionPayment
*/
class TransactionPayment implements ClientInterface class TransactionPayment implements ClientInterface
{ {
......
...@@ -144,7 +144,8 @@ class TransactionPosCloudSync implements ClientInterface ...@@ -144,7 +144,8 @@ class TransactionPosCloudSync implements ClientInterface
$errorMsg = __('In Progress'); $errorMsg = __('In Progress');
throw new \Magento\Framework\Exception\LocalizedException(__($errorMsg)); throw new \Magento\Framework\Exception\LocalizedException(__($errorMsg));
} else { } else {
$paymentResponse = $statusResponse['RepeatedMessageResponse']['RepeatedResponseMessageBody']['PaymentResponse']; $paymentResponse = $statusResponse['RepeatedMessageResponse']['RepeatedResponseMessageBody']
['PaymentResponse'];
} }
} else { } else {
// probably SaleToPOIRequest, that means terminal unreachable, log the response as error // probably SaleToPOIRequest, that means terminal unreachable, log the response as error
......
...@@ -40,7 +40,6 @@ class TransactionRefund implements ClientInterface ...@@ -40,7 +40,6 @@ class TransactionRefund implements ClientInterface
* @param \Adyen\Payment\Helper\Data $adyenHelper * @param \Adyen\Payment\Helper\Data $adyenHelper
*/ */
public function __construct( public function __construct(
\Adyen\Payment\Helper\Data $adyenHelper \Adyen\Payment\Helper\Data $adyenHelper
) { ) {
$this->adyenHelper = $adyenHelper; $this->adyenHelper = $adyenHelper;
...@@ -63,7 +62,7 @@ class TransactionRefund implements ClientInterface ...@@ -63,7 +62,7 @@ class TransactionRefund implements ClientInterface
try { try {
$responses[] = $service->refund($request); $responses[] = $service->refund($request);
} catch (\Adyen\AdyenException $e) { } catch (\Adyen\AdyenException $e) {
$responses[] = array('error' => $e->getMessage()); $responses[] = ['error' => $e->getMessage()];
} }
} }
return $responses; return $responses;
......
...@@ -29,7 +29,6 @@ use Magento\Payment\Gateway\Http\TransferInterface; ...@@ -29,7 +29,6 @@ use Magento\Payment\Gateway\Http\TransferInterface;
class TransferFactory implements TransferFactoryInterface class TransferFactory implements TransferFactoryInterface
{ {
/** /**
* @var TransferBuilder * @var TransferBuilder
*/ */
......
...@@ -25,9 +25,6 @@ namespace Adyen\Payment\Gateway\Request; ...@@ -25,9 +25,6 @@ namespace Adyen\Payment\Gateway\Request;
use Magento\Payment\Gateway\Request\BuilderInterface; use Magento\Payment\Gateway\Request\BuilderInterface;
/**
* Class AddressDataBuilder
*/
class AddressDataBuilder implements BuilderInterface class AddressDataBuilder implements BuilderInterface
{ {
/** /**
...@@ -42,8 +39,7 @@ class AddressDataBuilder implements BuilderInterface ...@@ -42,8 +39,7 @@ class AddressDataBuilder implements BuilderInterface
*/ */
public function __construct( public function __construct(
\Adyen\Payment\Helper\Requests $adyenRequestsHelper \Adyen\Payment\Helper\Requests $adyenRequestsHelper
) ) {
{
$this->adyenRequestsHelper = $adyenRequestsHelper; $this->adyenRequestsHelper = $adyenRequestsHelper;
} }
...@@ -58,11 +54,11 @@ class AddressDataBuilder implements BuilderInterface ...@@ -58,11 +54,11 @@ class AddressDataBuilder implements BuilderInterface
/** @var \Magento\Payment\Gateway\Data\PaymentDataObject $paymentDataObject */ /** @var \Magento\Payment\Gateway\Data\PaymentDataObject $paymentDataObject */
$paymentDataObject = \Magento\Payment\Gateway\Helper\SubjectReader::readPayment($buildSubject); $paymentDataObject = \Magento\Payment\Gateway\Helper\SubjectReader::readPayment($buildSubject);
$order = $paymentDataObject->getOrder(); $order = $paymentDataObject->getOrder();
$billingAddress = $order->getBillingAddress(); $billingAddress = $order->getBillingAddress();
$shippingAddress = $order->getShippingAddress(); $shippingAddress = $order->getShippingAddress();
$request['body'] = $this->adyenRequestsHelper->buildAddressData([], $billingAddress, $shippingAddress); $request['body'] = $this->adyenRequestsHelper->buildAddressData($billingAddress, $shippingAddress, []);
return $request; return $request;
} }
} }
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
namespace Adyen\Payment\Gateway\Request; namespace Adyen\Payment\Gateway\Request;
use Magento\Payment\Gateway\Request\BuilderInterface; use Magento\Payment\Gateway\Request\BuilderInterface;
...@@ -41,8 +42,7 @@ class BrowserInfoDataBuilder implements BuilderInterface ...@@ -41,8 +42,7 @@ class BrowserInfoDataBuilder implements BuilderInterface
*/ */
public function __construct( public function __construct(
\Adyen\Payment\Helper\Requests $adyenRequestsHelper \Adyen\Payment\Helper\Requests $adyenRequestsHelper
) ) {
{
$this->adyenRequestsHelper = $adyenRequestsHelper; $this->adyenRequestsHelper = $adyenRequestsHelper;
} }
......
...@@ -30,7 +30,6 @@ use Magento\Payment\Gateway\Request\BuilderInterface; ...@@ -30,7 +30,6 @@ use Magento\Payment\Gateway\Request\BuilderInterface;
*/ */
class CancelDataBuilder implements BuilderInterface class CancelDataBuilder implements BuilderInterface
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
...@@ -64,7 +63,7 @@ class CancelDataBuilder implements BuilderInterface ...@@ -64,7 +63,7 @@ class CancelDataBuilder implements BuilderInterface
"reference" => $order->getOrderIncrementId(), "reference" => $order->getOrderIncrementId(),
"originalReference" => $pspReference "originalReference" => $pspReference
]; ];
$request['clientConfig'] = ["storeId" => $order->getStoreId()]; $request['clientConfig'] = ["storeId" => $order->getStoreId()];
return $request; return $request;
} }
......
...@@ -30,7 +30,6 @@ use Magento\Payment\Gateway\Request\BuilderInterface; ...@@ -30,7 +30,6 @@ use Magento\Payment\Gateway\Request\BuilderInterface;
*/ */
class CaptureDataBuilder implements BuilderInterface class CaptureDataBuilder implements BuilderInterface
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
...@@ -54,7 +53,6 @@ class CaptureDataBuilder implements BuilderInterface ...@@ -54,7 +53,6 @@ class CaptureDataBuilder implements BuilderInterface
*/ */
public function build(array $buildSubject) public function build(array $buildSubject)
{ {
/** @var \Magento\Payment\Gateway\Data\PaymentDataObject $paymentDataObject */ /** @var \Magento\Payment\Gateway\Data\PaymentDataObject $paymentDataObject */
$paymentDataObject = \Magento\Payment\Gateway\Helper\SubjectReader::readPayment($buildSubject); $paymentDataObject = \Magento\Payment\Gateway\Helper\SubjectReader::readPayment($buildSubject);
$amount = \Magento\Payment\Gateway\Helper\SubjectReader::readAmount($buildSubject); $amount = \Magento\Payment\Gateway\Helper\SubjectReader::readAmount($buildSubject);
......
...@@ -28,7 +28,6 @@ use Adyen\Payment\Observer\AdyenCcDataAssignObserver; ...@@ -28,7 +28,6 @@ use Adyen\Payment\Observer\AdyenCcDataAssignObserver;
class CcAuthorizationDataBuilder implements BuilderInterface class CcAuthorizationDataBuilder implements BuilderInterface
{ {
/** /**
* @param array $buildSubject * @param array $buildSubject
* @return mixed * @return mixed
...@@ -64,7 +63,9 @@ class CcAuthorizationDataBuilder implements BuilderInterface ...@@ -64,7 +63,9 @@ class CcAuthorizationDataBuilder implements BuilderInterface
$payment->unsAdditionalInformation(AdyenCcDataAssignObserver::HOLDER_NAME); $payment->unsAdditionalInformation(AdyenCcDataAssignObserver::HOLDER_NAME);
// if installments is set and card type is credit card add it into the request // if installments is set and card type is credit card add it into the request
$numberOfInstallments = $payment->getAdditionalInformation(AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS) ?: 0; $numberOfInstallments = $payment->getAdditionalInformation(
AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS
) ?: 0;
$comboCardType = $payment->getAdditionalInformation(AdyenCcDataAssignObserver::COMBO_CARD_TYPE) ?: 'credit'; $comboCardType = $payment->getAdditionalInformation(AdyenCcDataAssignObserver::COMBO_CARD_TYPE) ?: 'credit';
if ($numberOfInstallments > 0) { if ($numberOfInstallments > 0) {
$requestBody['installments']['value'] = $numberOfInstallments; $requestBody['installments']['value'] = $numberOfInstallments;
...@@ -96,4 +97,4 @@ class CcAuthorizationDataBuilder implements BuilderInterface ...@@ -96,4 +97,4 @@ class CcAuthorizationDataBuilder implements BuilderInterface
} }
return null; return null;
} }
} }
\ No newline at end of file
...@@ -95,7 +95,9 @@ class CcBackendAuthorizationDataBuilder implements BuilderInterface ...@@ -95,7 +95,9 @@ class CcBackendAuthorizationDataBuilder implements BuilderInterface
if ($payment->getAdditionalInformation(AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS) && if ($payment->getAdditionalInformation(AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS) &&
$payment->getAdditionalInformation(AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS) > 0 $payment->getAdditionalInformation(AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS) > 0
) { ) {
$requestBody['installments']['value'] = $payment->getAdditionalInformation(AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS); $requestBody['installments']['value'] = $payment->getAdditionalInformation(
AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS
);
} }
// Flow for Billing agreements, for Vault check VaultDataBuilder // Flow for Billing agreements, for Vault check VaultDataBuilder
......
This diff is collapsed.
...@@ -20,13 +20,11 @@ ...@@ -20,13 +20,11 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
namespace Adyen\Payment\Gateway\Request; namespace Adyen\Payment\Gateway\Request;
use Magento\Payment\Gateway\Request\BuilderInterface; use Magento\Payment\Gateway\Request\BuilderInterface;
/**
* Class CustomerDataBuilder
*/
class CustomerDataBuilder implements BuilderInterface class CustomerDataBuilder implements BuilderInterface
{ {
/** /**
...@@ -39,14 +37,13 @@ class CustomerDataBuilder implements BuilderInterface ...@@ -39,14 +37,13 @@ class CustomerDataBuilder implements BuilderInterface
* *
* @param \Adyen\Payment\Helper\Requests $adyenRequestsHelper * @param \Adyen\Payment\Helper\Requests $adyenRequestsHelper
*/ */
public function __construct( public function __construct(
\Adyen\Payment\Helper\Requests $adyenRequestsHelper \Adyen\Payment\Helper\Requests $adyenRequestsHelper
) ) {
{
$this->adyenRequestsHelper = $adyenRequestsHelper; $this->adyenRequestsHelper = $adyenRequestsHelper;
} }
/** /**
* Add shopper data into request * Add shopper data into request
* *
* @param array $buildSubject * @param array $buildSubject
...@@ -62,7 +59,14 @@ class CustomerDataBuilder implements BuilderInterface ...@@ -62,7 +59,14 @@ class CustomerDataBuilder implements BuilderInterface
$billingAddress = $order->getBillingAddress(); $billingAddress = $order->getBillingAddress();
$storeId = $order->getStoreId(); $storeId = $order->getStoreId();
$additionalInformation = $payment->getAdditionalInformation(); $additionalInformation = $payment->getAdditionalInformation();
$request['body'] = $this->adyenRequestsHelper->buildCustomerData([], $customerId, $billingAddress, $storeId, $payment, $additionalInformation); $request['body'] = $this->adyenRequestsHelper->buildCustomerData(
$billingAddress,
$storeId,
$customerId,
$payment,
$additionalInformation,
[]
);
return $request; return $request;
} }
} }
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
namespace Adyen\Payment\Gateway\Request; namespace Adyen\Payment\Gateway\Request;
use Magento\Payment\Gateway\Request\BuilderInterface; use Magento\Payment\Gateway\Request\BuilderInterface;
...@@ -40,8 +41,8 @@ class CustomerIpDataBuilder implements BuilderInterface ...@@ -40,8 +41,8 @@ class CustomerIpDataBuilder implements BuilderInterface
* @param \Adyen\Payment\Helper\Requests $adyenRequestsHelper * @param \Adyen\Payment\Helper\Requests $adyenRequestsHelper
*/ */
public function __construct( public function __construct(
\Adyen\Payment\Helper\Requests $adyenRequestsHelper) \Adyen\Payment\Helper\Requests $adyenRequestsHelper
{ ) {
$this->adyenRequestsHelper = $adyenRequestsHelper; $this->adyenRequestsHelper = $adyenRequestsHelper;
} }
...@@ -54,13 +55,13 @@ class CustomerIpDataBuilder implements BuilderInterface ...@@ -54,13 +55,13 @@ class CustomerIpDataBuilder implements BuilderInterface
/** @var \Magento\Payment\Gateway\Data\PaymentDataObject $paymentDataObject */ /** @var \Magento\Payment\Gateway\Data\PaymentDataObject $paymentDataObject */
$paymentDataObject = \Magento\Payment\Gateway\Helper\SubjectReader::readPayment($buildSubject); $paymentDataObject = \Magento\Payment\Gateway\Helper\SubjectReader::readPayment($buildSubject);
$order = $paymentDataObject->getPayment()->getOrder(); $order = $paymentDataObject->getPayment()->getOrder();
$shopperIp = $order-> getRemoteIp(); $shopperIp = $order->getRemoteIp();
if (empty($shopperIp)) { if (empty($shopperIp)) {
$shopperIp = $order-> getXForwardedFor(); $shopperIp = $order->getXForwardedFor();
} }
$request['body'] = $this->adyenRequestsHelper->buildCustomerIpData([], $shopperIp); $request['body'] = $this->adyenRequestsHelper->buildCustomerIpData($shopperIp, []);
return $request; return $request;
} }
......
...@@ -56,7 +56,7 @@ class MerchantAccountDataBuilder implements BuilderInterface ...@@ -56,7 +56,7 @@ class MerchantAccountDataBuilder implements BuilderInterface
$storeId = $order->getStoreId(); $storeId = $order->getStoreId();
$method = $payment->getMethod(); $method = $payment->getMethod();
$request['body'] = $this->adyenRequestsHelper->buildMerchantAccountData([], $method, $storeId); $request['body'] = $this->adyenRequestsHelper->buildMerchantAccountData($method, $storeId, []);
return $request; return $request;
} }
......
...@@ -61,7 +61,9 @@ class OneclickAuthorizationDataBuilder implements BuilderInterface ...@@ -61,7 +61,9 @@ class OneclickAuthorizationDataBuilder implements BuilderInterface
$requestBody['paymentMethod']['type'] = $variant; $requestBody['paymentMethod']['type'] = $variant;
} }
if ($securityCode = $payment->getAdditionalInformation(AdyenOneclickDataAssignObserver::ENCRYPTED_SECURITY_CODE)) { if ($securityCode = $payment->getAdditionalInformation(
AdyenOneclickDataAssignObserver::ENCRYPTED_SECURITY_CODE
)) {
$requestBody['paymentMethod']['encryptedSecurityCode'] = $securityCode; $requestBody['paymentMethod']['encryptedSecurityCode'] = $securityCode;
} }
...@@ -74,7 +76,9 @@ class OneclickAuthorizationDataBuilder implements BuilderInterface ...@@ -74,7 +76,9 @@ class OneclickAuthorizationDataBuilder implements BuilderInterface
} }
$requestBody['shopperInteraction'] = $shopperInteraction; $requestBody['shopperInteraction'] = $shopperInteraction;
$requestBody['paymentMethod']['recurringDetailReference'] = $payment->getAdditionalInformation(AdyenOneclickDataAssignObserver::RECURRING_DETAIL_REFERENCE); $requestBody['paymentMethod']['recurringDetailReference'] = $payment->getAdditionalInformation(
AdyenOneclickDataAssignObserver::RECURRING_DETAIL_REFERENCE
);
// if it is a sepadirectdebit set selectedBrand to sepadirectdebit in the case of oneclick // if it is a sepadirectdebit set selectedBrand to sepadirectdebit in the case of oneclick
if ($payment->getCcType() == "sepadirectdebit") { if ($payment->getCcType() == "sepadirectdebit") {
...@@ -93,7 +97,9 @@ class OneclickAuthorizationDataBuilder implements BuilderInterface ...@@ -93,7 +97,9 @@ class OneclickAuthorizationDataBuilder implements BuilderInterface
// if installments is set add it into the request // if installments is set add it into the request
if ($payment->getAdditionalInformation(AdyenOneclickDataAssignObserver::NUMBER_OF_INSTALLMENTS) > 0) { if ($payment->getAdditionalInformation(AdyenOneclickDataAssignObserver::NUMBER_OF_INSTALLMENTS) > 0) {
$requestBody['installments']['value'] = $payment->getAdditionalInformation(AdyenOneclickDataAssignObserver::NUMBER_OF_INSTALLMENTS); $requestBody['installments']['value'] = $payment->getAdditionalInformation(
AdyenOneclickDataAssignObserver::NUMBER_OF_INSTALLMENTS
);
} }
$request['body'] = $requestBody; $request['body'] = $requestBody;
......
...@@ -20,13 +20,11 @@ ...@@ -20,13 +20,11 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
namespace Adyen\Payment\Gateway\Request; namespace Adyen\Payment\Gateway\Request;
use Magento\Payment\Gateway\Request\BuilderInterface; use Magento\Payment\Gateway\Request\BuilderInterface;
/**
* Payment Data Builder
*/
class PaymentDataBuilder implements BuilderInterface class PaymentDataBuilder implements BuilderInterface
{ {
/** /**
...@@ -43,7 +41,7 @@ class PaymentDataBuilder implements BuilderInterface ...@@ -43,7 +41,7 @@ class PaymentDataBuilder implements BuilderInterface
{ {
$this->adyenRequestsHelper = $adyenRequestsHelper; $this->adyenRequestsHelper = $adyenRequestsHelper;
} }
/** /**
* @param array $buildSubject * @param array $buildSubject
* @return array * @return array
...@@ -62,8 +60,14 @@ class PaymentDataBuilder implements BuilderInterface ...@@ -62,8 +60,14 @@ class PaymentDataBuilder implements BuilderInterface
$reference = $order->getOrderIncrementId(); $reference = $order->getOrderIncrementId();
$paymentMethod = $payment->getMethod(); $paymentMethod = $payment->getMethod();
$request['body'] = $this->adyenRequestsHelper->buildPaymentData([], $amount, $currencyCode, $reference, $paymentMethod); $request['body'] = $this->adyenRequestsHelper->buildPaymentData(
$amount,
$currencyCode,
$reference,
$paymentMethod,
[]
);
return $request; return $request;
} }
} }
...@@ -51,7 +51,6 @@ class RecurringDataBuilder implements BuilderInterface ...@@ -51,7 +51,6 @@ class RecurringDataBuilder implements BuilderInterface
$this->adyenRequestsHelper = $adyenRequestsHelper; $this->adyenRequestsHelper = $adyenRequestsHelper;
} }
/** /**
* @param array $buildSubject * @param array $buildSubject
* @return array * @return array
...@@ -65,7 +64,12 @@ class RecurringDataBuilder implements BuilderInterface ...@@ -65,7 +64,12 @@ class RecurringDataBuilder implements BuilderInterface
$storeId = $payment->getOrder()->getStoreId(); $storeId = $payment->getOrder()->getStoreId();
$areaCode = $this->appState->getAreaCode(); $areaCode = $this->appState->getAreaCode();
$additionalInformation = $payment->getAdditionalInformation(); $additionalInformation = $payment->getAdditionalInformation();
$request['body'] = $this->adyenRequestsHelper->buildRecurringData([], $areaCode, $storeId, $additionalInformation); $request['body'] = $this->adyenRequestsHelper->buildRecurringData(
$areaCode,
$storeId,
$additionalInformation,
[]
);
return $request; return $request;
} }
} }
...@@ -30,7 +30,6 @@ use Magento\Payment\Gateway\Request\BuilderInterface; ...@@ -30,7 +30,6 @@ use Magento\Payment\Gateway\Request\BuilderInterface;
*/ */
class RefundDataBuilder implements BuilderInterface class RefundDataBuilder implements BuilderInterface
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
...@@ -48,6 +47,7 @@ class RefundDataBuilder implements BuilderInterface ...@@ -48,6 +47,7 @@ class RefundDataBuilder implements BuilderInterface
/** /**
* RefundDataBuilder constructor. * RefundDataBuilder constructor.
*
* @param \Adyen\Payment\Helper\Data $adyenHelper * @param \Adyen\Payment\Helper\Data $adyenHelper
* @param \Adyen\Payment\Model\ResourceModel\Order\Payment\CollectionFactory $orderPaymentCollectionFactory * @param \Adyen\Payment\Model\ResourceModel\Order\Payment\CollectionFactory $orderPaymentCollectionFactory
*/ */
...@@ -80,7 +80,6 @@ class RefundDataBuilder implements BuilderInterface ...@@ -80,7 +80,6 @@ class RefundDataBuilder implements BuilderInterface
$merchantAccount = $this->adyenHelper->getAdyenMerchantAccount($method, $storeId); $merchantAccount = $this->adyenHelper->getAdyenMerchantAccount($method, $storeId);
$grandTotal = $payment->getOrder()->getGrandTotal(); $grandTotal = $payment->getOrder()->getGrandTotal();
// check if it contains a split payment // check if it contains a split payment
$orderPaymentCollection = $this->orderPaymentCollectionFactory $orderPaymentCollection = $this->orderPaymentCollectionFactory
->create() ->create()
......
...@@ -51,7 +51,6 @@ class ThreeDS2DataBuilder implements BuilderInterface ...@@ -51,7 +51,6 @@ class ThreeDS2DataBuilder implements BuilderInterface
$this->adyenRequestsHelper = $adyenRequestsHelper; $this->adyenRequestsHelper = $adyenRequestsHelper;
} }
/** /**
* @param array $buildSubject * @param array $buildSubject
* @return array * @return array
...@@ -64,7 +63,11 @@ class ThreeDS2DataBuilder implements BuilderInterface ...@@ -64,7 +63,11 @@ class ThreeDS2DataBuilder implements BuilderInterface
$payment = $paymentDataObject->getPayment(); $payment = $paymentDataObject->getPayment();
$order = $paymentDataObject->getOrder(); $order = $paymentDataObject->getOrder();
$additionalInformation = $payment->getAdditionalInformation(); $additionalInformation = $payment->getAdditionalInformation();
$request['body'] = $this->adyenRequestsHelper->buildThreeDS2Data([], $additionalInformation, $order->getStoreId()); $request['body'] = $this->adyenRequestsHelper->buildThreeDS2Data(
$additionalInformation,
$order->getStoreId(),
[]
);
return $request; return $request;
} }
} }
...@@ -54,7 +54,7 @@ class VaultDataBuilder implements BuilderInterface ...@@ -54,7 +54,7 @@ class VaultDataBuilder implements BuilderInterface
$payment = $paymentDataObject->getPayment(); $payment = $paymentDataObject->getPayment();
$additionalInformation = $payment->getAdditionalInformation(); $additionalInformation = $payment->getAdditionalInformation();
$request['body'] = $this->adyenRequestsHelper->buildVaultData([], $additionalInformation); $request['body'] = $this->adyenRequestsHelper->buildVaultData($additionalInformation, []);
return $request; return $request;
} }
......
...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Response\HandlerInterface; ...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Response\HandlerInterface;
class CheckoutPaymentCommentHistoryHandler implements HandlerInterface class CheckoutPaymentCommentHistoryHandler implements HandlerInterface
{ {
/** /**
* @param array $handlingSubject * @param array $handlingSubject
* @param array $response * @param array $response
...@@ -40,7 +39,7 @@ class CheckoutPaymentCommentHistoryHandler implements HandlerInterface ...@@ -40,7 +39,7 @@ class CheckoutPaymentCommentHistoryHandler implements HandlerInterface
/** @var OrderPaymentInterface $payment */ /** @var OrderPaymentInterface $payment */
$payment = $payment->getPayment(); $payment = $payment->getPayment();
$comment = __("Adyen Result response:"); $comment = __("Adyen Result response:");
if (isset($response['resultCode'])) { if (isset($response['resultCode'])) {
$responseCode = $response['resultCode']; $responseCode = $response['resultCode'];
...@@ -60,12 +59,12 @@ class CheckoutPaymentCommentHistoryHandler implements HandlerInterface ...@@ -60,12 +59,12 @@ class CheckoutPaymentCommentHistoryHandler implements HandlerInterface
} }
if ($responseCode) { if ($responseCode) {
$comment .= '<br /> ' . __('authResult:') . ' ' . $responseCode; $comment .= '<br /> ' . __('authResult:') . ' ' . $responseCode;
$payment->getOrder()->setAdyenResulturlEventCode($responseCode); $payment->getOrder()->setAdyenResulturlEventCode($responseCode);
} }
if ($pspReference) { if ($pspReference) {
$comment .= '<br /> ' . __('pspReference:') . ' ' . $pspReference; $comment .= '<br /> ' . __('pspReference:') . ' ' . $pspReference;
} }
$payment->getOrder()->addStatusHistoryComment($comment); $payment->getOrder()->addStatusHistoryComment($comment);
......
...@@ -27,13 +27,11 @@ use Magento\Payment\Gateway\Response\HandlerInterface; ...@@ -27,13 +27,11 @@ use Magento\Payment\Gateway\Response\HandlerInterface;
class CheckoutPaymentsDetailsHandler implements HandlerInterface class CheckoutPaymentsDetailsHandler implements HandlerInterface
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
protected $adyenHelper; protected $adyenHelper;
public function __construct( public function __construct(
\Adyen\Payment\Helper\Data $adyenHelper \Adyen\Payment\Helper\Data $adyenHelper
) { ) {
......
...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Response\HandlerInterface; ...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Response\HandlerInterface;
class PaymentCommentHistoryHandler implements HandlerInterface class PaymentCommentHistoryHandler implements HandlerInterface
{ {
/** /**
* @param array $handlingSubject * @param array $handlingSubject
* @param array $response * @param array $response
......
...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Response\HandlerInterface; ...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Response\HandlerInterface;
class PaymentCommentHistoryRefundHandler implements HandlerInterface class PaymentCommentHistoryRefundHandler implements HandlerInterface
{ {
/** /**
* @param array $handlingSubject * @param array $handlingSubject
* @param array $response * @param array $response
......
...@@ -91,7 +91,8 @@ class PaymentPosCloudHandler implements HandlerInterface ...@@ -91,7 +91,8 @@ class PaymentPosCloudHandler implements HandlerInterface
!empty($paymentResponse['PaymentResult']['PaymentInstrumentData']['CardData']) !empty($paymentResponse['PaymentResult']['PaymentInstrumentData']['CardData'])
) { ) {
$maskedPan = $paymentResponse['PaymentResult']['PaymentInstrumentData']['CardData']['MaskedPan']; $maskedPan = $paymentResponse['PaymentResult']['PaymentInstrumentData']['CardData']['MaskedPan'];
$expiryDate = $paymentResponse['PaymentResult']['PaymentInstrumentData']['CardData']['SensitiveCardData']['ExpiryDate']; // 1225 $expiryDate = $paymentResponse['PaymentResult']['PaymentInstrumentData']['CardData']
['SensitiveCardData']['ExpiryDate']; // 1225
$expiryDate = substr($expiryDate, 0, 2) . '/' . substr($expiryDate, 2, 2); $expiryDate = substr($expiryDate, 0, 2) . '/' . substr($expiryDate, 2, 2);
$brand = $paymentResponse['PaymentResult']['PaymentInstrumentData']['CardData']['PaymentBrand']; $brand = $paymentResponse['PaymentResult']['PaymentInstrumentData']['CardData']['PaymentBrand'];
...@@ -113,8 +114,10 @@ class PaymentPosCloudHandler implements HandlerInterface ...@@ -113,8 +114,10 @@ class PaymentPosCloudHandler implements HandlerInterface
} }
// set transaction(status) // set transaction(status)
if (!empty($paymentResponse['PaymentResult']['PaymentAcquirerData']['AcquirerTransactionID']['TransactionID'])) { if (!empty($paymentResponse['PaymentResult']['PaymentAcquirerData']['AcquirerTransactionID']['TransactionID']))
$pspReference = $paymentResponse['PaymentResult']['PaymentAcquirerData']['AcquirerTransactionID']['TransactionID']; {
$pspReference = $paymentResponse['PaymentResult']['PaymentAcquirerData']
['AcquirerTransactionID']['TransactionID'];
$payment->setTransactionId($pspReference); $payment->setTransactionId($pspReference);
// set transaction(payment) // set transaction(payment)
} else { } else {
......
...@@ -34,12 +34,11 @@ use Magento\Vault\Api\PaymentTokenRepositoryInterface; ...@@ -34,12 +34,11 @@ use Magento\Vault\Api\PaymentTokenRepositoryInterface;
class VaultDetailsHandler implements HandlerInterface class VaultDetailsHandler implements HandlerInterface
{ {
const RECURRING_DETAIL_REFERENCE = 'recurring.recurringDetailReference'; const RECURRING_DETAIL_REFERENCE = 'recurring.recurringDetailReference';
const CARD_SUMMARY = 'cardSummary'; const CARD_SUMMARY = 'cardSummary';
const EXPIRY_DATE = 'expiryDate'; const EXPIRY_DATE = 'expiryDate';
const PAYMENT_METHOD = 'paymentMethod'; const PAYMENT_METHOD = 'paymentMethod';
const ADDITIONAL_DATA_ERRORS = array( const ADDITIONAL_DATA_ERRORS = [
self::RECURRING_DETAIL_REFERENCE => 'Missing Token in Result please enable in ' . self::RECURRING_DETAIL_REFERENCE => 'Missing Token in Result please enable in ' .
'Settings -> API URLs and Response menu in the Adyen Customer Area Recurring details setting', 'Settings -> API URLs and Response menu in the Adyen Customer Area Recurring details setting',
self::CARD_SUMMARY => 'Missing cardSummary in Result please login to the adyen portal ' . self::CARD_SUMMARY => 'Missing cardSummary in Result please login to the adyen portal ' .
...@@ -48,7 +47,7 @@ class VaultDetailsHandler implements HandlerInterface ...@@ -48,7 +47,7 @@ class VaultDetailsHandler implements HandlerInterface
'Settings -> API URLs and Response and enable the Expiry date property', 'Settings -> API URLs and Response and enable the Expiry date property',
self::PAYMENT_METHOD => 'Missing paymentMethod in Result please login to the adyen portal and go to ' . self::PAYMENT_METHOD => 'Missing paymentMethod in Result please login to the adyen portal and go to ' .
'Settings -> API URLs and Response and enable the Variant property' 'Settings -> API URLs and Response and enable the Variant property'
); ];
/** /**
* @var PaymentTokenFactoryInterface * @var PaymentTokenFactoryInterface
...@@ -117,8 +116,10 @@ class VaultDetailsHandler implements HandlerInterface ...@@ -117,8 +116,10 @@ class VaultDetailsHandler implements HandlerInterface
$extensionAttributes->setVaultPaymentToken($paymentToken); $extensionAttributes->setVaultPaymentToken($paymentToken);
} else { } else {
$this->adyenLogger->error( $this->adyenLogger->error(
sprintf('Failure trying to save credit card token in vault for order %s', sprintf(
$payment->getOrder()->getIncrementId()) 'Failure trying to save credit card token in vault for order %s',
$payment->getOrder()->getIncrementId()
)
); );
} }
} }
...@@ -133,7 +134,6 @@ class VaultDetailsHandler implements HandlerInterface ...@@ -133,7 +134,6 @@ class VaultDetailsHandler implements HandlerInterface
*/ */
private function getVaultPaymentToken(array $response, $payment) private function getVaultPaymentToken(array $response, $payment)
{ {
if (empty($response['additionalData'])) { if (empty($response['additionalData'])) {
return null; return null;
} }
...@@ -150,15 +150,17 @@ class VaultDetailsHandler implements HandlerInterface ...@@ -150,15 +150,17 @@ class VaultDetailsHandler implements HandlerInterface
} }
try { try {
// Check if paymentToken exists already // Check if paymentToken exists already
$paymentToken = $this->paymentTokenManagement->getByGatewayToken($additionalData[self::RECURRING_DETAIL_REFERENCE], $paymentToken = $this->paymentTokenManagement->getByGatewayToken(
$payment->getMethodInstance()->getCode(), $payment->getOrder()->getCustomerId()); $additionalData[self::RECURRING_DETAIL_REFERENCE],
$payment->getMethodInstance()->getCode(),
$payment->getOrder()->getCustomerId()
);
$paymentTokenSaveRequired = false; $paymentTokenSaveRequired = false;
// In case the payment token does not exist, create it based on the additionalData // In case the payment token does not exist, create it based on the additionalData
if (is_null($paymentToken)) { if ($paymentToken === null) {
/** @var PaymentTokenInterface $paymentToken */ /** @var PaymentTokenInterface $paymentToken */
$paymentToken = $this->paymentTokenFactory->create( $paymentToken = $this->paymentTokenFactory->create(
PaymentTokenFactoryInterface::TOKEN_TYPE_CREDIT_CARD PaymentTokenFactoryInterface::TOKEN_TYPE_CREDIT_CARD
...@@ -226,6 +228,7 @@ class VaultDetailsHandler implements HandlerInterface ...@@ -226,6 +228,7 @@ class VaultDetailsHandler implements HandlerInterface
/** /**
* Get payment extension attributes * Get payment extension attributes
*
* @param InfoInterface $payment * @param InfoInterface $payment
* @return OrderPaymentExtensionInterface * @return OrderPaymentExtensionInterface
*/ */
...@@ -238,4 +241,4 @@ class VaultDetailsHandler implements HandlerInterface ...@@ -238,4 +241,4 @@ class VaultDetailsHandler implements HandlerInterface
} }
return $extensionAttributes; return $extensionAttributes;
} }
} }
\ No newline at end of file
...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Validator\AbstractValidator; ...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Validator\AbstractValidator;
class CancelResponseValidator extends AbstractValidator class CancelResponseValidator extends AbstractValidator
{ {
/** /**
* @var \Adyen\Payment\Logger\AdyenLogger * @var \Adyen\Payment\Logger\AdyenLogger
*/ */
......
...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Validator\AbstractValidator; ...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Validator\AbstractValidator;
class CaptureResponseValidator extends AbstractValidator class CaptureResponseValidator extends AbstractValidator
{ {
/** /**
* @var \Adyen\Payment\Logger\AdyenLogger * @var \Adyen\Payment\Logger\AdyenLogger
*/ */
......
...@@ -35,7 +35,7 @@ class CheckoutResponseValidator extends AbstractValidator ...@@ -35,7 +35,7 @@ class CheckoutResponseValidator extends AbstractValidator
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
private $adyenHelper; private $adyenHelper;
/** /**
* GeneralResponseValidator constructor. * GeneralResponseValidator constructor.
...@@ -71,12 +71,18 @@ class CheckoutResponseValidator extends AbstractValidator ...@@ -71,12 +71,18 @@ class CheckoutResponseValidator extends AbstractValidator
switch ($response['resultCode']) { switch ($response['resultCode']) {
case "IdentifyShopper": case "IdentifyShopper":
$payment->setAdditionalInformation('threeDSType', $response['resultCode']); $payment->setAdditionalInformation('threeDSType', $response['resultCode']);
$payment->setAdditionalInformation('threeDS2Token', $response['authentication']['threeds2.fingerprintToken']); $payment->setAdditionalInformation(
'threeDS2Token',
$response['authentication']['threeds2.fingerprintToken']
);
$payment->setAdditionalInformation('threeDS2PaymentData', $response['paymentData']); $payment->setAdditionalInformation('threeDS2PaymentData', $response['paymentData']);
break; break;
case "ChallengeShopper": case "ChallengeShopper":
$payment->setAdditionalInformation('threeDSType', $response['resultCode']); $payment->setAdditionalInformation('threeDSType', $response['resultCode']);
$payment->setAdditionalInformation('threeDS2Token', $response['authentication']['threeds2.challengeToken']); $payment->setAdditionalInformation(
'threeDS2Token',
$response['authentication']['threeds2.challengeToken']
);
$payment->setAdditionalInformation('threeDS2PaymentData', $response['paymentData']); $payment->setAdditionalInformation('threeDS2PaymentData', $response['paymentData']);
break; break;
case "Authorised": case "Authorised":
...@@ -89,7 +95,8 @@ class CheckoutResponseValidator extends AbstractValidator ...@@ -89,7 +95,8 @@ class CheckoutResponseValidator extends AbstractValidator
} }
} }
} elseif (!empty($response['additionalData']['comprafacil.entity'])) { } elseif (!empty($response['additionalData']['comprafacil.entity'])) {
//Multibanco resultCode has changed after checkout v49 and comprafacil.entity is not received anymore //Multibanco resultCode has changed after checkout v49 and
// comprafacil.entity is not received anymore
foreach ($response['additionalData'] as $key => $value) { foreach ($response['additionalData'] as $key => $value) {
if (strpos($key, 'comprafacil') === 0) { if (strpos($key, 'comprafacil') === 0) {
$payment->setAdditionalInformation($key, $value); $payment->setAdditionalInformation($key, $value);
...@@ -99,7 +106,9 @@ class CheckoutResponseValidator extends AbstractValidator ...@@ -99,7 +106,9 @@ class CheckoutResponseValidator extends AbstractValidator
// Save cc_type if available in the response // Save cc_type if available in the response
if (!empty($response['additionalData']['paymentMethod'])) { if (!empty($response['additionalData']['paymentMethod'])) {
$ccType = $this->adyenHelper->getMagentoCreditCartType($response['additionalData']['paymentMethod']); $ccType = $this->adyenHelper->getMagentoCreditCartType(
$response['additionalData']['paymentMethod']
);
$payment->setAdditionalInformation('cc_type', $ccType); $payment->setAdditionalInformation('cc_type', $ccType);
$payment->setCcType($ccType); $payment->setCcType($ccType);
} }
...@@ -114,7 +123,6 @@ class CheckoutResponseValidator extends AbstractValidator ...@@ -114,7 +123,6 @@ class CheckoutResponseValidator extends AbstractValidator
} }
break; break;
case "RedirectShopper": case "RedirectShopper":
$payment->setAdditionalInformation('threeDSType', $response['resultCode']); $payment->setAdditionalInformation('threeDSType', $response['resultCode']);
$redirectUrl = null; $redirectUrl = null;
...@@ -134,7 +142,6 @@ class CheckoutResponseValidator extends AbstractValidator ...@@ -134,7 +142,6 @@ class CheckoutResponseValidator extends AbstractValidator
// If the redirect data is there then the payment is a card payment with 3d secure // If the redirect data is there then the payment is a card payment with 3d secure
if (isset($response['redirect']['data']['PaReq']) && isset($response['redirect']['data']['MD'])) { if (isset($response['redirect']['data']['PaReq']) && isset($response['redirect']['data']['MD'])) {
$paReq = null; $paReq = null;
$md = null; $md = null;
...@@ -160,7 +167,8 @@ class CheckoutResponseValidator extends AbstractValidator ...@@ -160,7 +167,8 @@ class CheckoutResponseValidator extends AbstractValidator
$this->adyenLogger->error($errorMsg); $this->adyenLogger->error($errorMsg);
$errorMessages[] = $errorMsg; $errorMessages[] = $errorMsg;
} }
// otherwise it is an alternative payment method which only requires the redirect url to be present // otherwise it is an alternative payment method which only requires the
// redirect url to be present
} else { } else {
// Flag to show we are in the checkoutAPM flow // Flag to show we are in the checkoutAPM flow
$payment->setAdditionalInformation('checkoutAPM', true); $payment->setAdditionalInformation('checkoutAPM', true);
...@@ -175,11 +183,10 @@ class CheckoutResponseValidator extends AbstractValidator ...@@ -175,11 +183,10 @@ class CheckoutResponseValidator extends AbstractValidator
} else { } else {
$isValid = false; $isValid = false;
$errorMsg = __('Payment method is not valid.'); $errorMsg = __('Payment method is not valid.');
$this->adyenLogger->error($errorMsg);; $this->adyenLogger->error($errorMsg);
$errorMessages[] = $errorMsg; $errorMessages[] = $errorMsg;
} }
} }
break; break;
case "Refused": case "Refused":
$errorMsg = __('The payment is REFUSED.'); $errorMsg = __('The payment is REFUSED.');
......
...@@ -75,7 +75,9 @@ class GeneralResponseValidator extends AbstractValidator ...@@ -75,7 +75,9 @@ class GeneralResponseValidator extends AbstractValidator
// Save cc_type if available in the response // Save cc_type if available in the response
if (!empty($response['additionalData']['paymentMethod'])) { if (!empty($response['additionalData']['paymentMethod'])) {
$ccType = $this->adyenHelper->getMagentoCreditCartType($response['additionalData']['paymentMethod']); $ccType = $this->adyenHelper->getMagentoCreditCartType(
$response['additionalData']['paymentMethod']
);
$payment->setAdditionalInformation('cc_type', $ccType); $payment->setAdditionalInformation('cc_type', $ccType);
$payment->setCcType($ccType); $payment->setCcType($ccType);
} }
......
...@@ -51,6 +51,7 @@ class InstallmentValidator extends AbstractValidator ...@@ -51,6 +51,7 @@ class InstallmentValidator extends AbstractValidator
/** /**
* InstallmentValidator constructor. * InstallmentValidator constructor.
*
* @param \Magento\Payment\Gateway\Validator\ResultInterfaceFactory $resultFactory * @param \Magento\Payment\Gateway\Validator\ResultInterfaceFactory $resultFactory
* @param \Adyen\Payment\Logger\AdyenLogger $adyenLogger * @param \Adyen\Payment\Logger\AdyenLogger $adyenLogger
* @param \Adyen\Payment\Helper\Data $adyenHelper * @param \Adyen\Payment\Helper\Data $adyenHelper
...@@ -63,7 +64,6 @@ class InstallmentValidator extends AbstractValidator ...@@ -63,7 +64,6 @@ class InstallmentValidator extends AbstractValidator
\Adyen\Payment\Helper\Data $adyenHelper, \Adyen\Payment\Helper\Data $adyenHelper,
\Magento\Framework\Serialize\SerializerInterface $serializer, \Magento\Framework\Serialize\SerializerInterface $serializer,
\Magento\Quote\Model\QuoteRepository $quoteRepository \Magento\Quote\Model\QuoteRepository $quoteRepository
) { ) {
$this->adyenLogger = $adyenLogger; $this->adyenLogger = $adyenLogger;
$this->adyenHelper = $adyenHelper; $this->adyenHelper = $adyenHelper;
...@@ -72,7 +72,6 @@ class InstallmentValidator extends AbstractValidator ...@@ -72,7 +72,6 @@ class InstallmentValidator extends AbstractValidator
parent::__construct($resultFactory); parent::__construct($resultFactory);
} }
public function validate(array $validationSubject) public function validate(array $validationSubject)
{ {
$isValid = true; $isValid = true;
......
...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Validator\AbstractValidator; ...@@ -27,7 +27,6 @@ use Magento\Payment\Gateway\Validator\AbstractValidator;
class RefundResponseValidator extends AbstractValidator class RefundResponseValidator extends AbstractValidator
{ {
/** /**
* @var \Adyen\Payment\Logger\AdyenLogger * @var \Adyen\Payment\Logger\AdyenLogger
*/ */
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
// phpcs:disable Generic.CodeAnalysis.UselessOverridingMethod
namespace Adyen\Payment\Gateway\Validator; namespace Adyen\Payment\Gateway\Validator;
use Magento\Payment\Gateway\Validator\AbstractValidator; use Magento\Payment\Gateway\Validator\AbstractValidator;
...@@ -62,13 +62,19 @@ class ThreeDS2ResponseValidator extends AbstractValidator ...@@ -62,13 +62,19 @@ class ThreeDS2ResponseValidator extends AbstractValidator
!empty($response['authentication']['threeds2.fingerprintToken']) !empty($response['authentication']['threeds2.fingerprintToken'])
) { ) {
$payment->setAdditionalInformation('threeDSType', $response['resultCode']); $payment->setAdditionalInformation('threeDSType', $response['resultCode']);
$payment->setAdditionalInformation('threeDS2Token', $response['authentication']['threeds2.fingerprintToken']); $payment->setAdditionalInformation(
'threeDS2Token',
$response['authentication']['threeds2.fingerprintToken']
);
$payment->setAdditionalInformation('threeDS2PaymentData', $response['paymentData']); $payment->setAdditionalInformation('threeDS2PaymentData', $response['paymentData']);
} elseif ($response['resultCode'] == "ChallengeShopper" && } elseif ($response['resultCode'] == "ChallengeShopper" &&
!empty($response['authentication']['threeds2.challengeToken']) !empty($response['authentication']['threeds2.challengeToken'])
) { ) {
$payment->setAdditionalInformation('threeDSType', $response['resultCode']); $payment->setAdditionalInformation('threeDSType', $response['resultCode']);
$payment->setAdditionalInformation('threeDS2Token', $response['authentication']['threeds2.challengeToken']); $payment->setAdditionalInformation(
'threeDS2Token',
$response['authentication']['threeds2.challengeToken']
);
$payment->setAdditionalInformation('threeDS2PaymentData', $response['paymentData']); $payment->setAdditionalInformation('threeDS2PaymentData', $response['paymentData']);
} else { } else {
$errorMsg = __('Error with payment method please select different payment method.'); $errorMsg = __('Error with payment method please select different payment method.');
......
...@@ -27,7 +27,6 @@ use Magento\Framework\App\Config\ScopeConfigInterface; ...@@ -27,7 +27,6 @@ use Magento\Framework\App\Config\ScopeConfigInterface;
class Config class Config
{ {
const XML_PAYMENT_PREFIX = "payment"; const XML_PAYMENT_PREFIX = "payment";
const XML_ADYEN_ABSTRACT_PREFIX = "adyen_abstract"; const XML_ADYEN_ABSTRACT_PREFIX = "adyen_abstract";
const XML_NOTIFICATIONS_CAN_CANCEL_FIELD = "notifications_can_cancel"; const XML_NOTIFICATIONS_CAN_CANCEL_FIELD = "notifications_can_cancel";
...@@ -39,6 +38,7 @@ class Config ...@@ -39,6 +38,7 @@ class Config
/** /**
* Config constructor. * Config constructor.
*
* @param Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
*/ */
public function __construct( public function __construct(
......
...@@ -144,6 +144,7 @@ class Data extends AbstractHelper ...@@ -144,6 +144,7 @@ class Data extends AbstractHelper
/** /**
* Data constructor. * Data constructor.
*
* @param \Magento\Framework\App\Helper\Context $context * @param \Magento\Framework\App\Helper\Context $context
* @param \Magento\Framework\Encryption\EncryptorInterface $encryptor * @param \Magento\Framework\Encryption\EncryptorInterface $encryptor
* @param \Magento\Framework\Config\DataInterface $dataStorage * @param \Magento\Framework\Config\DataInterface $dataStorage
...@@ -216,6 +217,7 @@ class Data extends AbstractHelper ...@@ -216,6 +217,7 @@ class Data extends AbstractHelper
/** /**
* return recurring types for configuration setting * return recurring types for configuration setting
*
* @return array * @return array
*/ */
public function getRecurringTypes() public function getRecurringTypes()
...@@ -229,6 +231,7 @@ class Data extends AbstractHelper ...@@ -229,6 +231,7 @@ class Data extends AbstractHelper
/** /**
* return recurring types for configuration setting * return recurring types for configuration setting
*
* @return array * @return array
*/ */
public function getModes() public function getModes()
...@@ -241,6 +244,7 @@ class Data extends AbstractHelper ...@@ -241,6 +244,7 @@ class Data extends AbstractHelper
/** /**
* return recurring types for configuration setting * return recurring types for configuration setting
*
* @return array * @return array
*/ */
public function getCaptureModes() public function getCaptureModes()
...@@ -253,6 +257,7 @@ class Data extends AbstractHelper ...@@ -253,6 +257,7 @@ class Data extends AbstractHelper
/** /**
* return recurring types for configuration setting * return recurring types for configuration setting
*
* @return array * @return array
*/ */
public function getPaymentRoutines() public function getPaymentRoutines()
...@@ -265,6 +270,7 @@ class Data extends AbstractHelper ...@@ -265,6 +270,7 @@ class Data extends AbstractHelper
/** /**
* Return the number of decimals for the specified currency * Return the number of decimals for the specified currency
*
* @param $currency * @param $currency
* @return int * @return int
*/ */
...@@ -305,6 +311,7 @@ class Data extends AbstractHelper ...@@ -305,6 +311,7 @@ class Data extends AbstractHelper
/** /**
* Return the formatted amount. Adyen accepts the currency in multiple formats. * Return the formatted amount. Adyen accepts the currency in multiple formats.
*
* @param $amount * @param $amount
* @param $currency * @param $currency
* @return int * @return int
...@@ -314,7 +321,6 @@ class Data extends AbstractHelper ...@@ -314,7 +321,6 @@ class Data extends AbstractHelper
return (int)number_format($amount, $this->decimalNumbers($currency), '', ''); return (int)number_format($amount, $this->decimalNumbers($currency), '', '');
} }
/** /**
* Tax Percentage needs to be in minor units for Adyen * Tax Percentage needs to be in minor units for Adyen
* *
...@@ -376,6 +382,7 @@ class Data extends AbstractHelper ...@@ -376,6 +382,7 @@ class Data extends AbstractHelper
/** /**
* Street format * Street format
*
* @param type $address * @param type $address
* @return array * @return array
*/ */
...@@ -385,7 +392,7 @@ class Data extends AbstractHelper ...@@ -385,7 +392,7 @@ class Data extends AbstractHelper
return false; return false;
} }
$street = self::formatStreet($address->getStreet()); $street = $this->formatStreet($address->getStreet());
$streetName = $street['0']; $streetName = $street['0'];
unset($street['0']); unset($street['0']);
$streetNr = implode(' ', $street); $streetNr = implode(' ', $street);
...@@ -394,12 +401,13 @@ class Data extends AbstractHelper ...@@ -394,12 +401,13 @@ class Data extends AbstractHelper
/** /**
* Street format * Street format
*
* @param string $streetLine * @param string $streetLine
* @return array * @return array
*/ */
public function getStreetFromString($streetLine) public function getStreetFromString($streetLine)
{ {
$street = self::formatStreet([$streetLine]); $street = $this->formatStreet([$streetLine]);
$streetName = $street['0']; $streetName = $street['0'];
unset($street['0']); unset($street['0']);
$streetNr = implode(' ', $street); $streetNr = implode(' ', $street);
...@@ -408,11 +416,12 @@ class Data extends AbstractHelper ...@@ -408,11 +416,12 @@ class Data extends AbstractHelper
/** /**
* Fix this one string street + number * Fix this one string street + number
* @example street + number *
* @param array $street * @param array $street
* @return array $street * @return array $street
* @example street + number
*/ */
public static function formatStreet($street) public function formatStreet($street)
{ {
if (count($street) != 1) { if (count($street) != 1) {
return $street; return $street;
...@@ -430,7 +439,6 @@ class Data extends AbstractHelper ...@@ -430,7 +439,6 @@ class Data extends AbstractHelper
return $street; return $street;
} }
/** /**
* gives back global configuration values * gives back global configuration values
* *
...@@ -741,15 +749,23 @@ class Data extends AbstractHelper ...@@ -741,15 +749,23 @@ class Data extends AbstractHelper
public function getAPIKey($storeId = null) public function getAPIKey($storeId = null)
{ {
if ($this->isDemoMode($storeId)) { if ($this->isDemoMode($storeId)) {
$apiKey = $this->_encryptor->decrypt(trim($this->getAdyenAbstractConfigData( $apiKey = $this->_encryptor->decrypt(
'api_key_test', trim(
$storeId $this->getAdyenAbstractConfigData(
))); 'api_key_test',
$storeId
)
)
);
} else { } else {
$apiKey = $this->_encryptor->decrypt(trim($this->getAdyenAbstractConfigData( $apiKey = $this->_encryptor->decrypt(
'api_key_live', trim(
$storeId $this->getAdyenAbstractConfigData(
))); 'api_key_live',
$storeId
)
)
);
} }
return $apiKey; return $apiKey;
} }
...@@ -809,6 +825,7 @@ class Data extends AbstractHelper ...@@ -809,6 +825,7 @@ class Data extends AbstractHelper
/** /**
* Creditcard type that is selected is different from creditcard type that we get back from the request this * Creditcard type that is selected is different from creditcard type that we get back from the request this
* function get the magento creditcard type this is needed for getting settings like installments * function get the magento creditcard type this is needed for getting settings like installments
*
* @param $ccType * @param $ccType
* @return mixed * @return mixed
*/ */
...@@ -882,8 +899,10 @@ class Data extends AbstractHelper ...@@ -882,8 +899,10 @@ class Data extends AbstractHelper
*/ */
public function getModuleVersion() public function getModuleVersion()
{ {
$moduleDir = $this->componentRegistrar->getPath(\Magento\Framework\Component\ComponentRegistrar::MODULE, $moduleDir = $this->componentRegistrar->getPath(
'Adyen_Payment'); \Magento\Framework\Component\ComponentRegistrar::MODULE,
'Adyen_Payment'
);
$composerJson = file_get_contents($moduleDir . '/composer.json'); $composerJson = file_get_contents($moduleDir . '/composer.json');
$composerJson = json_decode($composerJson, true); $composerJson = json_decode($composerJson, true);
...@@ -1154,6 +1173,7 @@ class Data extends AbstractHelper ...@@ -1154,6 +1173,7 @@ class Data extends AbstractHelper
/** /**
* Format Magento locale codes with undersocre to ISO locale codes with dash * Format Magento locale codes with undersocre to ISO locale codes with dash
*
* @param $localeCode * @param $localeCode
*/ */
public function formatLocaleCode($localeCode) public function formatLocaleCode($localeCode)
...@@ -1357,9 +1377,11 @@ class Data extends AbstractHelper ...@@ -1357,9 +1377,11 @@ class Data extends AbstractHelper
$formFields['openinvoicedata.' . $linename . '.itemVatPercentage'] = $itemVatPercentage; $formFields['openinvoicedata.' . $linename . '.itemVatPercentage'] = $itemVatPercentage;
$formFields['openinvoicedata.' . $linename . '.numberOfItems'] = $numberOfItems; $formFields['openinvoicedata.' . $linename . '.numberOfItems'] = $numberOfItems;
if ($this->isVatCategoryHigh($payment->getAdditionalInformation( if ($this->isVatCategoryHigh(
\Adyen\Payment\Observer\AdyenHppDataAssignObserver::BRAND_CODE $payment->getAdditionalInformation(
)) \Adyen\Payment\Observer\AdyenHppDataAssignObserver::BRAND_CODE
)
)
) { ) {
$formFields['openinvoicedata.' . $linename . '.vatCategory'] = "High"; $formFields['openinvoicedata.' . $linename . '.vatCategory'] = "High";
} else { } else {
...@@ -1438,7 +1460,8 @@ class Data extends AbstractHelper ...@@ -1438,7 +1460,8 @@ class Data extends AbstractHelper
$formattedHtml .= "<td class='terminal-api-receipt-name'>&nbsp;</td>"; $formattedHtml .= "<td class='terminal-api-receipt-name'>&nbsp;</td>";
} }
if (!empty($textParts['value'])) { if (!empty($textParts['value'])) {
$formattedHtml .= "<td class='terminal-api-receipt-value' align='right'>" . $textParts['value'] . "</td>"; $formattedHtml .= "<td class='terminal-api-receipt-value' align='right'>"
. $textParts['value'] . "</td>";
} else { } else {
$formattedHtml .= "<td class='terminal-api-receipt-value' align='right'>&nbsp;</td>"; $formattedHtml .= "<td class='terminal-api-receipt-value' align='right'>&nbsp;</td>";
} }
...@@ -1512,7 +1535,7 @@ class Data extends AbstractHelper ...@@ -1512,7 +1535,7 @@ class Data extends AbstractHelper
public function getOrigin() public function getOrigin()
{ {
$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$state = $objectManager->get('Magento\Framework\App\State'); $state = $objectManager->get(\Magento\Framework\App\State::class);
$baseUrl = $this->storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_WEB); $baseUrl = $this->storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_WEB);
if ('adminhtml' === $state->getAreaCode()) { if ('adminhtml' === $state->getAreaCode()) {
$baseUrl = $this->helperBackend->getHomePageUrl(); $baseUrl = $this->helperBackend->getHomePageUrl();
...@@ -1644,7 +1667,6 @@ class Data extends AbstractHelper ...@@ -1644,7 +1667,6 @@ class Data extends AbstractHelper
$additionalData['recurring.recurringDetailReference'] $additionalData['recurring.recurringDetailReference']
); );
} else { } else {
$billingAgreement->setIsObjectChanged(true); $billingAgreement->setIsObjectChanged(true);
$message = __( $message = __(
'Updated billing agreement #%1.', 'Updated billing agreement #%1.',
...@@ -1659,12 +1681,10 @@ class Data extends AbstractHelper ...@@ -1659,12 +1681,10 @@ class Data extends AbstractHelper
$billingAgreementErrors = $billingAgreement->getErrors(); $billingAgreementErrors = $billingAgreement->getErrors();
if ($billingAgreement->isValid() && empty($billingAgreementErrors)) { if ($billingAgreement->isValid() && empty($billingAgreementErrors)) {
if (!$this->agreementResourceModel->getOrderRelation( if (!$this->agreementResourceModel->getOrderRelation(
$billingAgreement->getAgreementId(), $billingAgreement->getAgreementId(),
$order->getId() $order->getId()
)) { )) {
// save into sales_billing_agreement_order // save into sales_billing_agreement_order
$billingAgreement->addOrderRelation($order); $billingAgreement->addOrderRelation($order);
} }
...@@ -1677,7 +1697,6 @@ class Data extends AbstractHelper ...@@ -1677,7 +1697,6 @@ class Data extends AbstractHelper
); );
throw new \Exception($message); throw new \Exception($message);
} }
} catch (\Exception $exception) { } catch (\Exception $exception) {
$message = $exception->getMessage(); $message = $exception->getMessage();
$this->adyenLogger->error("exception: " . $message); $this->adyenLogger->error("exception: " . $message);
...@@ -1691,6 +1710,7 @@ class Data extends AbstractHelper ...@@ -1691,6 +1710,7 @@ class Data extends AbstractHelper
/** /**
* Method can be used by interceptors to provide the customer ID in a different way. * Method can be used by interceptors to provide the customer ID in a different way.
*
* @param \Magento\Sales\Model\Order $order * @param \Magento\Sales\Model\Order $order
* @return int|null * @return int|null
*/ */
...@@ -1863,7 +1883,6 @@ class Data extends AbstractHelper ...@@ -1863,7 +1883,6 @@ class Data extends AbstractHelper
*/ */
public function getPspReferenceSearchUrl($pspReference, $liveEnvironment) public function getPspReferenceSearchUrl($pspReference, $liveEnvironment)
{ {
if ($liveEnvironment === "true") { if ($liveEnvironment === "true") {
$checkoutEnvironment = "live"; $checkoutEnvironment = "live";
} else { } else {
...@@ -1874,6 +1893,5 @@ class Data extends AbstractHelper ...@@ -1874,6 +1893,5 @@ class Data extends AbstractHelper
$checkoutEnvironment, $checkoutEnvironment,
$pspReference $pspReference
); );
} }
} }
...@@ -50,10 +50,10 @@ class PaymentMethods extends AbstractHelper ...@@ -50,10 +50,10 @@ class PaymentMethods extends AbstractHelper
*/ */
protected $session; protected $session;
/** /**
* @var \Magento\Framework\Locale\ResolverInterface * @var \Magento\Framework\Locale\ResolverInterface
*/ */
protected $localeResolver; protected $localeResolver;
/** /**
* @var \Adyen\Payment\Logger\AdyenLogger * @var \Adyen\Payment\Logger\AdyenLogger
...@@ -97,7 +97,7 @@ class PaymentMethods extends AbstractHelper ...@@ -97,7 +97,7 @@ class PaymentMethods extends AbstractHelper
* @param \Magento\Framework\App\Config\ScopeConfigInterface $config * @param \Magento\Framework\App\Config\ScopeConfigInterface $config
* @param Data $adyenHelper * @param Data $adyenHelper
* @param \Magento\Checkout\Model\Session $session * @param \Magento\Checkout\Model\Session $session
* @param \Magento\Framework\Locale\ResolverInterface $localeResolver * @param \Magento\Framework\Locale\ResolverInterface $localeResolver
* @param \Adyen\Payment\Logger\AdyenLogger $adyenLogger * @param \Adyen\Payment\Logger\AdyenLogger $adyenLogger
* @param \Magento\Framework\View\Asset\Repository $assetRepo * @param \Magento\Framework\View\Asset\Repository $assetRepo
* @param \Magento\Framework\App\RequestInterface $request * @param \Magento\Framework\App\RequestInterface $request
...@@ -110,7 +110,7 @@ class PaymentMethods extends AbstractHelper ...@@ -110,7 +110,7 @@ class PaymentMethods extends AbstractHelper
\Magento\Framework\App\Config\ScopeConfigInterface $config, \Magento\Framework\App\Config\ScopeConfigInterface $config,
\Adyen\Payment\Helper\Data $adyenHelper, \Adyen\Payment\Helper\Data $adyenHelper,
\Magento\Checkout\Model\Session $session, \Magento\Checkout\Model\Session $session,
\Magento\Framework\Locale\ResolverInterface $localeResolver, \Magento\Framework\Locale\ResolverInterface $localeResolver,
\Adyen\Payment\Logger\AdyenLogger $adyenLogger, \Adyen\Payment\Logger\AdyenLogger $adyenLogger,
\Magento\Framework\View\Asset\Repository $assetRepo, \Magento\Framework\View\Asset\Repository $assetRepo,
\Magento\Framework\App\RequestInterface $request, \Magento\Framework\App\RequestInterface $request,
...@@ -122,7 +122,7 @@ class PaymentMethods extends AbstractHelper ...@@ -122,7 +122,7 @@ class PaymentMethods extends AbstractHelper
$this->config = $config; $this->config = $config;
$this->adyenHelper = $adyenHelper; $this->adyenHelper = $adyenHelper;
$this->session = $session; $this->session = $session;
$this->localeResolver = $localeResolver; $this->localeResolver = $localeResolver;
$this->adyenLogger = $adyenLogger; $this->adyenLogger = $adyenLogger;
$this->assetRepo = $assetRepo; $this->assetRepo = $assetRepo;
$this->request = $request; $this->request = $request;
...@@ -195,7 +195,6 @@ class PaymentMethods extends AbstractHelper ...@@ -195,7 +195,6 @@ class PaymentMethods extends AbstractHelper
$paymentMethods = []; $paymentMethods = [];
if (isset($responseData['paymentMethods'])) { if (isset($responseData['paymentMethods'])) {
foreach ($responseData['paymentMethods'] as $paymentMethod) { foreach ($responseData['paymentMethods'] as $paymentMethod) {
$paymentMethodCode = $paymentMethod['type']; $paymentMethodCode = $paymentMethod['type'];
$paymentMethod = $this->fieldMapPaymentMethod($paymentMethod); $paymentMethod = $this->fieldMapPaymentMethod($paymentMethod);
...@@ -218,14 +217,20 @@ class PaymentMethods extends AbstractHelper ...@@ -218,14 +217,20 @@ class PaymentMethods extends AbstractHelper
} }
$params = []; $params = [];
$params = array_merge([ $params = array_merge(
'area' => \Magento\Framework\App\Area::AREA_FRONTEND, [
'_secure' => $this->request->isSecure(), 'area' => \Magento\Framework\App\Area::AREA_FRONTEND,
'theme' => $themeCode '_secure' => $this->request->isSecure(),
], $params); 'theme' => $themeCode
],
$asset = $this->assetRepo->createAsset('Adyen_Payment::images/logos/' . $params
$paymentMethodCode . '.png', $params); );
$asset = $this->assetRepo->createAsset(
'Adyen_Payment::images/logos/' .
$paymentMethodCode . '.png',
$params
);
$placeholder = $this->assetSource->findSource($asset); $placeholder = $this->assetSource->findSource($asset);
...@@ -258,7 +263,6 @@ class PaymentMethods extends AbstractHelper ...@@ -258,7 +263,6 @@ class PaymentMethods extends AbstractHelper
return 10; return 10;
} }
/** /**
* @param $store * @param $store
* @return mixed * @return mixed
...@@ -332,7 +336,6 @@ class PaymentMethods extends AbstractHelper ...@@ -332,7 +336,6 @@ class PaymentMethods extends AbstractHelper
*/ */
protected function getPaymentMethodsResponse($requestParams, $store) protected function getPaymentMethodsResponse($requestParams, $store)
{ {
// initialize the adyen client // initialize the adyen client
$client = $this->adyenHelper->initializeAdyenClient($store->getId()); $client = $this->adyenHelper->initializeAdyenClient($store->getId());
...@@ -382,7 +385,6 @@ class PaymentMethods extends AbstractHelper ...@@ -382,7 +385,6 @@ class PaymentMethods extends AbstractHelper
*/ */
public function getConnectedTerminals() public function getConnectedTerminals()
{ {
$storeId = $this->getQuote()->getStoreId(); $storeId = $this->getQuote()->getStoreId();
// initialize the adyen client // initialize the adyen client
......
...@@ -55,7 +55,7 @@ class Requests extends AbstractHelper ...@@ -55,7 +55,7 @@ class Requests extends AbstractHelper
* @param $storeId * @param $storeId
* @return mixed * @return mixed
*/ */
public function buildMerchantAccountData($request = [], $paymentMethod, $storeId) public function buildMerchantAccountData($paymentMethod, $storeId, $request = [])
{ {
// Retrieve merchant account // Retrieve merchant account
$merchantAccount = $this->adyenHelper->getAdyenMerchantAccount($paymentMethod, $storeId); $merchantAccount = $this->adyenHelper->getAdyenMerchantAccount($paymentMethod, $storeId);
...@@ -67,16 +67,22 @@ class Requests extends AbstractHelper ...@@ -67,16 +67,22 @@ class Requests extends AbstractHelper
} }
/** /**
* @param array $request
* @param int $customerId * @param int $customerId
* @param $billingAddress * @param $billingAddress
* @param $storeId * @param $storeId
* @param null $payment * @param null $payment
* @param null $additionalData * @param null $additionalData
* @return array * @return array
* @param array $request
*/ */
public function buildCustomerData($request = [], $customerId = 0, $billingAddress, $storeId, $payment = null, $additionalData = null) public function buildCustomerData(
{ $billingAddress,
$storeId,
$customerId = 0,
$payment = null,
$additionalData = null,
$request = []
) {
if ($customerId > 0) { if ($customerId > 0) {
$request['shopperReference'] = $customerId; $request['shopperReference'] = $customerId;
} }
...@@ -150,7 +156,7 @@ class Requests extends AbstractHelper ...@@ -150,7 +156,7 @@ class Requests extends AbstractHelper
* @param $ipAddress * @param $ipAddress
* @return mixed * @return mixed
*/ */
public function buildCustomerIpData($request = [], $ipAddress) public function buildCustomerIpData($ipAddress, $request = [])
{ {
$request['shopperIP'] = $ipAddress; $request['shopperIP'] = $ipAddress;
...@@ -163,10 +169,9 @@ class Requests extends AbstractHelper ...@@ -163,10 +169,9 @@ class Requests extends AbstractHelper
* @param $shippingAddress * @param $shippingAddress
* @return mixed * @return mixed
*/ */
public function buildAddressData($request = [], $billingAddress, $shippingAddress) public function buildAddressData($billingAddress, $shippingAddress, $request = [])
{ {
if ($billingAddress) { if ($billingAddress) {
// Billing address defaults // Billing address defaults
$requestBillingDefaults = [ $requestBillingDefaults = [
"street" => "N/A", "street" => "N/A",
...@@ -212,7 +217,6 @@ class Requests extends AbstractHelper ...@@ -212,7 +217,6 @@ class Requests extends AbstractHelper
} }
if ($shippingAddress) { if ($shippingAddress) {
// Delivery address defaults // Delivery address defaults
$requestDeliveryDefaults = [ $requestDeliveryDefaults = [
"street" => "N/A", "street" => "N/A",
...@@ -269,7 +273,7 @@ class Requests extends AbstractHelper ...@@ -269,7 +273,7 @@ class Requests extends AbstractHelper
* @param $paymentMethod * @param $paymentMethod
* @return array * @return array
*/ */
public function buildPaymentData($request = [], $amount, $currencyCode, $reference, $paymentMethod) public function buildPaymentData($amount, $currencyCode, $reference, $paymentMethod, $request = [])
{ {
$request['amount'] = [ $request['amount'] = [
'currency' => $currencyCode, 'currency' => $currencyCode,
...@@ -305,7 +309,7 @@ class Requests extends AbstractHelper ...@@ -305,7 +309,7 @@ class Requests extends AbstractHelper
* @param $storeId * @param $storeId
* @return array * @return array
*/ */
public function buildThreeDS2Data($request = [], $additionalData, $storeId) public function buildThreeDS2Data($additionalData, $storeId, $request = [])
{ {
if ($this->adyenHelper->isCreditCardThreeDS2Enabled($storeId)) { if ($this->adyenHelper->isCreditCardThreeDS2Enabled($storeId)) {
$request['additionalData']['allow3DS2'] = true; $request['additionalData']['allow3DS2'] = true;
...@@ -337,11 +341,10 @@ class Requests extends AbstractHelper ...@@ -337,11 +341,10 @@ class Requests extends AbstractHelper
* @param $storeId * @param $storeId
* @param $payment * @param $payment
*/ */
public function buildRecurringData($request = [], $areaCode, int $storeId, $additionalData) public function buildRecurringData($areaCode, int $storeId, $additionalData, $request = [])
{ {
// If the vault feature is on this logic is handled in the VaultDataBuilder // If the vault feature is on this logic is handled in the VaultDataBuilder
if (!$this->adyenHelper->isCreditCardVaultEnabled()) { if (!$this->adyenHelper->isCreditCardVaultEnabled()) {
if ($areaCode !== \Magento\Backend\App\Area\FrontNameResolver::AREA_CODE) { if ($areaCode !== \Magento\Backend\App\Area\FrontNameResolver::AREA_CODE) {
$storeId = null; $storeId = null;
} }
...@@ -376,7 +379,7 @@ class Requests extends AbstractHelper ...@@ -376,7 +379,7 @@ class Requests extends AbstractHelper
* @param $storeIdbuildCCData * @param $storeIdbuildCCData
* @return mixed * @return mixed
*/ */
public function buildCCData($request = [], $payload, $storeId, $areaCode) public function buildCCData($payload, $storeId, $areaCode, $request = [])
{ {
// If ccType is set use this. For bcmc you need bcmc otherwise it will fail // If ccType is set use this. For bcmc you need bcmc otherwise it will fail
...@@ -388,33 +391,44 @@ class Requests extends AbstractHelper ...@@ -388,33 +391,44 @@ class Requests extends AbstractHelper
$request['paymentMethod']['type'] = 'scheme'; $request['paymentMethod']['type'] = 'scheme';
} }
if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::ENCRYPTED_CREDIT_CARD_NUMBER]) && if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA]
$cardNumber = $payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::ENCRYPTED_CREDIT_CARD_NUMBER]) { [AdyenCcDataAssignObserver::ENCRYPTED_CREDIT_CARD_NUMBER]) &&
$cardNumber = $payload[PaymentInterface::KEY_ADDITIONAL_DATA]
[AdyenCcDataAssignObserver::ENCRYPTED_CREDIT_CARD_NUMBER]) {
$request['paymentMethod']['encryptedCardNumber'] = $cardNumber; $request['paymentMethod']['encryptedCardNumber'] = $cardNumber;
} }
if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::ENCRYPTED_EXPIRY_MONTH]) && if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA]
$expiryMonth = $payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::ENCRYPTED_EXPIRY_MONTH]) { [AdyenCcDataAssignObserver::ENCRYPTED_EXPIRY_MONTH]) &&
$expiryMonth = $payload[PaymentInterface::KEY_ADDITIONAL_DATA]
[AdyenCcDataAssignObserver::ENCRYPTED_EXPIRY_MONTH]) {
$request['paymentMethod']['encryptedExpiryMonth'] = $expiryMonth; $request['paymentMethod']['encryptedExpiryMonth'] = $expiryMonth;
} }
if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::ENCRYPTED_EXPIRY_YEAR]) && if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA]
$expiryYear = $payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::ENCRYPTED_EXPIRY_YEAR]) { [AdyenCcDataAssignObserver::ENCRYPTED_EXPIRY_YEAR]) &&
$expiryYear = $payload[PaymentInterface::KEY_ADDITIONAL_DATA]
[AdyenCcDataAssignObserver::ENCRYPTED_EXPIRY_YEAR]) {
$request['paymentMethod']['encryptedExpiryYear'] = $expiryYear; $request['paymentMethod']['encryptedExpiryYear'] = $expiryYear;
} }
if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::HOLDER_NAME]) && $holderName = if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA]
[AdyenCcDataAssignObserver::HOLDER_NAME]) && $holderName =
$payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::HOLDER_NAME]) { $payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::HOLDER_NAME]) {
$request['paymentMethod']['holderName'] = $holderName; $request['paymentMethod']['holderName'] = $holderName;
} }
if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::ENCRYPTED_SECURITY_CODE]) && if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA]
$securityCode = $payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::ENCRYPTED_SECURITY_CODE]) { [AdyenCcDataAssignObserver::ENCRYPTED_SECURITY_CODE]) &&
$securityCode = $payload[PaymentInterface::KEY_ADDITIONAL_DATA]
[AdyenCcDataAssignObserver::ENCRYPTED_SECURITY_CODE]) {
$request['paymentMethod']['encryptedSecurityCode'] = $securityCode; $request['paymentMethod']['encryptedSecurityCode'] = $securityCode;
} }
if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenOneclickDataAssignObserver::RECURRING_DETAIL_REFERENCE]) && if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA]
$recurringDetailReference = $payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenOneclickDataAssignObserver::RECURRING_DETAIL_REFERENCE] [AdyenOneclickDataAssignObserver::RECURRING_DETAIL_REFERENCE]) &&
$recurringDetailReference = $payload[PaymentInterface::KEY_ADDITIONAL_DATA]
[AdyenOneclickDataAssignObserver::RECURRING_DETAIL_REFERENCE]
) { ) {
$request['paymentMethod']['recurringDetailReference'] = $recurringDetailReference; $request['paymentMethod']['recurringDetailReference'] = $recurringDetailReference;
} }
...@@ -439,8 +453,10 @@ class Requests extends AbstractHelper ...@@ -439,8 +453,10 @@ class Requests extends AbstractHelper
} }
// if installments is set add it into the request // if installments is set add it into the request
if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS])) { if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA]
if (($numberOfInstallment = $payload[PaymentInterface::KEY_ADDITIONAL_DATA][AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS]) > 0) { [AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS])) {
if (($numberOfInstallment = $payload[PaymentInterface::KEY_ADDITIONAL_DATA]
[AdyenCcDataAssignObserver::NUMBER_OF_INSTALLMENTS]) > 0) {
$request['installments']['value'] = $numberOfInstallment; $request['installments']['value'] = $numberOfInstallment;
} }
} }
...@@ -454,7 +470,7 @@ class Requests extends AbstractHelper ...@@ -454,7 +470,7 @@ class Requests extends AbstractHelper
* @param $additionalInformation * @param $additionalInformation
* @return mixed * @return mixed
*/ */
public function buildVaultData($request = [], $payload) public function buildVaultData($payload, $request = [])
{ {
if ($this->adyenHelper->isCreditCardVaultEnabled()) { if ($this->adyenHelper->isCreditCardVaultEnabled()) {
if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA][VaultConfigProvider::IS_ACTIVE_CODE]) && if (!empty($payload[PaymentInterface::KEY_ADDITIONAL_DATA][VaultConfigProvider::IS_ACTIVE_CODE]) &&
...@@ -488,12 +504,16 @@ class Requests extends AbstractHelper ...@@ -488,12 +504,16 @@ class Requests extends AbstractHelper
$address = $this->adyenHelper->getStreetFromString($address->getStreetFull()); $address = $this->adyenHelper->getStreetFromString($address->getStreetFull());
} else { } else {
$address = $this->adyenHelper->getStreetFromString( $address = $this->adyenHelper->getStreetFromString(
implode(' ', [ implode(
$address->getStreetLine1(), ' ',
$address->getStreetLine2(), [
$address->getStreetLine3(), $address->getStreetLine1(),
$address->getStreetLine4() $address->getStreetLine2(),
])); $address->getStreetLine3(),
$address->getStreetLine4()
]
)
);
} }
return $address; return $address;
......
...@@ -27,7 +27,6 @@ use Monolog\Logger; ...@@ -27,7 +27,6 @@ use Monolog\Logger;
class AdyenLogger extends Logger class AdyenLogger extends Logger
{ {
/** /**
* Detailed debug information * Detailed debug information
*/ */
...@@ -62,8 +61,8 @@ class AdyenLogger extends Logger ...@@ -62,8 +61,8 @@ class AdyenLogger extends Logger
* *
* This method allows for compatibility with common interfaces. * This method allows for compatibility with common interfaces.
* *
* @param string $message The log message * @param string $message The log message
* @param array $context The log context * @param array $context The log context
* @return Boolean Whether the record has been processed * @return Boolean Whether the record has been processed
*/ */
public function addAdyenNotification($message, array $context = []) public function addAdyenNotification($message, array $context = [])
...@@ -89,9 +88,9 @@ class AdyenLogger extends Logger ...@@ -89,9 +88,9 @@ class AdyenLogger extends Logger
/** /**
* Adds a log record. * Adds a log record.
* *
* @param integer $level The logging level * @param integer $level The logging level
* @param string $message The log message * @param string $message The log message
* @param array $context The log context * @param array $context The log context
* @return Boolean Whether the record has been processed * @return Boolean Whether the record has been processed
*/ */
public function addRecord($level, $message, array $context = []) public function addRecord($level, $message, array $context = [])
...@@ -105,8 +104,8 @@ class AdyenLogger extends Logger ...@@ -105,8 +104,8 @@ class AdyenLogger extends Logger
* *
* This method allows for compatibility with common interfaces. * This method allows for compatibility with common interfaces.
* *
* @param string $message The log message * @param string $message The log message
* @param array $context The log context * @param array $context The log context
* @return Boolean Whether the record has been processed * @return Boolean Whether the record has been processed
*/ */
public function addNotificationLog($message, array $context = []) public function addNotificationLog($message, array $context = [])
......
...@@ -60,9 +60,9 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface ...@@ -60,9 +60,9 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface
*/ */
protected $productMetadata; protected $productMetadata;
/** /**
* AdyenInitiateTerminalApi constructor. * AdyenInitiateTerminalApi constructor.
*
* @param \Adyen\Payment\Helper\Data $adyenHelper * @param \Adyen\Payment\Helper\Data $adyenHelper
* @param \Adyen\Payment\Logger\AdyenLogger $adyenLogger * @param \Adyen\Payment\Logger\AdyenLogger $adyenLogger
* @param \Magento\Checkout\Model\Session $checkoutSession * @param \Magento\Checkout\Model\Session $checkoutSession
...@@ -100,6 +100,7 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface ...@@ -100,6 +100,7 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface
/** /**
* Trigger sync call on terminal * Trigger sync call on terminal
*
* @return mixed * @return mixed
* @throws \Exception * @throws \Exception
*/ */
...@@ -110,7 +111,9 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface ...@@ -110,7 +111,9 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface
// Validate JSON that has just been parsed if it was in a valid format // Validate JSON that has just been parsed if it was in a valid format
if (json_last_error() !== JSON_ERROR_NONE) { if (json_last_error() !== JSON_ERROR_NONE) {
throw new \Magento\Framework\Exception\LocalizedException(__('Terminal API initiate request was not a valid JSON')); throw new \Magento\Framework\Exception\LocalizedException(
__('Terminal API initiate request was not a valid JSON')
);
} }
if (empty($payload['terminal_id'])) { if (empty($payload['terminal_id'])) {
...@@ -186,7 +189,6 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface ...@@ -186,7 +189,6 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface
$request['SaleToPOIRequest']['PaymentData'] = [ $request['SaleToPOIRequest']['PaymentData'] = [
'PaymentType' => $transactionType, 'PaymentType' => $transactionType,
]; ];
} }
$request = $this->addSaleToAcquirerData($request, $quote); $request = $this->addSaleToAcquirerData($request, $quote);
...@@ -240,6 +242,7 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface ...@@ -240,6 +242,7 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface
/** /**
* Add SaleToAcquirerData for storing for recurring transactions and able to track platform and version * Add SaleToAcquirerData for storing for recurring transactions and able to track platform and version
* When upgrading to new version of library we can use the client methods * When upgrading to new version of library we can use the client methods
*
* @param $request * @param $request
* @param $quote * @param $quote
* @return mixed * @return mixed
...@@ -262,10 +265,14 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface ...@@ -262,10 +265,14 @@ class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface
} }
} }
$saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::MERCHANT_APPLICATION][ApplicationInfo::VERSION] = $this->adyenHelper->getModuleVersion(); $saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::MERCHANT_APPLICATION]
$saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::MERCHANT_APPLICATION][ApplicationInfo::NAME] = $this->adyenHelper->getModuleName(); [ApplicationInfo::VERSION] = $this->adyenHelper->getModuleVersion();
$saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::EXTERNAL_PLATFORM][ApplicationInfo::VERSION] = $this->productMetadata->getVersion(); $saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::MERCHANT_APPLICATION]
$saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::EXTERNAL_PLATFORM][ApplicationInfo::NAME] = $this->productMetadata->getName(); [ApplicationInfo::NAME] = $this->adyenHelper->getModuleName();
$saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::EXTERNAL_PLATFORM]
[ApplicationInfo::VERSION] = $this->productMetadata->getVersion();
$saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::EXTERNAL_PLATFORM]
[ApplicationInfo::NAME] = $this->productMetadata->getName();
$saleToAcquirerDataBase64 = base64_encode(json_encode($saleToAcquirerData)); $saleToAcquirerDataBase64 = base64_encode(json_encode($saleToAcquirerData));
$request['SaleToPOIRequest']['PaymentRequest']['SaleData']['SaleToAcquirerData'] = $saleToAcquirerDataBase64; $request['SaleToPOIRequest']['PaymentRequest']['SaleData']['SaleToAcquirerData'] = $saleToAcquirerDataBase64;
return $request; return $request;
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
namespace Adyen\Payment\Model; namespace Adyen\Payment\Model;
use Adyen\AdyenException; use Adyen\AdyenException;
use Adyen\Payment\Helper\Data as AdyenHelper; use Adyen\Payment\Helper\Data as AdyenHelper;
use Magento\Framework\Exception\NoSuchEntityException as MagentoNoSuchEntityException; use Magento\Framework\Exception\NoSuchEntityException as MagentoNoSuchEntityException;
...@@ -50,4 +49,4 @@ class AdyenOriginKey implements \Adyen\Payment\Api\AdyenOriginKeyInterface ...@@ -50,4 +49,4 @@ class AdyenOriginKey implements \Adyen\Payment\Api\AdyenOriginKeyInterface
{ {
return $this->helper->getOriginKeyForBaseUrl(); return $this->helper->getOriginKeyForBaseUrl();
} }
} }
\ No newline at end of file
...@@ -45,6 +45,7 @@ class AdyenRequestMerchantSession implements AdyenRequestMerchantSessionInterfac ...@@ -45,6 +45,7 @@ class AdyenRequestMerchantSession implements AdyenRequestMerchantSessionInterfac
/** /**
* AdyenRequestMerchantSession constructor. * AdyenRequestMerchantSession constructor.
*
* @param \Adyen\Payment\Helper\Data $adyenHelper * @param \Adyen\Payment\Helper\Data $adyenHelper
*/ */
public function __construct( public function __construct(
...@@ -57,7 +58,6 @@ class AdyenRequestMerchantSession implements AdyenRequestMerchantSessionInterfac ...@@ -57,7 +58,6 @@ class AdyenRequestMerchantSession implements AdyenRequestMerchantSessionInterfac
$this->_storeManager = $storeManager; $this->_storeManager = $storeManager;
} }
/** /**
* Get the merchant Session from Apple to start Apple Pay transaction * Get the merchant Session from Apple to start Apple Pay transaction
* *
...@@ -65,14 +65,17 @@ class AdyenRequestMerchantSession implements AdyenRequestMerchantSessionInterfac ...@@ -65,14 +65,17 @@ class AdyenRequestMerchantSession implements AdyenRequestMerchantSessionInterfac
*/ */
public function getMerchantSession() public function getMerchantSession()
{ {
// Works for test and live. Maybe we need to switch for validationUrl from callback event waiting for apple to respond // Works for test and live. Maybe we need to switch for validationUrl
// from callback event waiting for apple to respond
$validationUrl = "https://apple-pay-gateway-cert.apple.com/paymentservices/startSession"; $validationUrl = "https://apple-pay-gateway-cert.apple.com/paymentservices/startSession";
// create a new cURL resource // create a new cURL resource
$ch = curl_init(); $ch = curl_init();
$merchantIdentifier = $this->_adyenHelper->getAdyenApplePayMerchantIdentifier(); $merchantIdentifier = $this->_adyenHelper->getAdyenApplePayMerchantIdentifier();
$domainName = parse_url($this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_WEB))['host']; $domainName = parse_url(
$this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_WEB)
)['host'];
$displayName = $this->_storeManager->getStore()->getName(); $displayName = $this->_storeManager->getStore()->getName();
$data = '{ $data = '{
...@@ -92,10 +95,14 @@ class AdyenRequestMerchantSession implements AdyenRequestMerchantSessionInterfac ...@@ -92,10 +95,14 @@ class AdyenRequestMerchantSession implements AdyenRequestMerchantSessionInterfac
curl_setopt($ch, CURLOPT_SSLCERT, $fullPathLocationPEMFile); curl_setopt($ch, CURLOPT_SSLCERT, $fullPathLocationPEMFile);
curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HTTPHEADER, [ curl_setopt(
$ch,
CURLOPT_HTTPHEADER,
[
'Content-Type: application/json', 'Content-Type: application/json',
'Content-Length: ' . strlen($data) 'Content-Length: ' . strlen($data)
]); ]
);
$result = curl_exec($ch); $result = curl_exec($ch);
$httpStatus = curl_getinfo($ch, CURLINFO_HTTP_CODE); $httpStatus = curl_getinfo($ch, CURLINFO_HTTP_CODE);
...@@ -105,7 +112,9 @@ class AdyenRequestMerchantSession implements AdyenRequestMerchantSessionInterfac ...@@ -105,7 +112,9 @@ class AdyenRequestMerchantSession implements AdyenRequestMerchantSessionInterfac
// result not 200 throw error // result not 200 throw error
if ($httpStatus != 200 && $result) { if ($httpStatus != 200 && $result) {
$this->_adyenLogger->addAdyenDebug("Error Apple, API HTTP Status is: " . $httpStatus . " result is:" . $result); $this->_adyenLogger->addAdyenDebug(
"Error Apple, API HTTP Status is: " . $httpStatus . " result is:" . $result
);
} elseif (!$result) { } elseif (!$result) {
$errno = curl_errno($ch); $errno = curl_errno($ch);
$message = curl_error($ch); $message = curl_error($ch);
......
...@@ -60,8 +60,7 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface ...@@ -60,8 +60,7 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface
\Adyen\Payment\Helper\Data $adyenHelper, \Adyen\Payment\Helper\Data $adyenHelper,
\Magento\Sales\Model\OrderFactory $orderFactory, \Magento\Sales\Model\OrderFactory $orderFactory,
\Adyen\Payment\Logger\AdyenLogger $adyenLogger \Adyen\Payment\Logger\AdyenLogger $adyenLogger
) ) {
{
$this->checkoutSession = $checkoutSession; $this->checkoutSession = $checkoutSession;
$this->adyenHelper = $adyenHelper; $this->adyenHelper = $adyenHelper;
$this->orderFactory = $orderFactory; $this->orderFactory = $orderFactory;
...@@ -69,9 +68,9 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface ...@@ -69,9 +68,9 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface
} }
/** /**
* @api
* @param string $payload * @param string $payload
* @return string * @return string
* @api
*/ */
public function initiate($payload) public function initiate($payload)
{ {
...@@ -80,13 +79,16 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface ...@@ -80,13 +79,16 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface
// Validate JSON that has just been parsed if it was in a valid format // Validate JSON that has just been parsed if it was in a valid format
if (json_last_error() !== JSON_ERROR_NONE) { if (json_last_error() !== JSON_ERROR_NONE) {
throw new \Magento\Framework\Exception\LocalizedException(__('3D secure 2.0 failed because the request was not a valid JSON')); throw new \Magento\Framework\Exception\LocalizedException(
__('3D secure 2.0 failed because the request was not a valid JSON')
);
} }
if (empty($payload['orderId'])) { if (empty($payload['orderId'])) {
$order = $this->getOrder(); $order = $this->getOrder();
// In the next major release remove support for retrieving order from session and throw exception instead // In the next major release remove support for retrieving order from session and throw exception instead
//throw new \Magento\Framework\Exception\LocalizedException(__('3D secure 2.0 failed because of a missing order id')); //throw new \Magento\Framework\Exception\LocalizedException
//(__('3D secure 2.0 failed because of a missing order id'));
} else { } else {
// Create order by order id // Create order by order id
$order = $this->orderFactory->create()->load($payload['orderId']); $order = $this->orderFactory->create()->load($payload['orderId']);
...@@ -107,7 +109,9 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface ...@@ -107,7 +109,9 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface
$payment->unsAdditionalInformation("threeDS2PaymentData"); $payment->unsAdditionalInformation("threeDS2PaymentData");
} else { } else {
$this->adyenLogger->error("3D secure 2.0 failed, payment data not found"); $this->adyenLogger->error("3D secure 2.0 failed, payment data not found");
throw new \Magento\Framework\Exception\LocalizedException(__('3D secure 2.0 failed, payment data not found')); throw new \Magento\Framework\Exception\LocalizedException(
__('3D secure 2.0 failed, payment data not found')
);
} }
// Depends on the component's response we send a fingerprint or the challenge result // Depends on the component's response we send a fingerprint or the challenge result
...@@ -133,7 +137,10 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface ...@@ -133,7 +137,10 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface
$result['resultCode'] === 'ChallengeShopper' && $result['resultCode'] === 'ChallengeShopper' &&
!empty($result['authentication']['threeds2.challengeToken']) !empty($result['authentication']['threeds2.challengeToken'])
) { ) {
return $this->adyenHelper->buildThreeDS2ProcessResponseJson($result['resultCode'], $result['authentication']['threeds2.challengeToken']); return $this->adyenHelper->buildThreeDS2ProcessResponseJson(
$result['resultCode'],
$result['authentication']['threeds2.challengeToken']
);
} }
// Save the payments response because we are going to need it during the place order flow // Save the payments response because we are going to need it during the place order flow
...@@ -144,7 +151,7 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface ...@@ -144,7 +151,7 @@ class AdyenThreeDS2Process implements AdyenThreeDS2ProcessInterface
$response = []; $response = [];
if($result['resultCode'] != 'Authorised') { if ($result['resultCode'] != 'Authorised') {
$this->checkoutSession->restoreQuote(); $this->checkoutSession->restoreQuote();
// Always cancel the order if the paymenth has failed // Always cancel the order if the paymenth has failed
......
...@@ -27,7 +27,6 @@ use Magento\Framework\DataObject; ...@@ -27,7 +27,6 @@ use Magento\Framework\DataObject;
class PaymentRequest extends DataObject class PaymentRequest extends DataObject
{ {
/** /**
* @var \Magento\Framework\Encryption\EncryptorInterface * @var \Magento\Framework\Encryption\EncryptorInterface
*/ */
...@@ -103,9 +102,9 @@ class PaymentRequest extends DataObject ...@@ -103,9 +102,9 @@ class PaymentRequest extends DataObject
$paResponse = $payment->getAdditionalInformation('paResponse'); $paResponse = $payment->getAdditionalInformation('paResponse');
$paymentData = $payment->getAdditionalInformation('paymentData'); $paymentData = $payment->getAdditionalInformation('paymentData');
$payment->unsAdditionalInformation('paymentData'); $payment->unsAdditionalInformation('paymentData');
$payment->unsAdditionalInformation('paRequest'); $payment->unsAdditionalInformation('paRequest');
$payment->unsAdditionalInformation('md'); $payment->unsAdditionalInformation('md');
$request = [ $request = [
"paymentData" => $paymentData, "paymentData" => $paymentData,
...@@ -218,8 +217,8 @@ class PaymentRequest extends DataObject ...@@ -218,8 +217,8 @@ class PaymentRequest extends DataObject
]; ];
// call lib // call lib
$client = $this->_adyenHelper->initializeAdyenClient($storeId); $client = $this->_adyenHelper->initializeAdyenClient($storeId);
$service = $this->_adyenHelper->createAdyenRecurringService($client); $service = $this->_adyenHelper->createAdyenRecurringService($client);
try { try {
$result = $service->disable($request); $result = $service->disable($request);
......
...@@ -38,6 +38,7 @@ class ApplicationInfo ...@@ -38,6 +38,7 @@ class ApplicationInfo
/** /**
* ApplicationInfo constructor. * ApplicationInfo constructor.
*
* @param \Adyen\Payment\Helper\Data $adyenHelper * @param \Adyen\Payment\Helper\Data $adyenHelper
*/ */
public function __construct( public function __construct(
...@@ -57,7 +58,8 @@ class ApplicationInfo ...@@ -57,7 +58,8 @@ class ApplicationInfo
{ {
// add applicationInfo into request // add applicationInfo into request
$request[self::APPLICATION_INFO][self::MERCHANT_APPLICATION][self::NAME] = $this->adyenHelper->getModuleName(); $request[self::APPLICATION_INFO][self::MERCHANT_APPLICATION][self::NAME] = $this->adyenHelper->getModuleName();
$request[self::APPLICATION_INFO][self::MERCHANT_APPLICATION][self::VERSION] = $this->adyenHelper->getModuleVersion(); $request[self::APPLICATION_INFO][self::MERCHANT_APPLICATION][self::VERSION] =
$this->adyenHelper->getModuleVersion();
return $request; return $request;
} }
} }
...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Model\Billing; ...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Model\Billing;
class Agreement extends \Magento\Paypal\Model\Billing\Agreement class Agreement extends \Magento\Paypal\Model\Billing\Agreement
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
...@@ -97,11 +96,13 @@ class Agreement extends \Magento\Paypal\Model\Billing\Agreement ...@@ -97,11 +96,13 @@ class Agreement extends \Magento\Paypal\Model\Billing\Agreement
//Billing agreement SEPA //Billing agreement SEPA
if (isset($data['bank']['iban'])) { if (isset($data['bank']['iban'])) {
$this->setAgreementLabel(__( $this->setAgreementLabel(
'%1, %2', __(
$data['bank']['iban'], '%1, %2',
$data['bank']['ownerName'] $data['bank']['iban'],
)); $data['bank']['ownerName']
)
);
} }
// Billing agreement is CC // Billing agreement is CC
...@@ -188,7 +189,11 @@ class Agreement extends \Magento\Paypal\Model\Billing\Agreement ...@@ -188,7 +189,11 @@ class Agreement extends \Magento\Paypal\Model\Billing\Agreement
!isset($contractDetail['expiryDate']) || !isset($contractDetail['expiryDate']) ||
!isset($contractDetail['paymentMethod']) !isset($contractDetail['paymentMethod'])
) { ) {
$this->_errors[] = __('"In the Additional data in API response section, select: Card bin, Card summary, Expiry Date, Cardholder name, Recurring details and Variant to create billing agreements immediately after the payment is authorized."'); $this->_errors[] = __(
'"In the Additional data in API response section, select: Card bin,
Card summary, Expiry Date, Cardholder name, Recurring details and Variant
to create billing agreements immediately after the payment is authorized."'
);
return $this; return $this;
} }
// Billing agreement is CC // Billing agreement is CC
...@@ -262,7 +267,8 @@ class Agreement extends \Magento\Paypal\Model\Billing\Agreement ...@@ -262,7 +267,8 @@ class Agreement extends \Magento\Paypal\Model\Billing\Agreement
return $this; return $this;
} }
public function getErrors() { public function getErrors()
{
return $this->_errors; return $this->_errors;
} }
} }
...@@ -36,4 +36,4 @@ class ApiKeyEnding implements CommentInterface ...@@ -36,4 +36,4 @@ class ApiKeyEnding implements CommentInterface
} }
return "Key stored ending in <strong>$apiKeyEnding</strong>"; return "Key stored ending in <strong>$apiKeyEnding</strong>";
} }
} }
\ No newline at end of file
...@@ -106,7 +106,7 @@ class InstallmentsPosCloud extends \Magento\Framework\App\Config\Value ...@@ -106,7 +106,7 @@ class InstallmentsPosCloud extends \Magento\Framework\App\Config\Value
protected function _afterLoad() protected function _afterLoad()
{ {
$value = $this->getValue(); $value = $this->getValue();
if(!empty($value)) { if (!empty($value)) {
$value = $this->serializer->unserialize($value); $value = $this->serializer->unserialize($value);
if (is_array($value)) { if (is_array($value)) {
$value = $this->encodeArrayFieldValue($value); $value = $this->encodeArrayFieldValue($value);
......
...@@ -20,9 +20,11 @@ ...@@ -20,9 +20,11 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
/** /**
* Payment Config Converter * Payment Config Converter
*/ */
namespace Adyen\Payment\Model\Config; namespace Adyen\Payment\Model\Config;
class Converter implements \Magento\Framework\Config\ConverterInterface class Converter implements \Magento\Framework\Config\ConverterInterface
......
...@@ -20,9 +20,11 @@ ...@@ -20,9 +20,11 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
/** /**
* Loads catalog attributes configuration from multiple XML files by merging them together * Loads catalog attributes configuration from multiple XML files by merging them together
*/ */
namespace Adyen\Payment\Model\Config; namespace Adyen\Payment\Model\Config;
class Reader extends \Magento\Framework\Config\Reader\Filesystem class Reader extends \Magento\Framework\Config\Reader\Filesystem
......
...@@ -20,9 +20,11 @@ ...@@ -20,9 +20,11 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
/** /**
* Locator for payment config XSD schemas. * Locator for payment config XSD schemas.
*/ */
namespace Adyen\Payment\Model\Config; namespace Adyen\Payment\Model\Config;
use Magento\Framework\Module\Dir; use Magento\Framework\Module\Dir;
......
...@@ -23,13 +23,8 @@ ...@@ -23,13 +23,8 @@
namespace Adyen\Payment\Model\Config\Source; namespace Adyen\Payment\Model\Config\Source;
/**
* Class BoletoType
* @package Adyen\Payment\Model\Config\Source
*/
class BoletoType implements \Magento\Framework\Option\ArrayInterface class BoletoType implements \Magento\Framework\Option\ArrayInterface
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
......
...@@ -25,13 +25,11 @@ namespace Adyen\Payment\Model\Config\Source; ...@@ -25,13 +25,11 @@ namespace Adyen\Payment\Model\Config\Source;
class CaptureMode implements \Magento\Framework\Option\ArrayInterface class CaptureMode implements \Magento\Framework\Option\ArrayInterface
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
protected $_adyenHelper; protected $_adyenHelper;
/** /**
* CaptureMode constructor. * CaptureMode constructor.
* *
......
...@@ -24,12 +24,10 @@ ...@@ -24,12 +24,10 @@
namespace Adyen\Payment\Model\Config\Source; namespace Adyen\Payment\Model\Config\Source;
/** /**
* Class CcType
* @codeCoverageIgnore * @codeCoverageIgnore
*/ */
class CcType extends \Magento\Payment\Model\Source\Cctype class CcType extends \Magento\Payment\Model\Source\Cctype
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
...@@ -56,7 +54,7 @@ class CcType extends \Magento\Payment\Model\Source\Cctype ...@@ -56,7 +54,7 @@ class CcType extends \Magento\Payment\Model\Source\Cctype
*/ */
public function getAllowedTypes() public function getAllowedTypes()
{ {
return ['VI', 'MC', 'AE', 'DI', 'JCB', 'UN', 'MI', 'DN', 'BCMC', 'HIPERCARD','ELO', 'TROY', 'DANKORT']; return ['VI', 'MC', 'AE', 'DI', 'JCB', 'UN', 'MI', 'DN', 'BCMC', 'HIPERCARD', 'ELO', 'TROY', 'DANKORT'];
} }
/** /**
......
...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Model\Config\Source; ...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Model\Config\Source;
class DemoMode implements \Magento\Framework\Option\ArrayInterface class DemoMode implements \Magento\Framework\Option\ArrayInterface
{ {
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
......
...@@ -26,7 +26,7 @@ namespace Adyen\Payment\Model\Config\Source; ...@@ -26,7 +26,7 @@ namespace Adyen\Payment\Model\Config\Source;
class RecurringType implements \Magento\Framework\Option\ArrayInterface class RecurringType implements \Magento\Framework\Option\ArrayInterface
{ {
const UNDEFINED_OPTION_LABEL = 'NONE'; const UNDEFINED_OPTION_LABEL = 'NONE';
/** /**
* @var \Adyen\Payment\Helper\Data * @var \Adyen\Payment\Helper\Data
*/ */
......
...@@ -36,7 +36,7 @@ class SplitPaymentRefundStrategy implements \Magento\Framework\Option\ArrayInter ...@@ -36,7 +36,7 @@ class SplitPaymentRefundStrategy implements \Magento\Framework\Option\ArrayInter
{ {
return $this->getSplitPaymentRefundStrategies(); return $this->getSplitPaymentRefundStrategies();
} }
/** /**
* @return array * @return array
*/ */
......
This diff is collapsed.
...@@ -33,7 +33,7 @@ class Gender ...@@ -33,7 +33,7 @@ class Gender
/** /**
* @return array * @return array
*/ */
public static function getGenderTypes() public function getGenderTypes()
{ {
return [ return [
self::MALE_VALUE => __('Male'), self::MALE_VALUE => __('Male'),
...@@ -47,7 +47,7 @@ class Gender ...@@ -47,7 +47,7 @@ class Gender
* @param string $genderValue * @param string $genderValue
* @return null|string * @return null|string
*/ */
public static function getMagentoGenderFromAdyenGender($genderValue) public function getMagentoGenderFromAdyenGender($genderValue)
{ {
$gender = null; $gender = null;
if ($genderValue == self::MALE_VALUE) { if ($genderValue == self::MALE_VALUE) {
...@@ -62,7 +62,7 @@ class Gender ...@@ -62,7 +62,7 @@ class Gender
* @param string $genderValue * @param string $genderValue
* @return null|string * @return null|string
*/ */
public static function getAdyenGenderFromMagentoGender($genderValue) public function getAdyenGenderFromMagentoGender($genderValue)
{ {
$gender = null; $gender = null;
if ($genderValue == self::MALE) { if ($genderValue == self::MALE) {
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
namespace Adyen\Payment\Model\InstantPurchase\CreditCard; namespace Adyen\Payment\Model\InstantPurchase\CreditCard;
use Magento\InstantPurchase\PaymentMethodIntegration\AvailabilityCheckerInterface; use Magento\InstantPurchase\PaymentMethodIntegration\AvailabilityCheckerInterface;
...@@ -30,7 +31,6 @@ use Magento\InstantPurchase\PaymentMethodIntegration\AvailabilityCheckerInterfac ...@@ -30,7 +31,6 @@ use Magento\InstantPurchase\PaymentMethodIntegration\AvailabilityCheckerInterfac
*/ */
class AvailabilityChecker implements AvailabilityCheckerInterface class AvailabilityChecker implements AvailabilityCheckerInterface
{ {
/** /**
* @inheritdoc * @inheritdoc
*/ */
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
namespace Adyen\Payment\Model\InstantPurchase\CreditCard; namespace Adyen\Payment\Model\InstantPurchase\CreditCard;
use Magento\InstantPurchase\PaymentMethodIntegration\PaymentTokenFormatterInterface; use Magento\InstantPurchase\PaymentMethodIntegration\PaymentTokenFormatterInterface;
...@@ -33,6 +34,7 @@ class TokenFormatter implements PaymentTokenFormatterInterface ...@@ -33,6 +34,7 @@ class TokenFormatter implements PaymentTokenFormatterInterface
{ {
/** /**
* Most used credit card types * Most used credit card types
*
* @var array * @var array
*/ */
public static $baseCardTypes = [ public static $baseCardTypes = [
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
// phpcs:disable Generic.CodeAnalysis.UselessOverridingMethod.Found
namespace Adyen\Payment\Model; namespace Adyen\Payment\Model;
use Adyen\Payment\Api\Data\InvoiceInterface; use Adyen\Payment\Api\Data\InvoiceInterface;
...@@ -54,7 +54,7 @@ class Invoice extends \Magento\Framework\Model\AbstractModel implements InvoiceI ...@@ -54,7 +54,7 @@ class Invoice extends \Magento\Framework\Model\AbstractModel implements InvoiceI
*/ */
protected function _construct() protected function _construct()
{ {
$this->_init('Adyen\Payment\Model\ResourceModel\Invoice'); $this->_init(\Adyen\Payment\Model\ResourceModel\Invoice::class);
} }
/** /**
...@@ -80,6 +80,7 @@ class Invoice extends \Magento\Framework\Model\AbstractModel implements InvoiceI ...@@ -80,6 +80,7 @@ class Invoice extends \Magento\Framework\Model\AbstractModel implements InvoiceI
/** /**
* Gets the Pspreference of the original Payment * Gets the Pspreference of the original Payment
*
* @return mixed * @return mixed
*/ */
public function getOriginalReference() public function getOriginalReference()
...@@ -97,6 +98,7 @@ class Invoice extends \Magento\Framework\Model\AbstractModel implements InvoiceI ...@@ -97,6 +98,7 @@ class Invoice extends \Magento\Framework\Model\AbstractModel implements InvoiceI
{ {
return $this->setData(self::ORIGINAL_REFERENCE, $originalReference); return $this->setData(self::ORIGINAL_REFERENCE, $originalReference);
} }
/** /**
* Gets the AcquirerReference for the invoice. * Gets the AcquirerReference for the invoice.
* *
......
...@@ -39,9 +39,9 @@ class Adapter extends Method\Adapter ...@@ -39,9 +39,9 @@ class Adapter extends Method\Adapter
*/ */
protected $_paymentRequest; protected $_paymentRequest;
/** /**
* Adapter constructor. * Adapter constructor.
*
* @param \Adyen\Payment\Model\Api\PaymentRequest $paymentRequest * @param \Adyen\Payment\Model\Api\PaymentRequest $paymentRequest
* @param ManagerInterface $eventManager * @param ManagerInterface $eventManager
* @param ValueHandlerPoolInterface $valueHandlerPool * @param ValueHandlerPoolInterface $valueHandlerPool
......
...@@ -20,18 +20,17 @@ ...@@ -20,18 +20,17 @@
* *
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
// phpcs:disable Generic.CodeAnalysis.UselessOverridingMethod.Found
namespace Adyen\Payment\Model; namespace Adyen\Payment\Model;
use Adyen\Payment\Api\Data\NotificationInterface; use Adyen\Payment\Api\Data\NotificationInterface;
class Notification extends \Magento\Framework\Model\AbstractModel implements NotificationInterface class Notification extends \Magento\Framework\Model\AbstractModel implements NotificationInterface
{ {
const AUTHORISATION = 'AUTHORISATION'; const AUTHORISATION = 'AUTHORISATION';
const PENDING = 'PENDING'; const PENDING = 'PENDING';
const AUTHORISED = 'AUTHORISED'; const AUTHORISED = 'AUTHORISED';
const RECEIVED = 'RECEIVED'; const RECEIVED = 'RECEIVED';
const CANCELLED = 'CANCELLED'; const CANCELLED = 'CANCELLED';
const REFUSED = 'REFUSED'; const REFUSED = 'REFUSED';
const ERROR = 'ERROR'; const ERROR = 'ERROR';
...@@ -77,7 +76,7 @@ class Notification extends \Magento\Framework\Model\AbstractModel implements Not ...@@ -77,7 +76,7 @@ class Notification extends \Magento\Framework\Model\AbstractModel implements Not
*/ */
protected function _construct() protected function _construct()
{ {
$this->_init('Adyen\Payment\Model\ResourceModel\Notification'); $this->_init(\Adyen\Payment\Model\ResourceModel\Notification::class);
} }
/** /**
...@@ -214,7 +213,6 @@ class Notification extends \Magento\Framework\Model\AbstractModel implements Not ...@@ -214,7 +213,6 @@ class Notification extends \Magento\Framework\Model\AbstractModel implements Not
return $this->setData(self::SUCCESS, $success); return $this->setData(self::SUCCESS, $success);
} }
/** /**
* Gets the Paymentmethod for the notification. * Gets the Paymentmethod for the notification.
* *
......
...@@ -21,13 +21,13 @@ ...@@ -21,13 +21,13 @@
* Author: Adyen <magento@adyen.com> * Author: Adyen <magento@adyen.com>
*/ */
// phpcs:disable Generic.CodeAnalysis.UselessOverridingMethod.Found
namespace Adyen\Payment\Model\Order; namespace Adyen\Payment\Model\Order;
use Adyen\Payment\Api\Data\OrderPaymentInterface; use Adyen\Payment\Api\Data\OrderPaymentInterface;
class Payment extends \Magento\Framework\Model\AbstractModel implements OrderPaymentInterface class Payment extends \Magento\Framework\Model\AbstractModel implements OrderPaymentInterface
{ {
/** /**
* Notification constructor. * Notification constructor.
* *
...@@ -54,7 +54,7 @@ class Payment extends \Magento\Framework\Model\AbstractModel implements OrderPay ...@@ -54,7 +54,7 @@ class Payment extends \Magento\Framework\Model\AbstractModel implements OrderPay
*/ */
protected function _construct() protected function _construct()
{ {
$this->_init('Adyen\Payment\Model\ResourceModel\Order\Payment'); $this->_init(\Adyen\Payment\Model\ResourceModel\Order\Payment::class);
} }
/** /**
......
...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Model; ...@@ -25,7 +25,6 @@ namespace Adyen\Payment\Model;
class RecurringType class RecurringType
{ {
const NONE = ''; const NONE = '';
const ONECLICK = 'ONECLICK'; const ONECLICK = 'ONECLICK';
const ONECLICK_RECURRING = 'ONECLICK,RECURRING'; const ONECLICK_RECURRING = 'ONECLICK,RECURRING';
......
...@@ -28,14 +28,13 @@ namespace Adyen\Payment\Model\ResourceModel\Billing; ...@@ -28,14 +28,13 @@ namespace Adyen\Payment\Model\ResourceModel\Billing;
*/ */
class Agreement extends \Magento\Paypal\Model\ResourceModel\Billing\Agreement class Agreement extends \Magento\Paypal\Model\ResourceModel\Billing\Agreement
{ {
public function getOrderRelation($agreementId, $orderId) public function getOrderRelation($agreementId, $orderId)
{ {
$select = $this->getConnection()->select() $select = $this->getConnection()->select()
->from(['billingagreement_order' => $this->getTable('paypal_billing_agreement_order')]) ->from(['billingagreement_order' => $this->getTable('paypal_billing_agreement_order')])
->where('billingagreement_order.agreement_id=?', $agreementId) ->where('billingagreement_order.agreement_id=?', $agreementId)
->where('billingagreement_order.order_id=?', $orderId); ->where('billingagreement_order.order_id=?', $orderId);
return $this->getConnection()->fetchAll($select); return $this->getConnection()->fetchAll($select);
} }
} }
...@@ -28,7 +28,6 @@ namespace Adyen\Payment\Model\ResourceModel\Billing\Agreement; ...@@ -28,7 +28,6 @@ namespace Adyen\Payment\Model\ResourceModel\Billing\Agreement;
*/ */
class Collection extends \Magento\Paypal\Model\ResourceModel\Billing\Agreement\Collection class Collection extends \Magento\Paypal\Model\ResourceModel\Billing\Agreement\Collection
{ {
/** /**
* Collection initialization * Collection initialization
* *
...@@ -36,7 +35,7 @@ class Collection extends \Magento\Paypal\Model\ResourceModel\Billing\Agreement\C ...@@ -36,7 +35,7 @@ class Collection extends \Magento\Paypal\Model\ResourceModel\Billing\Agreement\C
*/ */
protected function _construct() protected function _construct()
{ {
$this->_init('Adyen\Payment\Model\Billing\Agreement', 'Magento\Paypal\Model\ResourceModel\Billing\Agreement'); $this->_init(\Adyen\Payment\Model\Billing\Agreement::class, \Magento\Paypal\Model\ResourceModel\Billing\Agreement::class);
} }
/** /**
......
...@@ -31,6 +31,6 @@ class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\Ab ...@@ -31,6 +31,6 @@ class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\Ab
*/ */
public function _construct() public function _construct()
{ {
$this->_init('Adyen\Payment\Model\Invoice', 'Adyen\Payment\Model\ResourceModel\Invoice'); $this->_init(\Adyen\Payment\Model\Invoice::class, \Adyen\Payment\Model\ResourceModel\Invoice::class);
} }
} }
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment