Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
Adyen Magento2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
We will be off on April 7th (Monday) for public holiday in our country
Open sidebar
Shared Libs
Adyen Magento2
Commits
b582fae7
Commit
b582fae7
authored
May 20, 2016
by
rikterbeek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#37 optimizing code removed some duplicate code from core and added comment tags
parent
4bee6600
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
35 additions
and
169 deletions
+35
-169
Api/Data/NotificationInterface.php
Api/Data/NotificationInterface.php
+4
-4
Block/Adminhtml/System/Config/Field/Version.php
Block/Adminhtml/System/Config/Field/Version.php
+10
-0
Block/Form/Cc.php
Block/Form/Cc.php
+6
-106
Controller/Process/Json.php
Controller/Process/Json.php
+5
-5
Logger/Handler/AdyenBase.php
Logger/Handler/AdyenBase.php
+2
-52
Model/AdyenHppConfigProvider.php
Model/AdyenHppConfigProvider.php
+8
-2
No files found.
Api/Data/NotificationInterface.php
View file @
b582fae7
...
...
@@ -193,10 +193,10 @@ interface NotificationInterface
public
function
setAmountValue
(
$amountValue
);
/**
* Gets the AmountValue for the notification.
*
* @return int|null AmountValue.
*/
* Gets the AmountValue for the notification.
*
* @return int|null AmountValue.
*/
public
function
getAmountCurency
();
/**
...
...
Block/Adminhtml/System/Config/Field/Version.php
View file @
b582fae7
...
...
@@ -34,6 +34,12 @@ class Version extends \Magento\Config\Block\System\Config\Form\Field
*/
protected
$_moduleList
;
/**
* Version constructor.
* @param \Magento\Framework\Module\ModuleListInterface $moduleList
* @param \Magento\Backend\Block\Template\Context $context
* @param array $data
*/
public
function
__construct
(
\Magento\Framework\Module\ModuleListInterface
$moduleList
,
\Magento\Backend\Block\Template\Context
$context
,
...
...
@@ -44,6 +50,10 @@ class Version extends \Magento\Config\Block\System\Config\Form\Field
$this
->
_moduleList
=
$moduleList
;
}
/**
* @param \Magento\Framework\Data\Form\Element\AbstractElement $element
* @return string
*/
protected
function
_getElementHtml
(
\Magento\Framework\Data\Form\Element\AbstractElement
$element
)
{
return
(
string
)
$this
->
_moduleList
->
getOne
(
"Adyen_Payment"
)[
'setup_version'
];
...
...
Block/Form/Cc.php
View file @
b582fae7
...
...
@@ -23,7 +23,7 @@
namespace
Adyen\Payment\Block\Form
;
class
Cc
extends
\Magento\Payment\Block\Form
class
Cc
extends
\Magento\Payment\Block\Form
\Cc
{
/**
* @var string
...
...
@@ -64,14 +64,17 @@ class Cc extends \Magento\Payment\Block\Form
\Magento\Checkout\Model\Session
$checkoutSession
,
array
$data
=
[]
)
{
parent
::
__construct
(
$context
,
$data
);
$this
->
_paymentConfig
=
$paymentConfig
;
parent
::
__construct
(
$context
,
$paymentConfig
);
$this
->
_adyenHelper
=
$adyenHelper
;
$this
->
_appState
=
$context
->
getAppState
();
$this
->
_checkoutSession
=
$checkoutSession
;
}
/**
* @return mixed
* @throws \Magento\Framework\Exception\LocalizedException
*/
public
function
getCsePublicKey
()
{
// get storeId for admin
...
...
@@ -90,62 +93,6 @@ class Cc extends \Magento\Payment\Block\Form
}
return
$cseKey
;
}
/**
* Retrieve availables credit card types
*
* @return array
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
*/
public
function
getCcAvailableTypes
()
{
$types
=
$this
->
_paymentConfig
->
getCcTypes
();
if
(
$method
=
$this
->
getMethod
())
{
$availableTypes
=
$method
->
getConfigData
(
'cctypes'
);
if
(
$availableTypes
)
{
$availableTypes
=
explode
(
','
,
$availableTypes
);
foreach
(
$types
as
$code
=>
$name
)
{
if
(
!
in_array
(
$code
,
$availableTypes
))
{
unset
(
$types
[
$code
]);
}
}
}
}
return
$types
;
}
/**
* Retrieve credit card expire months
*
* @return array
*/
public
function
getCcMonths
()
{
$months
=
$this
->
getData
(
'cc_months'
);
if
(
$months
===
null
)
{
$months
[
0
]
=
__
(
'Month'
);
$months
=
array_merge
(
$months
,
$this
->
_paymentConfig
->
getMonths
());
$this
->
setData
(
'cc_months'
,
$months
);
}
return
$months
;
}
/**
* Retrieve credit card expire years
*
* @return array
*/
public
function
getCcYears
()
{
$years
=
$this
->
getData
(
'cc_years'
);
if
(
$years
===
null
)
{
$years
=
$this
->
_paymentConfig
->
getYears
();
$years
=
[
0
=>
__
(
'Year'
)]
+
$years
;
$this
->
setData
(
'cc_years'
,
$years
);
}
return
$years
;
}
/**
...
...
@@ -157,7 +104,6 @@ class Cc extends \Magento\Payment\Block\Form
{
// if backend order and moto payments is turned on don't show cvc
if
(
$this
->
_appState
->
getAreaCode
()
===
\Magento\Backend\App\Area\FrontNameResolver
::
AREA_CODE
)
{
$this
->
getCheckoutSession
();
$store
=
$this
->
_checkoutSession
->
getQuote
()
->
getStore
();
$enableMoto
=
$this
->
_adyenHelper
->
getAdyenCcConfigDataFlag
(
'enable_moto'
,
$store
->
getId
());
...
...
@@ -167,50 +113,4 @@ class Cc extends \Magento\Payment\Block\Form
}
return
true
;
}
/**
* Whether switch/solo card type available
*
* @return bool
*/
public
function
hasSsCardType
()
{
$availableTypes
=
explode
(
','
,
$this
->
getMethod
()
->
getConfigData
(
'cctypes'
));
$ssPresenations
=
array_intersect
([
'SS'
,
'SM'
,
'SO'
],
$availableTypes
);
if
(
$availableTypes
&&
count
(
$ssPresenations
)
>
0
)
{
return
true
;
}
return
false
;
}
/**
* Solo/switch card start year
*
* @return array
*/
public
function
getSsStartYears
()
{
$years
=
[];
$first
=
date
(
"Y"
);
for
(
$index
=
5
;
$index
>=
0
;
$index
--
)
{
$year
=
$first
-
$index
;
$years
[
$year
]
=
$year
;
}
$years
=
[
0
=>
__
(
'Year'
)]
+
$years
;
return
$years
;
}
/**
* Render block HTML
*
* @return string
*/
protected
function
_toHtml
()
{
$this
->
_eventManager
->
dispatch
(
'payment_form_block_to_html_before'
,
[
'block'
=>
$this
]);
return
parent
::
_toHtml
();
}
}
\ No newline at end of file
Controller/Process/Json.php
View file @
b582fae7
...
...
@@ -124,18 +124,18 @@ class Json extends \Magento\Framework\App\Action\Action
}
return
false
;
}
/**
*
$desc save notification into the database for cronjob to execute notificait
on
*
@desc save notification into the database for cronjob to execute notificati
on
* @param $response
* @param $notificationMode
* @return bool
* @throws \Magento\Framework\Exception\LocalizedException
*/
protected
function
_processNotification
(
$response
,
$notificationMode
)
{
// validate the notification
if
(
$this
->
authorised
(
$response
))
{
if
(
$this
->
authorised
(
$response
))
{
// check if notificaiton already exists
if
(
!
$this
->
_isDuplicate
(
$response
))
{
try
{
...
...
Logger/Handler/AdyenBase.php
View file @
b582fae7
...
...
@@ -23,60 +23,10 @@
namespace
Adyen\Payment\Logger\Handler
;
use
Magento\Framework\Filesystem\DriverInterface
;
use
Monolog\Formatter\LineFormatter
;
use
Monolog\Handler\StreamHandler
;
use
Monolog\Logger
;
use
Magento\Framework\Logger\Handler\Base
;
class
AdyenBase
extends
StreamHandler
class
AdyenBase
extends
Base
{
/**
* @var string
*/
protected
$fileName
;
/**
* @var int
*/
protected
$loggerType
=
Logger
::
DEBUG
;
/**
* @var DriverInterface
*/
protected
$filesystem
;
/**
* @param DriverInterface $filesystem
* @param string $filePath
*/
public
function
__construct
(
DriverInterface
$filesystem
,
$filePath
=
null
)
{
$this
->
filesystem
=
$filesystem
;
parent
::
__construct
(
$filePath
?
$filePath
.
$this
->
fileName
:
BP
.
$this
->
fileName
,
$this
->
loggerType
);
$this
->
setFormatter
(
new
LineFormatter
(
null
,
null
,
true
));
}
/**
* @{inheritDoc}
*
* @param $record array
* @return void
*/
public
function
write
(
array
$record
)
{
$logDir
=
$this
->
filesystem
->
getParentDirectory
(
$this
->
url
);
if
(
!
$this
->
filesystem
->
isDirectory
(
$logDir
))
{
$this
->
filesystem
->
createDirectory
(
$logDir
,
0777
);
}
parent
::
write
(
$record
);
}
/**
* overwrite core it needs to be the exact level otherwise use different handler
*
...
...
Model/AdyenHppConfigProvider.php
View file @
b582fae7
...
...
@@ -358,14 +358,20 @@ class AdyenHppConfigProvider implements ConfigProviderInterface
$hmacKey
=
$this
->
_adyenHelper
->
getHmac
();
// create and add signature
$requestParams
[
"merchantSig"
]
=
\Adyen\Util\Util
::
calculateSha256Signature
(
$hmacKey
,
$requestParams
);
try
{
$requestParams
[
"merchantSig"
]
=
\Adyen\Util\Util
::
calculateSha256Signature
(
$hmacKey
,
$requestParams
);
}
catch
(
\Adyen\AdyenException
$e
)
{
$this
->
_adyenLogger
->
error
(
$e
->
getMessage
());
// return empty result
return
array
();
}
// initialize service
$service
=
new
\Adyen\Service\DirectoryLookup
(
$client
);
try
{
$responseData
=
$service
->
directoryLookup
(
$requestParams
);
}
catch
(
Exception
$e
)
{
}
catch
(
\Adyen\Adyen
Exception
$e
)
{
$this
->
_adyenLogger
->
error
(
"The Directory Lookup response is empty check your Adyen configuration in Magento."
);
// return empty result
return
array
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment