1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?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;
}
}