Be careful version 1.0 is for CakePHP 3.6 minimum. For a previous CakePHP version please use the 0.4.2 version.
This plugin adds functionalities to use the new reCAPTCHA API version 2.0 in CakePHP projects.
This plugin is still under development... For now, multiple widgets on a single page is not available.
- PHP >= 5.4.16
- CakePHP 3.x
- Server under
localhost
name. Be aware that the widgets will not be displayed if you have a vhost named local.dev/dev/ for instance.
[Using Composer]
Add the plugin to your project's composer.json
- something like this:
composer require cakephp-fr/recaptcha:~1.0
You then need to load the plugin, by running:
bin/cake plugin load -rb Recaptcha
You can check that this command has created the line Plugin::load('Recaptcha', ['routes' => true, 'bootstrap' => true]);
at the bottom of your config/boostrap.php
file.
The 'routes' => true
should be deleted in production. It's only useful if you want to see the demo.
Go here to create a pair of keys for your website.
The Easiest way is to add the recaptcha config to the config/app.php
, something like:
return [
.... (other configs before)
'Recaptcha' => [
// Register API keys at https://www.google.com/recaptcha/admin
'sitekey' => 'your-sitekey',
'secret' => 'your-secret',
// reCAPTCHA supported 40+ languages listed
// here: https://developers.google.com/recaptcha/docs/language
'lang' => 'en',
// either light or dark
'theme' => 'light',
// either image or audio
'type' => 'image',
// either normal or compact
'size' => 'normal'
]
]
Make sure that /config/app.php
file is in .gitignore
. The secret key must stay secret.
If you don't have a key and a secret, an exception will be raised.
For example:
public function initialize() {
parent::initialize();
if ($this->request->getParam('action') === 'contact') {
$this->loadComponent('Recaptcha.Recaptcha');
}
}
public function contact() {
if ($this->request->is('post')) {
if ($this->Recaptcha->verify()) {
// Here you can validate your data
if (!empty($this->request->getData())) {
$this->Flash->success(__('We will get back to you soon.'));
return $this->redirect($this->referer());
} else {
$this->Flash->error(__('There was a problem submitting your form.'));
}
} else {
// You can debug developers errors with
// debug($this->Recaptcha->errors());
$this->Flash->error(__('Please check your Recaptcha Box.'));
}
}
}
No need to add the helper: it will be added with the component.
For example:
<?= $this->Form->create() ?>
<?= $this->Form->control('name', [
'label' => __('Your Name'),
// 'default' => $this->request->query('name'); // in case you add the Prg Component
]) ?>
<?= $this->Form->control('message', [
'type' => 'textarea',
// 'default' => $this->request->query('message'); // in case you add the Prg Component
'label' => __('Your Message')
]) ?>
<?= $this->Recaptcha->display() ?>
<?= $this->Form->button(__('OK')) ?>
<?= $this->Form->end() ?>
See another example of contact with no form in
src/Controller/ContactController.php
, src/Template/Contact/index.ctp
and
src/Form/ContactForm.php
. You can test it by going to
http://localhost/recaptcha/contact
.
COMPONENT
- RecaptchaComponent
HELPERS
- RecaptchaHelper (Automatically added when the RecaptchaComponent is added)
EXAMPLE
- Controller : ContactController
- Form : ContactForm
- Template : Contact/index.ctp
To test the plugin, clone it and run composer install
. Then run:
./vendor/bin/phpunit
./vendor/bin/phpcs -n -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests --ignore=vendor
For support and feature request, please contact me through Github issues
Please feel free to contribute to the plugin with new issues, requests, unit tests and code fixes or new features. If you want to contribute some code, create a feature branch, and send us your pull request. Unit tests for new features and issues detected are mandatory to keep quality high.
Copyright (c) [2014-2018] [cakephp-fr]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.