123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Captcha\Observer;
- use Magento\Customer\Model\AuthenticationInterface;
- use Magento\Framework\Event\ObserverInterface;
- use Magento\Customer\Model\Session;
- use Magento\Framework\App\Config\ScopeConfigInterface;
- /**
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class CheckUserEditObserver implements ObserverInterface
- {
- /**
- * Form ID
- */
- const FORM_ID = 'user_edit';
- /**
- * @var \Magento\Captcha\Helper\Data
- */
- protected $helper;
- /**
- * @var \Magento\Framework\App\ActionFlag
- */
- protected $actionFlag;
- /**
- * @var \Magento\Framework\Message\ManagerInterface
- */
- protected $messageManager;
- /**
- * @var \Magento\Framework\App\Response\RedirectInterface
- */
- protected $redirect;
- /**
- * @var CaptchaStringResolver
- */
- protected $captchaStringResolver;
- /**
- * Authentication
- *
- * @var AuthenticationInterface
- */
- protected $authentication;
- /**
- * @var Session
- */
- protected $customerSession;
- /**
- * @var ScopeConfigInterface
- */
- protected $scopeConfig;
- /**
- * @param \Magento\Captcha\Helper\Data $helper
- * @param \Magento\Framework\App\ActionFlag $actionFlag
- * @param \Magento\Framework\Message\ManagerInterface $messageManager
- * @param \Magento\Framework\App\Response\RedirectInterface $redirect
- * @param CaptchaStringResolver $captchaStringResolver
- * @param AuthenticationInterface $authentication
- * @param Session $customerSession
- * @param ScopeConfigInterface $scopeConfig
- */
- public function __construct(
- \Magento\Captcha\Helper\Data $helper,
- \Magento\Framework\App\ActionFlag $actionFlag,
- \Magento\Framework\Message\ManagerInterface $messageManager,
- \Magento\Framework\App\Response\RedirectInterface $redirect,
- CaptchaStringResolver $captchaStringResolver,
- AuthenticationInterface $authentication,
- Session $customerSession,
- ScopeConfigInterface $scopeConfig
- ) {
- $this->helper = $helper;
- $this->actionFlag = $actionFlag;
- $this->messageManager = $messageManager;
- $this->redirect = $redirect;
- $this->captchaStringResolver = $captchaStringResolver;
- $this->authentication = $authentication;
- $this->customerSession = $customerSession;
- $this->scopeConfig = $scopeConfig;
- }
- /**
- * Check Captcha On Forgot Password Page
- *
- * @param \Magento\Framework\Event\Observer $observer
- * @return $this
- */
- public function execute(\Magento\Framework\Event\Observer $observer)
- {
- $captchaModel = $this->helper->getCaptcha(self::FORM_ID);
- if ($captchaModel->isRequired()) {
- /** @var \Magento\Framework\App\Action\Action $controller */
- $controller = $observer->getControllerAction();
- if (!$captchaModel->isCorrect(
- $this->captchaStringResolver->resolve(
- $controller->getRequest(),
- self::FORM_ID
- )
- )) {
- $customerId = $this->customerSession->getCustomerId();
- $this->authentication->processAuthenticationFailure($customerId);
- if ($this->authentication->isLocked($customerId)) {
- $this->customerSession->logout();
- $this->customerSession->start();
- $message = __(
- 'The account is locked. Please wait and try again or contact %1.',
- $this->scopeConfig->getValue('contact/email/recipient_email')
- );
- $this->messageManager->addError($message);
- }
- $this->messageManager->addError(__('Incorrect CAPTCHA'));
- $this->actionFlag->set('', \Magento\Framework\App\Action\Action::FLAG_NO_DISPATCH, true);
- $this->redirect->redirect($controller->getResponse(), '*/*/edit');
- }
- }
- $customer = $this->customerSession->getCustomer();
- $login = $customer->getEmail();
- $captchaModel->logAttempt($login);
- return $this;
- }
- }
|