131 lines
5.2 KiB
PHP
131 lines
5.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
|
|
*/
|
|
|
|
use PrestaShop\Module\PrestashopCheckout\CommandBus\CommandBusInterface;
|
|
use PrestaShop\Module\PrestashopCheckout\Controller\AbstractFrontController;
|
|
use PrestaShop\Module\PrestashopCheckout\PayPal\Order\Command\CreatePayPalOrderCommand;
|
|
use PrestaShop\Module\PrestashopCheckout\PayPal\Order\Query\GetPayPalOrderForCartIdQuery;
|
|
use PrestaShop\Module\PrestashopCheckout\PayPal\Order\Query\GetPayPalOrderForCartIdQueryResult;
|
|
|
|
/**
|
|
* This controller receive ajax call to create a PayPal Order
|
|
*/
|
|
class Ps_CheckoutCreateModuleFrontController extends AbstractFrontController
|
|
{
|
|
/**
|
|
* @var Ps_checkout
|
|
*/
|
|
public $module;
|
|
|
|
/**
|
|
* @see FrontController::postProcess()
|
|
*
|
|
* @todo Move logic to a Service
|
|
*/
|
|
public function postProcess()
|
|
{
|
|
try {
|
|
// BEGIN Express Checkout
|
|
$bodyValues = [];
|
|
$bodyContent = file_get_contents('php://input');
|
|
|
|
if (false === empty($bodyContent)) {
|
|
$bodyValues = json_decode($bodyContent, true);
|
|
}
|
|
|
|
if (isset($bodyValues['quantity_wanted'], $bodyValues['id_product'], $bodyValues['id_product_attribute'], $bodyValues['id_customization'])) {
|
|
$cart = new Cart();
|
|
$cart->id_currency = $this->context->currency->id;
|
|
$cart->id_lang = $this->context->language->id;
|
|
$cart->add();
|
|
$isQuantityAdded = $cart->updateQty(
|
|
(int) $bodyValues['quantity_wanted'],
|
|
(int) $bodyValues['id_product'],
|
|
empty($bodyValues['id_product_attribute']) ? null : (int) $bodyValues['id_product_attribute'],
|
|
empty($bodyValues['id_customization']) ? false : (int) $bodyValues['id_customization'],
|
|
$operator = 'up'
|
|
);
|
|
|
|
if (!$isQuantityAdded) {
|
|
$this->exitWithResponse([
|
|
'status' => false,
|
|
'httpCode' => 400,
|
|
'body' => [
|
|
'error' => [
|
|
'message' => 'Failed to update cart quantity.',
|
|
],
|
|
],
|
|
'exceptionCode' => null,
|
|
'exceptionMessage' => null,
|
|
]);
|
|
}
|
|
|
|
$cart->update();
|
|
|
|
$this->module->getLogger()->info(
|
|
'Express checkout : Create Cart',
|
|
[
|
|
'id_cart' => (int) $cart->id,
|
|
]
|
|
);
|
|
|
|
$this->context->cart = $cart;
|
|
$this->context->cookie->__set('id_cart', (int) $cart->id);
|
|
$this->context->cookie->write();
|
|
}
|
|
// END Express Checkout
|
|
|
|
$cartId = (int) $this->context->cart->id;
|
|
|
|
$fundingSource = isset($bodyValues['fundingSource']) ? $bodyValues['fundingSource'] : 'paypal';
|
|
$isHostedFields = isset($bodyValues['isHostedFields']) && $bodyValues['isHostedFields'];
|
|
$isExpressCheckout = (isset($bodyValues['isExpressCheckout']) && $bodyValues['isExpressCheckout']) || empty($this->context->cart->id_address_delivery);
|
|
|
|
/** @var CommandBusInterface $commandBus */
|
|
$commandBus = $this->module->getService('ps_checkout.bus.command');
|
|
$commandBus->handle(new CreatePayPalOrderCommand($cartId, $fundingSource, $isHostedFields, $isExpressCheckout));
|
|
|
|
/** @var GetPayPalOrderForCartIdQueryResult $getPayPalOrderForCartIdQueryResult */
|
|
$getPayPalOrderForCartIdQueryResult = $commandBus->handle(new GetPayPalOrderForCartIdQuery($cartId));
|
|
$order = $getPayPalOrderForCartIdQueryResult->getOrder();
|
|
|
|
$this->exitWithResponse([
|
|
'status' => true,
|
|
'httpCode' => 200,
|
|
'body' => [
|
|
'orderID' => $order['id'],
|
|
],
|
|
'exceptionCode' => null,
|
|
'exceptionMessage' => null,
|
|
]);
|
|
} catch (Exception $exception) {
|
|
$this->module->getLogger()->error(
|
|
'CreateController - Exception ' . $exception->getCode(),
|
|
[
|
|
'exception' => $exception,
|
|
]
|
|
);
|
|
|
|
$this->exitWithExceptionMessage($exception);
|
|
}
|
|
}
|
|
}
|