-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathCreateCustomerObserver.php
70 lines (62 loc) · 1.9 KB
/
CreateCustomerObserver.php
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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\ReCaptchaCustomer\Observer;
use Magento\Framework\App\Action\Action;
use Magento\Framework\Event\Observer;
use Magento\Framework\Event\ObserverInterface;
use Magento\Framework\UrlInterface;
use Magento\ReCaptchaUi\Model\IsCaptchaEnabledInterface;
use Magento\ReCaptchaUi\Model\RequestHandlerInterface;
/**
* CreateCustomerObserver
*/
class CreateCustomerObserver implements ObserverInterface
{
/**
* @var UrlInterface
*/
private $url;
/**
* @var IsCaptchaEnabledInterface
*/
private $isCaptchaEnabled;
/**
* @var RequestHandlerInterface
*/
private $requestHandler;
/**
* @param UrlInterface $url
* @param IsCaptchaEnabledInterface $isCaptchaEnabled
* @param RequestHandlerInterface $requestHandler
*/
public function __construct(
UrlInterface $url,
IsCaptchaEnabledInterface $isCaptchaEnabled,
RequestHandlerInterface $requestHandler
) {
$this->url = $url;
$this->isCaptchaEnabled = $isCaptchaEnabled;
$this->requestHandler = $requestHandler;
}
/**
* @param Observer $observer
* @return void
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function execute(Observer $observer): void
{
$key = 'customer_create';
if ($this->isCaptchaEnabled->isCaptchaEnabledFor($key)) {
/** @var Action $controller */
$controller = $observer->getControllerAction();
$request = $controller->getRequest();
$response = $controller->getResponse();
$redirectOnFailureUrl = $this->url->getUrl('*/*/create', ['_secure' => true]);
$this->requestHandler->execute($key, $request, $response, $redirectOnFailureUrl);
}
}
}