| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/mageplaza/module-smtp/Observer/Quote/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/mageplaza/module-smtp/Observer/Quote/SyncQuote.php |
<?php
/**
* Mageplaza
*
* NOTICE OF LICENSE
*
* This source file is subject to the Mageplaza.com license that is
* available through the world-wide-web at this URL:
* https://www.mageplaza.com/LICENSE.txt
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this extension to newer
* version in the future.
*
* @category Mageplaza
* @package Mageplaza_Smtp
* @copyright Copyright (c) Mageplaza (https://www.mageplaza.com/)
* @license https://www.mageplaza.com/LICENSE.txt
*/
namespace Mageplaza\Smtp\Observer\Quote;
use Exception;
use Magento\Framework\Event\Observer;
use Magento\Framework\Event\ObserverInterface;
use Magento\Quote\Model\Quote;
use Mageplaza\Smtp\Helper\EmailMarketing;
use Psr\Log\LoggerInterface;
/**
* Class SyncQuote
* @package Mageplaza\Smtp\Observer\Quote
*/
class SyncQuote implements ObserverInterface
{
/**
* @var EmailMarketing
*/
protected $helperEmailMarketing;
/**
* @var LoggerInterface
*/
protected $logger;
/**
* SyncQuote constructor.
*
* @param EmailMarketing $helperEmailMarketing
* @param LoggerInterface $logger
*/
public function __construct(
EmailMarketing $helperEmailMarketing,
LoggerInterface $logger
) {
$this->helperEmailMarketing = $helperEmailMarketing;
$this->logger = $logger;
}
/**
* @param Observer $observer
*/
public function execute(Observer $observer)
{
if ($this->helperEmailMarketing->isEnableEmailMarketing() &&
$this->helperEmailMarketing->getSecretKey() &&
$this->helperEmailMarketing->getAppID()
) {
try {
/* @var Quote $quote */
$quote = $observer->getEvent()->getQuote();
$aceLogData = $quote->getData('mp_smtp_ace_log_data');
$itemCount = (int) $quote->getItemsCount();
$isValid = ($itemCount > 0 || ($aceLogData && $itemCount < 1));
if ($isValid) {
$ACEData = $this->helperEmailMarketing->getACEData($quote);
$oldACEData = $aceLogData ? EmailMarketing::jsonDecode($aceLogData) : [];
if ($oldACEData !== $ACEData && empty($oldACEData['checkoutCompleted'])) {
$resource = $this->helperEmailMarketing->getResourceQuote();
$resource->getConnection()->update(
$resource->getMainTable(),
['mp_smtp_ace_log_data' => EmailMarketing::jsonEncode($ACEData)],
['entity_id = ?' => $quote->getId()]
);
$this->helperEmailMarketing->sendRequestWithoutWaitResponse(
$ACEData,
EmailMarketing::CHECKOUT_URL
);
}
}
} catch (Exception $e) {
$this->logger->critical($e->getMessage());
}
}
}
}