Compare commits

...

27 Commits

Author SHA1 Message Date
0607bbaa7c add check for oCaptcha 2024-06-25 10:06:15 +02:00
61133da014 add check for oCaptcha 2024-06-25 10:04:06 +02:00
ffcfed8ba0 Merge branch 'master' of https://git.d3data.de/3rdParty/captcha-module into master 2024-06-25 09:59:34 +02:00
45657767e4 mod CHANGELOG.md, add some comments 2024-05-21 14:06:23 +02:00
a2fdc17247 Ausnahmebedingung für Amazon Pay 2024-05-21 14:06:23 +02:00
5620d6b460 add Version 2.0.7 2024-05-21 14:06:22 +02:00
0305d484a3 Remove complication with PayPal Checkout 2024-05-21 14:06:22 +02:00
ba5d8d04af adjust version informations 2024-05-21 14:06:22 +02:00
3d0025cbc9 don't show and request captcha if user is logged in 2024-05-21 14:06:22 +02:00
4e038ef885 initial preparation for ticket https://support.shopmodule.com/scp/tickets.php?id=11765 2024-05-21 14:06:21 +02:00
c44887803e update Version to 2.0.5 2024-05-21 14:06:21 +02:00
33fe2d8ade add templates for wave theme 2024-05-21 14:06:21 +02:00
ae340f8569 add check for user 2024-05-21 14:06:20 +02:00
0c74177b15 add check for register 2024-05-21 14:06:20 +02:00
2ac4507ace mod CHANGELOG.md, add some comments 2023-11-16 09:29:03 +01:00
69618b8db5 Ausnahmebedingung für Amazon Pay 2023-11-15 14:38:08 +01:00
e1be2b618a add Version 2.0.7 2023-09-05 14:43:06 +02:00
e7b5947a3d Remove complication with PayPal Checkout 2023-09-05 14:38:17 +02:00
LarsStegelitz@Oxid
b8f1c7e8aa
Merge pull request #11 from OXIDprojects/revert-10-master
Revert "Upgrade to OXID 7 with Twig & Smarty"
2023-08-15 14:14:10 +02:00
LarsStegelitz@Oxid
64abb3b36f
Revert "Upgrade to OXID 7 with Twig & Smarty" 2023-08-15 14:11:11 +02:00
Fabian Vogel
3acc30a3a5
Merge pull request #10 from gp-itholics/master
Upgrade to OXID 7 with Twig & Smarty
2023-08-15 14:00:33 +02:00
Gabriel Peleskei
8926e6618d Finalized module for smarty, added more blocks in templates 2023-07-19 10:56:36 +00:00
Gabriel Peleskei
e802847f06 twig support tested manually 2023-07-19 09:05:40 +00:00
Gabriel Peleskei
bd415ccb3e Basic changes made for smarty and base code 2023-07-18 14:59:11 +00:00
ce5fcbd664
adjust version informations 2023-07-18 12:16:37 +02:00
91d21f7f07
don't show and request captcha if user is logged in 2023-07-18 12:13:25 +02:00
0dbb8fb6e3
initial preparation for ticket https://support.shopmodule.com/scp/tickets.php?id=11765 2023-06-30 10:29:30 +02:00
7 changed files with 157 additions and 46 deletions

View File

@ -19,7 +19,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Security
## 2.0.9 - 25 Juni 2024
- add check $oCaptcha in templates
## 2.0.8 - 08 September 2023
- add check for Amazon Pay - no Captcha
## 2.0.7 - 08 September 2023
- add check for PayPal Checkout - no Captcha
## 2.0.6 - 18 Juli 2023
- don't request captcha if user is logged in
## [2.0.4] - 22 Oct 2021

View File

@ -30,6 +30,25 @@ class oeUserComponent extends oeUserComponent_parent
public function createUser()
{
/* START check for Amazon Pay - no Captcha */
ob_start();
debug_print_backtrace();
$trace = ob_get_contents();
ob_end_clean();
if(str_contains($trace, 'initAmazonPayExpress'))
{
return parent::createUser();
}
/* END check for Amazon Pay - no Captcha /
/* START check for PayPal Checkout - no Captcha */
if(\OxidEsales\Eshop\Core\Registry::getConfig()->getRequestParameter('fnc') == 'approveOrder')
{
return parent::createUser();
}
/* START check for PayPal Checkout - no Captcha */
if (!$this->getCaptcha()->passCaptcha()) {
return false;
}

View File

@ -1,3 +1,5 @@
[{$smarty.block.parent}]
[{if !$oxcmp_user}]
[{include file="oecaptcha_wave.tpl" labelCssClass="col-lg-3" inputCssClass="col-lg-5"}]
[{/if}]

View File

@ -1,4 +1,5 @@
[{assign var="oCaptcha" value=$oView->getCaptcha()}]
[{if $oCaptcha}]
<input type="hidden" name="c_mach" value="[{$oCaptcha->getHash()}]"/>
<div class="form-group verify">
@ -17,3 +18,4 @@
</div>
</div>
</div>
[{/if}]

View File

@ -1,4 +1,5 @@
[{assign var="oCaptcha" value=$oView->getCaptcha()}]
[{if $oCaptcha}]
<input type="hidden" name="c_mach" value="[{$oCaptcha->getHash()}]"/>
<div class="form-group row verify">
@ -17,3 +18,4 @@
</div>
</div>
</div>
[{/if}]

View File

@ -0,0 +1,29 @@
<?php
/**
* #PHPHEADER_OECAPTCHA_LICENSE_INFORMATION#
*/
class oecaptchaaccountuser extends oecaptchaaccountuser_parent
{
/**
* Class handling CAPTCHA image.
*
* @var object
*/
protected $captcha = null;
/**
* Template variable getter. Returns object of handling CAPTCHA image
*
* @return object
*/
public function getCaptcha()
{
if ( $this->captcha === null ) {
$this->captcha = oxNew( 'oeCaptcha' );
}
return $this->captcha;
}
}

View File

@ -17,6 +17,10 @@
/**
* Metadata version
*/
use OxidEsales\Eshop\Application\Component\UserComponent;
use OxidEsales\Eshop\Application\Controller\AccountUserController;
$sMetadataVersion = '1.1';
/**
@ -33,7 +37,7 @@ $aModule = array(
'en' => 'OXID eSales Simple Captcha Module',
),
'thumbnail' => 'out/pictures/picture.png',
'version' => '2.0.5',
'version' => '2.0.9',
'author' => 'OXID eSales AG',
'url' => 'https://www.oxid-esales.com/',
'email' => '',
@ -45,9 +49,10 @@ $aModule = array(
'pricealarm' => 'oe/captcha/controllers/oecaptchapricealarm',
'suggest' => 'oe/captcha/controllers/oecaptchasuggest',
'oxwarticledetails' => 'oe/captcha/application/component/widget/oecaptchawarticledetails',
\OxidEsales\Eshop\Application\Component\UserComponent::class => 'oe/captcha/application/component/oeusercomponent',
UserComponent::class => 'oe/captcha/application/component/oeusercomponent',
'register' => 'oe/captcha/controllers/oecaptcharegister',
'user' => 'oe/captcha/controllers/oecaptchauser'
'user' => 'oe/captcha/controllers/oecaptchauser',
AccountUserController::class => 'oe/captcha/controllers/oecaptchaaccountuser'
),
'files' => array(
'oecaptcha' => 'oe/captcha/core/oecaptcha.php',
@ -58,21 +63,63 @@ $aModule = array(
'oecaptcha_wave.tpl' => 'oe/captcha/application/views/tpl/oecaptcha_wave.tpl',
),
'blocks' => array(
array('template' => 'form/contact.tpl', 'block'=>'captcha_form', 'theme' => 'flow', 'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/newsletter.tpl', 'block'=>'captcha_form', 'theme' => 'flow', 'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/privatesales/invite.tpl', 'theme' => 'flow', 'block'=>'captcha_form', 'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/pricealarm.tpl', 'block'=>'captcha_form', 'theme' => 'flow', 'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/suggest.tpl', 'block'=>'captcha_form', 'theme' => 'flow', 'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/forgotpwd_email.tpl', 'block'=>'captcha_form', 'theme' => 'flow', 'file'=>'/application/views/blocks/captcha_form_forgotpwd.tpl'),
array('template' => 'form/fieldset/user_billing.tpl', 'block'=>'captcha_form', 'theme' => 'flow', 'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/contact.tpl',
'block'=>'captcha_form',
'theme' => 'flow',
'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/newsletter.tpl',
'block'=>'captcha_form',
'theme' => 'flow',
'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/privatesales/invite.tpl',
'theme' => 'flow',
'block'=>'captcha_form',
'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/pricealarm.tpl',
'block'=>'captcha_form',
'theme' => 'flow',
'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/suggest.tpl',
'block'=>'captcha_form',
'theme' => 'flow',
'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/forgotpwd_email.tpl',
'block'=>'captcha_form',
'theme' => 'flow',
'file'=>'/application/views/blocks/captcha_form_forgotpwd.tpl'),
array('template' => 'form/fieldset/user_billing.tpl',
'block'=>'captcha_form',
'theme' => 'flow',
'file'=>'/application/views/blocks/captcha_form.tpl'),
array('template' => 'form/contact.tpl', 'block'=>'captcha_form', 'theme' => 'wave', 'file'=>'/application/views/blocks/captcha_form_contact_wave.tpl'),
array('template' => 'form/newsletter.tpl', 'block'=>'captcha_form', 'theme' => 'wave', 'file'=>'/application/views/blocks/captcha_form_newsletter_wave.tpl'),
array('template' => 'form/privatesales/invite.tpl', 'theme' => 'wave', 'block'=>'captcha_form', 'file'=>'/application/views/blocks/captcha_form_wave.tpl'),
array('template' => 'form/pricealarm.tpl', 'block'=>'captcha_form', 'theme' => 'wave', 'file'=>'/application/views/blocks/captcha_form_wave.tpl'),
array('template' => 'form/suggest.tpl', 'block'=>'captcha_form', 'theme' => 'wave', 'file'=>'/application/views/blocks/captcha_form_wave.tpl'),
array('template' => 'form/forgotpwd_email.tpl', 'block'=>'captcha_form', 'theme' => 'wave', 'file'=>'/application/views/blocks/captcha_form_forgotpwd_wave.tpl'),
array('template' => 'form/fieldset/user_billing.tpl', 'block'=>'captcha_form', 'theme' => 'wave', 'file'=>'/application/views/blocks/captcha_form_user_billing_wave.tpl'),
array('template' => 'form/contact.tpl',
'block'=>'captcha_form',
'theme' => 'wave',
'file'=>'/application/views/blocks/captcha_form_contact_wave.tpl'),
array('template' => 'form/newsletter.tpl',
'block'=>'captcha_form',
'theme' => 'wave',
'file'=>'/application/views/blocks/captcha_form_newsletter_wave.tpl'),
array('template' => 'form/privatesales/invite.tpl',
'theme' => 'wave',
'block'=>'captcha_form',
'file'=>'/application/views/blocks/captcha_form_wave.tpl'),
array('template' => 'form/pricealarm.tpl',
'block'=>'captcha_form',
'theme' => 'wave',
'file'=>'/application/views/blocks/captcha_form_wave.tpl'),
array('template' => 'form/suggest.tpl',
'block'=>'captcha_form',
'theme' => 'wave',
'file'=>'/application/views/blocks/captcha_form_wave.tpl'),
array('template' => 'form/forgotpwd_email.tpl',
'block'=>'captcha_form',
'theme' => 'wave',
'file'=>'/application/views/blocks/captcha_form_forgotpwd_wave.tpl'),
array('template' => 'form/fieldset/user_billing.tpl',
'block'=>'captcha_form',
'theme' => 'wave',
'file'=>'/application/views/blocks/captcha_form_user_billing_wave.tpl'),
),
'settings' => array(
array('group' => 'main', 'name' => 'oecaptchakey', 'type' => 'str', 'value' => ''),