GithubHelp home page GithubHelp logo

recaptcha's Introduction

Google reCAPTCHA for CakePHP 3

Build Status Latest Stable Version Minimum PHP Version License Total Downloads

Be careful version 1.0 is for CakePHP 3.6 minimum. For a previous CakePHP version please use the 0.4.2 version.

Plugin's Objective

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.

Requirements

  • 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.

Installation

[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.

Usage of plugin

1. Go to Google reCAPTCHA site

Go here to create a pair of keys for your website.

2. Configure the plugin

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.

3. Then add the component in your controller where you need the reCAPTCHA.

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.'));
        }
    }
}

4. Finally add <?= $this->Recaptcha->display() ?> in your view template inside the form.

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.

What's inside ?

COMPONENT

  • RecaptchaComponent

HELPERS

  • RecaptchaHelper (Automatically added when the RecaptchaComponent is added)

EXAMPLE

  • Controller : ContactController
  • Form : ContactForm
  • Template : Contact/index.ctp

Tests

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

Support & Contribution

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.

License

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.

recaptcha's People

Contributors

cake17 avatar hasslerf avatar javikalsan avatar omid1finance avatar zehir avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

recaptcha's Issues

Multiple Issues with Cakephp 4.1

I don't think the documentation is accurate for 4.1. I get errors with:

bin/cake plugin load -rb Recaptcha
Class 'Plugin' not found

if I add manually ($this->addPlugin('Recaptcha');), I get the following error on loading the form:

Helper class RecaptchaHelper could not be found.

Please help!

The code seems to use the `I18n::locale()` if the param `lang` is empty, but the ConfigValidator doesn't allow us to set an empty string

The code seems to use the I18n::locale() https://github.com/cakephp-fr/recaptcha/blob/master/src/View/Helper/RecaptchaHelper.php#L64-L67 if the param lang is empty (btw it's really a good idea), but the ConfigValidator doesn't like when we don't specify any lang option : https://github.com/cakephp-fr/recaptcha/blob/master/src/Validation/ConfigValidator.php#L93-L98

Also, maybe set the lang param to be empty by default or to use the I18n::locale()? https://github.com/cakephp-fr/recaptcha/blob/master/src/View/Helper/RecaptchaHelper.php#L40

Also, we probably should do a substr(I18n::locale(), 0, 2)) to get the I18n::locale() value because the locale value with I18n::locale() can also be full named such as fr_FR, en_US etc.

Edit :
After some more tests, by removing the lang option in the config, the validator pass, but the option is defined to en : https://github.com/cakephp-fr/recaptcha/blob/master/src/View/Helper/RecaptchaHelper.php#L40 so the condition :

$lang = $this->config('lang');
if (empty($lang)) {
        $this->config('lang', I18n::locale());
}

is always false.

notEmpty() is deprecated.

Deprecated (16384): notEmpty() is deprecated. Use notEmptyString(), notEmptyArray(), notEmptyFile(), notEmptyDate(), notEmptyTime() or notEmptyDateTime() instead. - [...]/vendor/cakephp-fr/recaptcha/src/Validation/ConfigValidator.php, line: 29

Using deprecated property

This package is directly accessing the Response::json property, which has been deprecated in favor of using the Response::getJson() method.

Response::json is deprecated. Use Response::getJson() instead. - .../vendor/cakephp-fr/recaptcha/src/Recaptcha/Recaptcha.php, line: 127

Missing plugin

I've been trying for the past 2 days to implement this component into my cake 3.2.x live website and I can't make it to work so far.

I am getting a "Missing Plugin
Cake\Core\Exception\MissingPluginException"

"⟩ Cake\Core\Plugin::load
ROOT/config/bootstrap.php, line 196
⟩ require
ROOT/webroot/index.php, line 27"

I have written in my bootstrap.php file:
"Plugin::load('Recaptcha', ['bootstrap' => true]);"

More errors:
"Error: The application is trying to load a file from the Recaptcha plugin.
Make sure your plugin Recaptcha is in the /public_html/plugins/ directory and was loaded."

failed to open stream: no suitable wrapper could be found

I used a mutualized server...

The plugin works fine until I call the method "$this->Recaptcha->verify()".

I get this error:
fopen(): https:// wrapper is disabled in the server configuration by allow_url_fopen=0 fopen(https://www.google.com/recaptcha/api/siteverify): failed to open stream: no suitable wrapper could be found

I read that I can turn on "allow_url_fopen" by adding something like "php_value allow_url_fopen On" in the file ".htaccesss" but until now without any success...

Support CakePHP 4

Currently, this package requires cakephp/cakephp ~3.1. It would be nice to have a version that is compatible with CakePHP 4.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.