Skip to content

Commit 6c5de1a

Browse files
security-package: Added try/catch to Magento\ReCaptchaUi\Model\RequestHandler.php
1 parent 854bf80 commit 6c5de1a

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

ReCaptchaUi/Model/RequestHandler.php

+19-11
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
use Magento\Framework\App\ActionFlag;
1212
use Magento\Framework\App\RequestInterface;
1313
use Magento\Framework\App\Response\HttpInterface as HttpResponseInterface;
14+
use Magento\Framework\Exception\InputException;
1415
use Magento\Framework\Message\ManagerInterface as MessageManagerInterface;
1516
use Magento\ReCaptchaValidationApi\Api\ValidatorInterface;
17+
use Psr\Log\LoggerInterface;
1618

1719
/**
1820
* @inheritdoc
@@ -44,25 +46,33 @@ class RequestHandler implements RequestHandlerInterface
4446
*/
4547
private $actionFlag;
4648

49+
/**
50+
* @var LoggerInterface
51+
*/
52+
private $logger;
53+
4754
/**
4855
* @param CaptchaResponseResolverInterface $captchaResponseResolver
4956
* @param ValidationConfigResolverInterface $validationConfigResolver
5057
* @param ValidatorInterface $captchaValidator
5158
* @param MessageManagerInterface $messageManager
5259
* @param ActionFlag $actionFlag
60+
* @param LoggerInterface $logger
5361
*/
5462
public function __construct(
5563
CaptchaResponseResolverInterface $captchaResponseResolver,
5664
ValidationConfigResolverInterface $validationConfigResolver,
5765
ValidatorInterface $captchaValidator,
5866
MessageManagerInterface $messageManager,
59-
ActionFlag $actionFlag
67+
ActionFlag $actionFlag,
68+
LoggerInterface $logger
6069
) {
6170
$this->captchaResponseResolver = $captchaResponseResolver;
6271
$this->validationConfigResolver = $validationConfigResolver;
6372
$this->captchaValidator = $captchaValidator;
6473
$this->messageManager = $messageManager;
6574
$this->actionFlag = $actionFlag;
75+
$this->logger = $logger;
6676
}
6777

6878
/**
@@ -74,20 +84,18 @@ public function execute(
7484
HttpResponseInterface $response,
7585
string $redirectOnFailureUrl
7686
): void {
77-
7887
try {
7988
$reCaptchaResponse = $this->captchaResponseResolver->resolve($request);
80-
$validationConfig = $this->validationConfigResolver->get($key);
89+
} catch (InputException $e) {
90+
$reCaptchaResponse = '';
91+
$this->logger->error($e);
92+
}
8193

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);
8695

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());
9199
$this->actionFlag->set('', Action::FLAG_NO_DISPATCH, true);
92100

93101
$response->setRedirect($redirectOnFailureUrl);

0 commit comments

Comments
 (0)