11
11
use Magento \Framework \App \ActionFlag ;
12
12
use Magento \Framework \App \RequestInterface ;
13
13
use Magento \Framework \App \Response \HttpInterface as HttpResponseInterface ;
14
+ use Magento \Framework \Exception \InputException ;
14
15
use Magento \Framework \Message \ManagerInterface as MessageManagerInterface ;
15
16
use Magento \ReCaptchaValidationApi \Api \ValidatorInterface ;
17
+ use Psr \Log \LoggerInterface ;
16
18
17
19
/**
18
20
* @inheritdoc
@@ -44,25 +46,33 @@ class RequestHandler implements RequestHandlerInterface
44
46
*/
45
47
private $ actionFlag ;
46
48
49
+ /**
50
+ * @var LoggerInterface
51
+ */
52
+ private $ logger ;
53
+
47
54
/**
48
55
* @param CaptchaResponseResolverInterface $captchaResponseResolver
49
56
* @param ValidationConfigResolverInterface $validationConfigResolver
50
57
* @param ValidatorInterface $captchaValidator
51
58
* @param MessageManagerInterface $messageManager
52
59
* @param ActionFlag $actionFlag
60
+ * @param LoggerInterface $logger
53
61
*/
54
62
public function __construct (
55
63
CaptchaResponseResolverInterface $ captchaResponseResolver ,
56
64
ValidationConfigResolverInterface $ validationConfigResolver ,
57
65
ValidatorInterface $ captchaValidator ,
58
66
MessageManagerInterface $ messageManager ,
59
- ActionFlag $ actionFlag
67
+ ActionFlag $ actionFlag ,
68
+ LoggerInterface $ logger
60
69
) {
61
70
$ this ->captchaResponseResolver = $ captchaResponseResolver ;
62
71
$ this ->validationConfigResolver = $ validationConfigResolver ;
63
72
$ this ->captchaValidator = $ captchaValidator ;
64
73
$ this ->messageManager = $ messageManager ;
65
74
$ this ->actionFlag = $ actionFlag ;
75
+ $ this ->logger = $ logger ;
66
76
}
67
77
68
78
/**
@@ -74,20 +84,18 @@ public function execute(
74
84
HttpResponseInterface $ response ,
75
85
string $ redirectOnFailureUrl
76
86
): void {
77
-
78
87
try {
79
88
$ reCaptchaResponse = $ this ->captchaResponseResolver ->resolve ($ request );
80
- $ validationConfig = $ this ->validationConfigResolver ->get ($ key );
89
+ } catch (InputException $ e ) {
90
+ $ reCaptchaResponse = '' ;
91
+ $ this ->logger ->error ($ e );
92
+ }
81
93
82
- $ validationResult = $ this ->captchaValidator ->isValid ($ reCaptchaResponse , $ validationConfig );
83
- if (false === $ validationResult ->isValid ()) {
84
- $ this ->messageManager ->addErrorMessage ($ validationConfig ->getValidationFailureMessage ());
85
- $ this ->actionFlag ->set ('' , Action::FLAG_NO_DISPATCH , true );
94
+ $ validationConfig = $ this ->validationConfigResolver ->get ($ key );
86
95
87
- $ response ->setRedirect ($ redirectOnFailureUrl );
88
- }
89
- } catch (\Exception $ e ) {
90
- $ this ->messageManager ->addErrorMessage ($ e ->getMessage ());
96
+ $ validationResult = $ this ->captchaValidator ->isValid ($ reCaptchaResponse , $ validationConfig );
97
+ if (false === $ validationResult ->isValid ()) {
98
+ $ this ->messageManager ->addErrorMessage ($ validationConfig ->getValidationFailureMessage ());
91
99
$ this ->actionFlag ->set ('' , Action::FLAG_NO_DISPATCH , true );
92
100
93
101
$ response ->setRedirect ($ redirectOnFailureUrl );
0 commit comments