1. Go to this page and download the library: Download darkghosthunter/captchavel library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
darkghosthunter / captchavel example snippets
use App\Http\Controllers\Auth\LoginController;
use DarkGhostHunter\Captchavel\ReCaptcha;
Route::post('login', [LoginController::class, 'login'])
->middleware(ReCaptcha::checkbox());
use App\Http\Controllers\Auth\LoginController;
use DarkGhostHunter\Captchavel\ReCaptcha;
Route::post('login', [LoginController::class, 'login'])
->middleware(ReCaptcha::invisible()->remember());
Route::post('message', [ChatController::class, 'login'])
->middleware(ReCaptcha::checkbox()->rememberForever());
use App\Http\Controllers\Auth\LoginController;
use DarkGhostHunter\Captchavel\ReCaptcha;
Route::post('login', [LoginController::class, 'login'])
->middleware(ReCaptcha::checkbox()->input('recaptcha_input'));
use App\Http\Controllers\CommentController;
use DarkGhostHunter\Captchavel\ReCaptcha;
Route::post('comment', [CommentController::class, 'create'])
->middleware(ReCaptcha::score());
public function store(Request $request, Post $post)
{
$request->validate([
'body' => 'comment as "moderated" if it was a written by robot.
$comment->moderated = $request->isRobot();
$comment->save();
return view('post.comment.show', ['comment' => $comment]);
}
use DarkGhostHunter\Captchavel\Facades\Captchavel;
$response = Captchavel::response();
if ($response->score > 0.2) {
return 'Try again!';
}
use App\Http\Controllers\CommentController;use DarkGhostHunter\Captchavel\ReCaptcha;
Route::post('comment', [CommentController::class, 'create'])
->middleware(ReCaptcha::score()->threshold(0.7)->action('post-comment')->input('my_score_input');
use App\Http\Controllers\CommentController;
use App\Http\Controllers\MessageController;
use DarkGhostHunter\Captchavel\ReCaptcha;
use Illuminate\Support\Facades\Route
// Don't challenge users authenticated on the default (web) guard.
Route::post('message/send', [MessageController::class, 'send'])
->middleware(ReCaptcha::invisible()->forGuests());
// Don't challenge users authenticated on the "admin" and "moderator" guards.
Route::post('comment/store', [CommentController::class, 'store'])
->middleware(ReCaptcha::score(0.7)->action('comment.store')->forGuests('admin', 'moderator'));
public function test_this_route()
{
$this->app['config']->set('captchavel.fake', true);
// Do some testing...
}
use DarkGhostHunter\Captchavel\Facades\Captchavel;
// Let the user login normally.
Captchavel::fakeHuman();
$this->post('login', [
'email' => '[email protected]',
'password' => '123456',
])->assertRedirect('user.welcome');
// ... but if it's a robot, force him to use 2FA.
Captchavel::fakeRobot();
$this->post('login', [
'email' => '[email protected]',
'password' => '123456',
])->assertViewIs('login.2fa');
use DarkGhostHunter\Captchavel\Facades\Captchavel;
// A human comment should be public.
Captchavel::fakeScore(0.7);
$this->post('comment', [
'body' => 'This comment was made by a human',
])->assertSee('Your comment has been posted!');
// A robot should have its comment moderated.
Captchavel::fakeScore(0.4);
$this->post('comment', [
'body' => 'Comment made by robot.',
])->assertSee('Your comment will be reviewed before publishing.');