2017 © Pedro Peláez
 

library no-captcha

No CAPTCHA reCAPTCHA For Laravel.

image

anhskohbo/no-captcha

No CAPTCHA reCAPTCHA For Laravel.

  • Friday, February 9, 2018
  • by anhskohbo
  • Repository
  • 40 Watchers
  • 735 Stars
  • 416,959 Installations
  • PHP
  • 15 Dependents
  • 0 Suggesters
  • 117 Forks
  • 21 Open issues
  • 25 Versions
  • 14 % Grown

The README.md

No CAPTCHA reCAPTCHA

Build Status Latest Stable Version Total Downloads Latest Unstable Version License, (*1)

recaptcha_anchor 2x, (*2)

For Laravel 4 use v1 branch., (*3)

Installation

composer require anhskohbo/no-captcha

Laravel 5 and above

Setup

NOTE This package supports the auto-discovery feature of Laravel 5.5 and above, So skip these Setup instructions if you're using Laravel 5.5 and above., (*4)

In app/config/app.php add the following :, (*5)

1- The ServiceProvider to the providers array :, (*6)

Anhskohbo\NoCaptcha\NoCaptchaServiceProvider::class,

2- The class alias to the aliases array :, (*7)

'NoCaptcha' => Anhskohbo\NoCaptcha\Facades\NoCaptcha::class,

3- Publish the config file, (*8)

php artisan vendor:publish --provider="Anhskohbo\NoCaptcha\NoCaptchaServiceProvider"

Configuration

Add NOCAPTCHA_SECRET and NOCAPTCHA_SITEKEY in .env file :, (*9)

NOCAPTCHA_SECRET=secret-key
NOCAPTCHA_SITEKEY=site-key

(You can obtain them from here), (*10)

Usage

Init js source

With default options :, (*11)

 {!! NoCaptcha::renderJs() !!}

With language support or onloadCallback option :, (*12)

 {!! NoCaptcha::renderJs('fr', true, 'recaptchaCallback') !!}

Display reCAPTCHA

Default widget :, (*13)

{!! NoCaptcha::display() !!}

With custom attributes (theme, size, callback ...) :, (*14)

{!! NoCaptcha::display(['data-theme' => 'dark']) !!}

Invisible reCAPTCHA using a submit button:, (*15)

{!! NoCaptcha::displaySubmit('my-form-id', 'submit now!', ['data-theme' => 'dark']) !!}

Notice that the id of the form is required in this method to let the autogenerated callback submit the form on a successful captcha verification., (*16)

Validation

Add 'g-recaptcha-response' => 'required|captcha' to rules array :, (*17)

$validate = Validator::make(Input::all(), [
    'g-recaptcha-response' => 'required|captcha'
]);

Custom Validation Message

Add the following values to the custom array in the validation language file :, (*18)

'custom' => [
    'g-recaptcha-response' => [
        'required' => 'Please verify that you are not a robot.',
        'captcha' => 'Captcha error! try again later or contact site admin.',
    ],
],

Then check for captcha errors in the Form :, (*19)

@if ($errors->has('g-recaptcha-response'))
    <span class="help-block">
        <strong>{{ $errors->first('g-recaptcha-response') }}</strong>
    </span>
@endif

Testing

When using the Laravel Testing functionality, you will need to mock out the response for the captcha form element., (*20)

So for any form tests involving the captcha, you can do this by mocking the facade behavior:, (*21)

// prevent validation error on captcha
NoCaptcha::shouldReceive('verifyResponse')
    ->once()
    ->andReturn(true);

// provide hidden input for your 'required' validation
NoCaptcha::shouldReceive('display')
    ->zeroOrMoreTimes()
    ->andReturn('<input type="hidden" name="g-recaptcha-response" value="1" />');

You can then test the remainder of your form as normal., (*22)

When using HTTP tests you can add the g-recaptcha-response to the request body for the 'required' validation:, (*23)

// prevent validation error on captcha
NoCaptcha::shouldReceive('verifyResponse')
    ->once()
    ->andReturn(true);

// POST request, with request body including g-recaptcha-response
$response = $this->json('POST', '/register', [
    'g-recaptcha-response' => '1',
    'name' => 'John',
    'email' => 'john@example.com',
    'password' => '123456',
    'password_confirmation' => '123456',
]);

Without Laravel

Checkout example below:, (*24)

verifyResponse($_POST['g-recaptcha-response']));
    exit();
}

?>



display(); ?>
renderJs(); ?>

Contribute

https://github.com/anhskohbo/no-captcha/pulls, (*25)

The Versions

09/02 2018

dev-master

9999999-dev

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

09/02 2018

3.0.1

3.0.1.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

31/10 2017

3.0

3.0.0.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

28/09 2017

v2.x-dev

2.9999999.9999999.9999999-dev

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

30/08 2017

2.4.0

2.4.0.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

30/01 2017

2.3.0

2.3.0.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

07/12 2016

2.2.0

2.2.0.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

24/08 2016

2.1.2

2.1.2.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

27/12 2015

2.1

2.1.0.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

07/09 2015

2.0.7

2.0.7.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

07/09 2015

2.0.6

2.0.6.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

10/06 2015

2.0.5

2.0.5.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

14/03 2015

2.0.4

2.0.4.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

10/02 2015

2.0.3

2.0.3.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

29/01 2015

2.0.2

2.0.2.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

28/01 2015

2.0.1

2.0.1.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

27/01 2015

1.x-dev

1.9999999.9999999.9999999-dev

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

27/01 2015

1.2.4

1.2.4.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

27/01 2015

2.0

2.0.0.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

14/12 2014

1.2.3

1.2.3.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

10/12 2014

1.2.2

1.2.2.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

09/12 2014

1.2.1

1.2.1.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

06/12 2014

1.2

1.2.0.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

04/12 2014

1.1

1.1.0.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha

04/12 2014

1.0

1.0.0.0

No CAPTCHA reCAPTCHA For Laravel.

  Sources   Download

MIT

The Requires

 

by Avatar anhskohbo

laravel captcha laravel4 laravel5 recaptcha no-captcha