middlewares/recaptcha
最新稳定版本:v2.1.0
Composer 安装命令:
composer require middlewares/recaptcha
包简介
Middleware to use Google reCAPTCHA for spam prevention
README 文档
README
Middleware to use google/recaptcha library for spam prevention. Returns a 403 response if the request is not valid. More info about Google reCAPTCHA.
Requirements
- PHP >= 7.2
- A PSR-7 http library
- A PSR-15 middleware dispatcher
Installation
This package is installable and autoloadable via Composer as middlewares/recaptcha.
composer require middlewares/recaptcha
Example
$dispatcher = new Dispatcher([ new Middlewares\Recaptcha($secretKey), //in your view function () { echo '<div class="g-recaptcha" data-sitekey="XXX"></div>'; echo '<script type="text/javascript" src="https://www.google.com/recaptcha/api.js"></script>'; } ]); $response = $dispatcher->dispatch(new ServerRequest());
Usage
You need a secret API key for your app. You can register it at https://www.google.com/recaptcha/admin
$secretKey = 'Your-Secret-Key'; $recaptcha = new Middlewares\Recaptcha($secretKey);
Optionally, you can provide a Psr\Http\Message\ResponseFactoryInterface as the second argument to create the error responses (403). If it's not defined, Middleware\Utils\Factory will be used to detect it automatically.
$responseFactory = new MyOwnResponseFactory(); $recaptcha = new Middlewares\Recaptcha($secretKey, $responseFactory);
ipAttribute
By default uses the REMOTE_ADDR server parameter to get the client ip. This option allows to use a request attribute. Useful to combine with a ip detection middleware, for example client-ip:
$dispatcher = new Dispatcher([ //detect the client ip and save it in "ip" attribute (new Middlewares\ClientIP())->attribute('ip'), //use that attribute (new Middlewares\Recaptcha($secretKey))->ipAttribute('ip') ]);
Please see CHANGELOG for more information about recent changes and CONTRIBUTING for contributing details.
The MIT License (MIT). Please see LICENSE for more information.
统计信息
- 总下载量: 38.54k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-10-10