定制 dutchcodingcompany/livewire-recaptcha 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

dutchcodingcompany/livewire-recaptcha

最新稳定版本:1.0.0

Composer 安装命令:

composer require dutchcodingcompany/livewire-recaptcha

包简介

Add Google Recaptcha V3 support to your Laravel Livewire components

README 文档

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status GitHub PHPStan Action Status Total Downloads

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:

Version Docs Notes
v3 (recommended) V3 Docs
v2 V2 Docs
v2 invisible V2 Docs Use 'size' => 'invisible'

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

统计信息

  • 总下载量: 21.56k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 23
  • 点击次数: 2
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 23
  • Watchers: 3
  • Forks: 7
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-06-06