111 lines
4.2 KiB
PHP
111 lines
4.2 KiB
PHP
<?php
|
|
/**
|
|
* Copyright since 2007 PrestaShop SA and Contributors
|
|
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License version 3.0
|
|
* that is bundled with this package in the file LICENSE.md.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* https://opensource.org/licenses/AFL-3.0
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
|
* @copyright Since 2007 PrestaShop SA and Contributors
|
|
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
|
|
*/
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
use PsCheckout\Core\Exception\PsCheckoutException;
|
|
use PsCheckout\Core\PayPal\Order\Action\CancelPayPalOrderAction;
|
|
use PsCheckout\Core\PayPal\Order\Request\ValueObject\CancelPayPalOrderRequest;
|
|
use PsCheckout\Infrastructure\Controller\AbstractFrontController;
|
|
use PsCheckout\Utility\Common\InputStreamUtility;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
/**
|
|
* This controller receive ajax call on customer canceled payment
|
|
*/
|
|
class Ps_CheckoutCancelModuleFrontController extends AbstractFrontController
|
|
{
|
|
/**
|
|
* @see FrontController::postProcess()
|
|
*/
|
|
public function postProcess()
|
|
{
|
|
/** @var LoggerInterface $logger */
|
|
$logger = $this->module->getService(LoggerInterface::class);
|
|
try {
|
|
if (!Validate::isLoadedObject($this->context->cart)) {
|
|
$this->exitWithResponse([
|
|
'httpCode' => 400,
|
|
'body' => 'No cart found.',
|
|
]);
|
|
}
|
|
|
|
/** @var InputStreamUtility $inputStreamUtility */
|
|
$inputStreamUtility = $this->module->getService(InputStreamUtility::class);
|
|
$bodyContent = $inputStreamUtility->getBodyContent();
|
|
|
|
if (empty($bodyContent)) {
|
|
$this->exitWithResponse([
|
|
'httpCode' => 400,
|
|
'body' => 'Payload invalid',
|
|
]);
|
|
}
|
|
|
|
$bodyValues = json_decode($bodyContent, true);
|
|
|
|
if (empty($bodyValues)) {
|
|
$this->exitWithResponse([
|
|
'httpCode' => 400,
|
|
'body' => 'Payload invalid',
|
|
]);
|
|
}
|
|
|
|
$orderCancelRequest = new CancelPayPalOrderRequest($bodyValues, $this->context->cart->id);
|
|
|
|
if ($orderCancelRequest->getOrderId()) {
|
|
/** @var CancelPayPalOrderAction $cancelPayPalOrderAction */
|
|
$cancelPayPalOrderAction = $this->module->getService(CancelPayPalOrderAction::class);
|
|
$cancelPayPalOrderAction->execute($orderCancelRequest);
|
|
}
|
|
|
|
$logger->log(
|
|
$orderCancelRequest->getError() ? 400 : 200,
|
|
'Customer canceled payment',
|
|
[
|
|
'PayPalOrderId' => $orderCancelRequest->getOrderId(),
|
|
'FundingSource' => $orderCancelRequest->getFundingSource(),
|
|
'id_cart' => $this->context->cart->id,
|
|
'isExpressCheckout' => $orderCancelRequest->isExpressCheckout(),
|
|
'isHostedFields' => $orderCancelRequest->isHostedFields(),
|
|
'reason' => $orderCancelRequest->getReason(),
|
|
'error' => $orderCancelRequest->getError(),
|
|
]
|
|
);
|
|
|
|
$this->exitWithResponse([
|
|
'status' => true,
|
|
'httpCode' => 200,
|
|
'body' => $bodyValues,
|
|
'exceptionCode' => null,
|
|
'exceptionMessage' => null,
|
|
]);
|
|
} catch (Exception $exception) {
|
|
$this->exitWithExceptionMessage($exception);
|
|
} catch (Throwable $exception) {
|
|
$this->exitWithExceptionMessage(new PsCheckoutException(
|
|
'An error occurred while canceling the PayPal order.',
|
|
PsCheckoutException::UNKNOWN,
|
|
$exception
|
|
));
|
|
}
|
|
}
|
|
}
|