![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-checkout/Controller/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller; use Magento\Customer\Api\AccountManagementInterface; use Magento\Customer\Api\CustomerRepositoryInterface; use Magento\Framework\Exception\NoSuchEntityException; /** * Controller for onepage checkouts */ abstract class Action extends \Magento\Framework\App\Action\Action { /** * @var \Magento\Customer\Model\Session */ protected $_customerSession; /** * @var CustomerRepositoryInterface */ protected $customerRepository; /** * @var AccountManagementInterface */ protected $accountManagement; /** * @param \Magento\Framework\App\Action\Context $context * @param \Magento\Customer\Model\Session $customerSession * @param CustomerRepositoryInterface $customerRepository * @param AccountManagementInterface $accountManagement * @codeCoverageIgnore */ public function __construct( \Magento\Framework\App\Action\Context $context, \Magento\Customer\Model\Session $customerSession, CustomerRepositoryInterface $customerRepository, AccountManagementInterface $accountManagement ) { $this->_customerSession = $customerSession; $this->customerRepository = $customerRepository; $this->accountManagement = $accountManagement; parent::__construct($context); } /** * Make sure customer is valid, if logged in * * By default will add error messages and redirect to customer edit form * * @param bool $redirect - stop dispatch and redirect? * @param bool $addErrors - add error messages? * @return bool|\Magento\Framework\Controller\Result\Redirect */ protected function _preDispatchValidateCustomer($redirect = true, $addErrors = true) { try { $customer = $this->customerRepository->getById($this->_customerSession->getCustomerId()); } catch (NoSuchEntityException $e) { return true; } if (isset($customer)) { $validationResult = $this->accountManagement->validate($customer); if (!$validationResult->isValid()) { if ($addErrors) { foreach ($validationResult->getMessages() as $error) { $this->messageManager->addErrorMessage($error); } } if ($redirect) { $this->_actionFlag->set('', self::FLAG_NO_DISPATCH, true); return $this->resultRedirectFactory->create()->setPath('customer/account/edit'); } return false; } } return true; } }