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
bdb6d949
Commit
bdb6d949
authored
6 years ago
by
Aleffio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PW-615: Separate Initiate/Status flow for TerminalAPI
parent
2dfcff7e
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
32 deletions
+27
-32
Gateway/Http/Client/TransactionPosCloudSync.php
Gateway/Http/Client/TransactionPosCloudSync.php
+20
-4
Gateway/Response/PaymentPosCloudHandler.php
Gateway/Response/PaymentPosCloudHandler.php
+2
-9
Gateway/Validator/PosCloudResponseValidator.php
Gateway/Validator/PosCloudResponseValidator.php
+5
-19
No files found.
Gateway/Http/Client/TransactionPosCloudSync.php
View file @
bdb6d949
...
...
@@ -73,9 +73,10 @@ class TransactionPosCloudSync implements ClientInterface
public
function
placeRequest
(
\Magento\Payment\Gateway\Http\TransferInterface
$transferObject
)
{
$request
=
$transferObject
->
getBody
();
if
(
!
empty
(
$request
[
'response'
]))
{
if
(
!
empty
(
$request
[
'response'
])
&&
!
empty
(
$request
[
'response'
][
'SaleToPOIResponse'
][
'PaymentResponse'
]))
{
$paymentResponse
=
$request
[
'response'
][
'SaleToPOIResponse'
][
'PaymentResponse'
];
//Initiate has already a response
return
$
request
[
'response'
]
;
return
$
paymentResponse
;
}
//always do status call and return the response of the status call
$service
=
new
\Adyen\Service\PosPayment
(
$this
->
_client
);
...
...
@@ -123,8 +124,23 @@ class TransactionPosCloudSync implements ClientInterface
$response
=
$service
->
runTenderSync
(
$request
);
}
catch
(
\Adyen\AdyenException
$e
)
{
$response
[
'error'
]
=
$e
->
getMessage
();
return
$response
;
}
return
$response
;
if
(
!
empty
(
$response
[
'SaleToPOIResponse'
][
'TransactionStatusResponse'
]))
{
$statusResponse
=
$response
[
'SaleToPOIResponse'
][
'TransactionStatusResponse'
];
if
(
$statusResponse
[
'Response'
][
'Result'
]
==
'Failure'
)
{
$errorMsg
=
__
(
'In Progress'
);
throw
new
\Magento\Framework\Exception\LocalizedException
(
__
(
$errorMsg
));
}
else
{
$paymentResponse
=
$statusResponse
[
'RepeatedMessageResponse'
][
'RepeatedResponseMessageBody'
][
'PaymentResponse'
];
}
}
else
{
// probably SaleToPOIRequest, that means terminal unreachable, log the response as error
$this
->
adyenLogger
->
error
(
json_encode
(
$response
));
throw
new
\Magento\Framework\Exception\LocalizedException
(
__
(
"The terminal could not be reached."
));
}
return
$paymentResponse
;
}
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
Gateway/Response/PaymentPosCloudHandler.php
View file @
bdb6d949
...
...
@@ -61,7 +61,7 @@ class PaymentPosCloudHandler implements HandlerInterface
* @param array $response
* @return void
*/
public
function
handle
(
array
$handlingSubject
,
array
$
r
esponse
)
public
function
handle
(
array
$handlingSubject
,
array
$
paymentR
esponse
)
{
$payment
=
\Magento\Payment\Gateway\Helper\SubjectReader
::
readPayment
(
$handlingSubject
);
...
...
@@ -74,13 +74,6 @@ class PaymentPosCloudHandler implements HandlerInterface
// no not send order confirmation mail
$payment
->
getOrder
()
->
setCanSendNewEmailFlag
(
false
);
if
(
!
empty
(
$response
[
'SaleToPOIResponse'
][
'TransactionStatusResponse'
]))
{
$statusResponse
=
$response
[
'SaleToPOIResponse'
][
'TransactionStatusResponse'
];
$paymentResponse
=
$statusResponse
[
'RepeatedMessageResponse'
][
'RepeatedResponseMessageBody'
][
'PaymentResponse'
];
}
else
{
$paymentResponse
=
$response
[
'SaleToPOIResponse'
][
'PaymentResponse'
];
}
// set transaction(status)
if
(
!
empty
(
$paymentResponse
)
&&
!
empty
(
$paymentResponse
[
'PaymentResult'
][
'PaymentAcquirerData'
][
'AcquirerTransactionID'
][
'TransactionID'
]))
{
$pspReference
=
$paymentResponse
[
'PaymentResult'
][
'PaymentAcquirerData'
][
'AcquirerTransactionID'
][
'TransactionID'
];
...
...
@@ -95,4 +88,4 @@ class PaymentPosCloudHandler implements HandlerInterface
$payment
->
setIsTransactionClosed
(
false
);
$payment
->
setShouldCloseParentTransaction
(
false
);
}
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
Gateway/Validator/PosCloudResponseValidator.php
View file @
bdb6d949
...
...
@@ -71,35 +71,21 @@ class PosCloudResponseValidator extends AbstractValidator
// Check for errors
if
(
!
empty
(
$response
[
'error'
]))
{
if
(
strpos
(
$response
[
'error'
],
"Could not connect"
)
!==
false
)
{
if
(
!
empty
(
$response
[
'code'
])
&&
$response
[
'code'
]
==
CURLE_OPERATION_TIMEOUTED
)
{
// Do the status call(try to place an order)
return
$this
->
createResult
(
$isValid
,
$errorMessages
);
}
else
{
$this
->
adyenLogger
->
error
(
json_encode
(
$response
));
throw
new
\Magento\Framework\Exception\LocalizedException
(
__
(
$response
[
'error'
]));
}
}
// We receive a SaleToPOIRequest when the terminal is not reachable
if
(
!
empty
(
$response
[
'SaleToPOIRequest'
])){
throw
new
\Magento\Framework\Exception\LocalizedException
(
__
(
"The terminal could not be reached."
));
}
// Check if Status or PaymentResponse
if
(
!
empty
(
$response
[
'SaleToPOIResponse'
][
'TransactionStatusResponse'
]))
{
$statusResponse
=
$response
[
'SaleToPOIResponse'
][
'TransactionStatusResponse'
];
if
(
$statusResponse
[
'Response'
][
'Result'
]
==
'Failure'
)
{
$errorMsg
=
__
(
'In Progress'
);
throw
new
\Magento\Framework\Exception\LocalizedException
(
__
(
$errorMsg
));
}
else
{
$paymentResponse
=
$statusResponse
[
'RepeatedMessageResponse'
][
'RepeatedResponseMessageBody'
][
'PaymentResponse'
];
}
}
else
{
$paymentResponse
=
$response
[
'SaleToPOIResponse'
][
'PaymentResponse'
]
;
$paymentResponse
=
$response
;
}
if
(
!
empty
(
$paymentResponse
)
&&
$paymentResponse
[
'Response'
][
'Result'
]
!=
'Success'
)
{
$errorMsg
=
__
(
$paymentResponse
[
'Response'
][
'ErrorCondition'
]);
$this
->
adyenLogger
->
error
(
$errorMsg
);
$this
->
adyenLogger
->
error
(
json_encode
(
$response
));
throw
new
\Magento\Framework\Exception\LocalizedException
(
__
(
"The transaction could not be completed."
));
}
...
...
@@ -109,4 +95,4 @@ class PosCloudResponseValidator extends AbstractValidator
}
return
$this
->
createResult
(
$isValid
,
$errorMessages
);
}
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
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