mediaholdings / invisible-recaptcha
Invisible reCAPTCHA For Laravel.
Requires
- php: ^8.1.0 || ^8.2.0
- guzzlehttp/guzzle: ^6.2|^7.0
- illuminate/support: ^8.0|^9.0|^10.0
- illuminate/view: ^8.0|^9.0|^10.0
Requires (Dev)
- phpunit/phpunit: ^8.0|^9.3
This package is auto-updated.
Last update: 2024-09-08 14:24:45 UTC
README
为什么选择Invisible reCAPTCHA?
Invisible reCAPTCHA是reCAPTCHA v2(无验证码)的改进版本。在reCAPTCHA v2中,用户需要点击按钮:“我不是机器人”来证明他们是人类。在Invisible reCAPTCHA中,不会嵌入验证码框供用户点击。它完全是不可见的!只在页面底部显示徽章,提示用户您的网站正在使用这项技术。(徽章可以隐藏,但不建议隐藏。)
注意
- 主分支不支持多验证码功能,如果需要,请使用
multi-forms分支。(大多数情况下,当你试图在一页中放置多个验证码时,你是在误用reCAPTCHA。)
安装
composer require albertcht/invisible-recaptcha
Laravel 5
配置
将ServiceProvider添加到app/config/app.php文件中的providers数组中。
AlbertCht\InvisibleReCaptcha\InvisibleReCaptchaServiceProvider::class,
它也支持Laravel 5.5的包发现。
配置
在设置配置之前,请记住在申请密钥时选择无痕reCAPTCHA。()
将INVISIBLE_RECAPTCHA_SITEKEY和INVISIBLE_RECAPTCHA_SECRETKEY添加到.env文件中。
// required
INVISIBLE_RECAPTCHA_SITEKEY={siteKey}
INVISIBLE_RECAPTCHA_SECRETKEY={secretKey}
// optional
INVISIBLE_RECAPTCHA_BADGEHIDE=false
INVISIBLE_RECAPTCHA_DATABADGE='bottomright'
INVISIBLE_RECAPTCHA_TIMEOUT=5
INVISIBLE_RECAPTCHA_DEBUG=false
您可以设置三种不同的验证码样式:
bottomright、bottomleft、inline。
如果您将
INVISIBLE_RECAPTCHA_BADGEHIDE设置为true,您可以隐藏徽章logo。
您可以通过将
INVISIBLE_RECAPTCHA_DEBUG设置为true来在浏览器控制台中查看这些验证码元素的绑定状态。
用法
在渲染验证码之前,请记住以下注意事项
- 在表单元素内部调用
render()或renderHTML()函数。 - 您必须确保您的提交按钮的
type属性为submit。 - 您的表单中只能有一个提交按钮。
在视图中显示reCAPTCHA
{!! app('captcha')->render() !!}
// or you can use this in blade
@captcha
支持自定义语言
{!! app('captcha')->render('en') !!}
// or you can use this in blade
@captcha('en')
与VueJS等JavaScript框架一起使用
render()过程包括三个不同的部分,这些部分可以分别渲染,如果您的包与VueJS等框架一起使用,并且当在模板中包含<script>标签时抛出控制台错误。
您可以在HTML的头部某个位置渲染polyfill(这样做):
{!! app('captcha')->renderPolyfill() !!}
// Or with blade directive:
@captchaPolyfill
您可以使用以下方式渲染HTML,这需要在您的<form>标签内部:
{!! app('captcha')->renderCaptchaHTML() !!}
// Or with blade directive:
@captchaHTML
您可以使用以下方式渲染必要的<script>标签,包括可选的语言支持:
// The argument is optional. {!! app('captcha')->renderFooterJS('en') !!} // Or with blade directive: @captchaScripts // blade directive, with language support: @captchaScripts('en')
验证
将'g-recaptcha-response' => 'required|captcha'添加到规则数组中。
$validate = Validator::make(Input::all(), [ 'g-recaptcha-response' => 'required|captcha' ]);
CodeIgniter 3.x
在application/config/config.php中设置
$config['composer_autoload'] = TRUE;
在application/config/config.php中添加行
$config['recaptcha.sitekey'] = 'sitekey'; $config['recaptcha.secret'] = 'secretkey'; // optional $config['recaptcha.options'] = [ 'hideBadge' => false, 'dataBadge' => 'bottomright', 'timeout' => 5, 'debug' => false ];
在控制器中使用
$data['captcha'] = new \AlbertCht\InvisibleReCaptcha\InvisibleReCaptcha( $this->config->item('recaptcha.sitekey'), $this->config->item('recaptcha.secret'), $this->config->item('recaptcha.options'), );
在视图中,在您的表单中
<?php echo $captcha->render(); ?>
然后回到您的控制器中,您可以验证它
$captcha->verifyResponse($_POST['g-recaptcha-response'], $_SERVER['REMOTE_ADDR']);
不使用Laravel或CodeIgniter
查看以下示例
<?php require_once "vendor/autoload.php"; $siteKey = 'sitekey'; $secretKey = 'secretkey'; // optional $options = [ 'hideBadge' => false, 'dataBadge' => 'bottomright', 'timeout' => 5, 'debug' => false ]; $captcha = new \AlbertCht\InvisibleReCaptcha\InvisibleReCaptcha($siteKey, $secretKey, $options); // you can override single option config like this $captcha->setOption('debug', true); if (!empty($_POST)) { var_dump($captcha->verifyResponse($_POST['g-recaptcha-response'], $_SERVER['REMOTE_ADDR'])); exit(); } ?> <form action="?" method="POST"> <?php echo $captcha->render(); ?> <button type="submit">Submit</button> </form>
控制提交功能
仅在需要完全控制提交后使用此函数。如果在此函数中返回false,则不会触发reCAPTCHA验证。
_beforeSubmit = function(e) { console.log('submit button clicked.'); // do other things before captcha validation // e represents reference to original form submit event // return true if you want to continue triggering captcha validation, otherwise return false return false; }
自定义提交函数
如果您想自定义提交函数,例如:在点击提交按钮后执行某些操作或更改您的提交为AJAX调用等。
您需要做的只是实现javascript中的_submitEvent。
_submitEvent = function() { console.log('submit button clicked.'); // write your logic here // submit your form _submitForm(); }
以下是一个使用AJAX提交的示例(使用jQuery选择器)
_submitEvent = function() { $.ajax({ type: "POST", url: "{{route('message.send')}}", data: { "name": $("#name").val(), "email": $("#email").val(), "content": $("#content").val(), // important! don't forget to send `g-recaptcha-response` "g-recaptcha-response": $("#g-recaptcha-response").val() }, dataType: "json", success: function(data) { // success logic }, error: function(data) { // error logic } }); };
示例仓库
仓库:https://github.com/albertcht/invisible-recaptcha-example
此仓库演示了如何使用此包以ajax方式。
展示
致谢
- anhskohbo(无验证码包的作者)
- 贡献者
在 Beerpay 上支持
嗨,兄弟!帮帮我几个 🍻!