dutchcodingcompany / livewire-recaptcha
Add Google Recaptcha V3 support to your Laravel Livewire components
Installs: 1 355
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: ^8.2
- livewire/livewire: ^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.8
- larastan/larastan: ^2.9
- orchestra/testbench: ^9.0
- phpunit/phpunit: ^11.1
This package is auto-updated.
Last update: 2024-11-17 16:34:13 UTC
README
This package provides a custom Livewire directive to protect your Livewire functions with a Google reCAPTCHA (v2 + v2 invisible + v3) check.
Installation
composer require dutchcodingcompany/livewire-recaptcha
Configuration
Read https://developers.google.com/recaptcha/intro on how to create your own key pair for the specific ReCaptcha version you are going to implement.
This package supports the following versions. Note that each version requires a different sitekey/secretkey pair:
Your options should reside in the config/services.php
file:
// V3 config: 'google' => [ 'recaptcha' => [ 'site_key' => env('GOOGLE_RECAPTCHA_SITE_KEY'), 'secret_key' => env('GOOGLE_RECAPTCHA_SECRET_KEY'), 'version' => 'v3', 'score' => 0.5, // An integer between 0 and 1, that indicates the minimum score to pass the Captcha challenge. ], ], // V2 config: 'google' => [ 'recaptcha' => [ 'site_key' => env('GOOGLE_RECAPTCHA_SITE_KEY'), 'secret_key' => env('GOOGLE_RECAPTCHA_SECRET_KEY'), 'version' => 'v2', 'size' => 'normal', // 'normal', 'compact' or 'invisible'. 'theme' => 'light', // 'light' or 'dark'. ], ],
Component
In your Livewire component, at your form submission method, add the #[ValidatesRecaptcha]
attribute:
use Livewire\Component; use DutchCodingCompany\LivewireRecaptcha\ValidatesRecaptcha; class SomeComponent extends Component { // (optional) Set a response property on your component. // If not given, the `gRecaptchaResponse` property is dynamically assigned. public string $gRecaptchaResponse; #[ValidatesRecaptcha] public function save(): mixed { // Your logic here will only be called if the captcha passes... } }
For fine-grained control, you can pass a custom secret key and minimum score (applies only to V3) using:
#[ValidatesRecaptcha(secretKey: 'mysecretkey', score: 0.9)]
View
On the view side, you have to include the Blade directive @livewireRecaptcha
. This adds two scripts to the page,
one for the reCAPTCHA script and one for the custom Livewire directive to hook into the form submission.
Preferrably these scripts are only added to the page that has the Captcha-protected form (alternatively, you can add
the @livewireRecaptcha
directive on a higher level, lets say your layout).
Secondly, add the new directive wire:recaptcha
to the form element that you want to protect.
<!-- some-livewire-component.blade.php --> <!-- (optional) Add error handling --> @if($errors->has('gRecaptchaResponse')) <div class="alert alert-danger">{{ $errors->first('gRecaptchaResponse') }}</div> @endif <!-- Add the `wire:recaptcha` Livewire directive --> <form wire:submit="save" wire:recaptcha> <!-- The rest of your form --> <button type="submit">Submit</button> </form> <!-- Add the `@livewireRecaptcha` Blade directive --> @livewireRecaptcha
You can override any of the configuration values using:
@livewireRecaptcha( version: 'v2', siteKey: 'abcd_efgh-hijk_LMNOP', theme: 'dark', size: 'compact', )
Finishing up
The Google ReCAPTCHA validation will automatically occur before the actual form is submitted. Before the save()
method
is executed, a serverside request will be sent to Google to verify the Captcha challenge. Once the reCAPTCHA
response has been successful, your actual Livewire component method will be executed.
Error handling
When an error occurs with the Captcha validation, a ValidationException is thrown for the key gRecaptchaResponse
.
There is a translatable error message available under 'livewire-recaptcha::recaptcha.invalid_response'
.