Skip to content

Commit 8f64ab3

Browse files
Merge pull request #176 from adobe-commerce-tier-4/PR-31-10-2024
[Support Tier-4 abukatar] 10-31-2024 Regular delivery of bugfixes and improvements
2 parents ef76fe7 + c696555 commit 8f64ab3

File tree

2 files changed

+37
-7
lines changed

2 files changed

+37
-7
lines changed

ReCaptchaUser/Observer/LoginObserver.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Copyright © Magento, Inc. All rights reserved.
4-
* See COPYING.txt for license details.
3+
* Copyright 2020 Adobe
4+
* All Rights Reserved.
55
*/
66
declare(strict_types=1);
77

@@ -56,6 +56,8 @@ class LoginObserver implements ObserverInterface
5656

5757
/**
5858
* @var string
59+
* @deprecated
60+
* @see no actuall usage in the class
5961
*/
6062
private $loginActionName;
6163

@@ -117,9 +119,7 @@ public function __construct(
117119
public function execute(Observer $observer): void
118120
{
119121
$key = 'user_login';
120-
if ($this->isCaptchaEnabled->isCaptchaEnabledFor($key)
121-
&& $this->request->getFullActionName() === $this->loginActionName
122-
) {
122+
if ($this->isCaptchaEnabled->isCaptchaEnabledFor($key)) {
123123
$validationConfig = $this->validationConfigResolver->get($key);
124124
try {
125125
$reCaptchaResponse = $this->captchaResponseResolver->resolve($this->request);

ReCaptchaUser/Test/Integration/LoginFormTest.php

+32-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Copyright © Magento, Inc. All rights reserved.
4-
* See COPYING.txt for license details.
3+
* Copyright 2020 Adobe
4+
* All Rights Reserved.
55
*/
66
declare(strict_types=1);
77

@@ -156,6 +156,36 @@ public function testPostRequestIfReCaptchaParameterIsMissed(): void
156156
$this->checkFailedPostResponse();
157157
}
158158

159+
/**
160+
* @magentoAdminConfigFixture admin/security/use_form_key 0
161+
* @magentoAdminConfigFixture admin/captcha/enable 0
162+
* @magentoAdminConfigFixture recaptcha_backend/type_invisible/public_key test_public_key
163+
* @magentoAdminConfigFixture recaptcha_backend/type_invisible/private_key test_private_key
164+
* @magentoAdminConfigFixture recaptcha_backend/type_for/user_login invisible
165+
*/
166+
public function testPostRequestIfReCaptchaParameterIsMissedWithRef(): void
167+
{
168+
$postValues = [];
169+
$this->getRequest()
170+
->setMethod(Http::METHOD_POST)
171+
->setPostValue(array_replace_recursive(
172+
[
173+
'form_key' => $this->formKey->getFormKey(),
174+
'login' => [
175+
'username' => Bootstrap::ADMIN_NAME,
176+
'password' => Bootstrap::ADMIN_PASSWORD,
177+
],
178+
],
179+
$postValues
180+
));
181+
$this->dispatch('backend/admin/dashboard/index');
182+
$this->assertSessionMessages(
183+
self::equalTo(['Something went wrong with reCAPTCHA. Please contact the store owner.']),
184+
MessageInterface::TYPE_ERROR
185+
);
186+
self::assertFalse($this->auth->isLoggedIn());
187+
}
188+
159189
/**
160190
* @magentoAdminConfigFixture admin/security/use_form_key 0
161191
* @magentoAdminConfigFixture admin/captcha/enable 0

0 commit comments

Comments
 (0)