Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rubensrocha/h-captcha
https://github.com/rubensrocha/h-captcha
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/rubensrocha/h-captcha
- Owner: rubensrocha
- License: mit
- Created: 2020-11-29T22:39:24.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-29T23:48:25.000Z (about 4 years ago)
- Last Synced: 2024-10-12T11:42:55.415Z (2 months ago)
- Language: PHP
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hCaptcha
Project based on [laravel-reCAPTCHA](https://github.com/Dylanchouxd/laravel-reCAPTCHA) development.## Installation
```
composer require rubensrocha/h-captcha
```## Laravel 5 and above
### Setup
In `app/config/app.php` add the following :
1- The ServiceProvider to the providers array :
```php
Rubensrocha\HCaptcha\HCaptchaServiceProvider::class,
```2- The class alias to the aliases array :
```php
'HCaptcha' => Rubensrocha\HCaptcha\Facades\HCaptcha::class,
```3- Publish the config file
```ssh
php artisan vendor:publish --provider="Rubensrocha\HCaptcha\HCaptchaServiceProvider"
```### Configuration
Add `HCAPTCHA_SECRET` and `HCAPTCHA_SITEKEY` in **.env** file :
```
HCAPTCHA_SECRET=secret-key
HCAPTCHA_SITEKEY=site-key
```(You can obtain them from [here](https://docs.hcaptcha.com/api#getapikey))
### Usage
#### Init js source
With default options :
```php
{!! HCaptcha::renderJs() !!}
```With [language support](https://docs.hcaptcha.com/configuration) or [onloadCallback](https://docs.hcaptcha.com/configuration) option :
```php
{!! HCaptcha::renderJs('fr', true, 'recaptchaCallback') !!}
```#### Display reCAPTCHA
Default widget :
```php
{!! HCaptcha::display() !!}
```With [custom attributes](https://docs.hcaptcha.com/configuration#themes) (theme, size, callback ...) :
```php
{!! HCaptcha::display(['data-theme' => 'dark']) !!}
```Invisible reCAPTCHA using a [submit button](https://docs.hcaptcha.com/configuration#themes):
```php
{!! HCaptcha::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.#### Validation
Add `'h-captcha-response' => 'required|captcha'` to rules array :
```php
$validate = Validator::make(Input::all(), [
'h-captcha-response' => 'required|HCaptcha'
]);```
##### Custom Validation Message
Add the following values to the `custom` array in the `validation` language file :
```php
'custom' => [
'h-captcha-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` :
```php
@if ($errors->has('h-captcha-response'))
{{ $errors->first('h-captcha-response') }}
@endif
```### Testing
When using the [Laravel Testing functionality](http://laravel.com/docs/5.5/testing), you will need to mock out the response for the captcha form element.
So for any form tests involving the captcha, you can do this by mocking the facade behavior:
```php
// prevent validation error on captcha
HCaptcha::shouldReceive('verifyResponse')
->once()
->andReturn(true);// provide hidden input for your 'required' validation
HCaptcha::shouldReceive('display')
->zeroOrMoreTimes()
->andReturn('');
```You can then test the remainder of your form as normal.
When using HTTP tests you can add the `h-captcha-response` to the request body for the 'required' validation:
```php
// prevent validation error on captcha
HCaptcha::shouldReceive('verifyResponse')
->once()
->andReturn(true);// POST request, with request body including g-recaptcha-response
$response = $this->json('POST', '/register', [
'h-captcha-response' => '1',
'name' => 'John',
'email' => '[email protected]',
'password' => '123456',
'password_confirmation' => '123456',
]);
```## Without Laravel
Checkout example below:
```php
verifyResponse($_POST['h-captcha-response']));
exit();
}?>
display(); ?>
SubmitrenderJs(); ?>
```