-
-
Notifications
You must be signed in to change notification settings - Fork 25
Documentation
This is documentation (work in process) for the upcoming release of IconCaptcha 4.
- PHP >= 7.4
- Have the JSON extension installed and enabled.
- Have the GD extension or ImageMagick installed and enabled for image processing.
In order to use one of the provided database storage drivers, ensure these requirements are met.
- Have the PDO extension installed.
- Have the required PDO driver for your database type installed and enabled.
- For MySQL: Driver
- For PostgreSQL: Driver
- For SQLite: Driver
- For SQL Server: Driver or ODBC driver
Install IconCaptcha with Composer by using the following command.
composer require fabianwennink/iconcaptcha
- Download IconCaptcha for PHP.
- Download the IconCaptcha client-side package.
- Unpack both repositories to somewhere on your computer.
- Drag the content of the
dist/
folder of the IconCaptcha client-side package into theassets/
folder of the IconCaptcha PHP package. - Check the
assets/
folder and make sure you see the following sub-folders:css/
,icons/
andjs/
.
Note: To make it easier to try out the example captchas, the client-side package is already included in this repository. However, these files might not always be up-to-date. To ensure you always have the latest version, please follow the instructions above.
Add the IconCaptcha widget inside the form you wish to protect. The widget will be generated inside this element.
Use the data-theme
attribute to specify which theme should be used. By default, IconCaptcha comes with 2 themes: light
and dark
. If no theme is given, IconCaptcha will default to the light theme.
To further improve the security of your form, a CSRF token may be added as shown in the example. Note that if you can't run PHP in your HTML page, this feature will not function and should be disabled in the IconCaptcha configuration (by setting the token
option to false
).
<form method="post">
<!-- The IconCaptcha widget will be rendered in this element -->
<div class="iconcaptcha-widget" data-theme="light"></div>
<!-- Additional security token to prevent CSRF. Optional but highly recommended - disable in config. -->
<?php echo \IconCaptcha\Token\IconCaptchaToken::render(); ?>
</form>
<!-- Include the IconCaptcha assets - Change the paths according to your installation -->
<link href="/path/to/assets/css/icon-captcha.min.css" rel="stylesheet" type="text/css">
<script src="/path/to/assets/js/icon-captcha.min.js" type="text/javascript"></script>
The following code processes every captcha request and can be found in captcha-request.php. It must be accessible as an endpoint to be used in the client-side. In the JavaScript code, this endpoint must be specified in the validationPath
configuration option. The captcha-config.php script loaded in the example below contains the IconCaptcha configuration and must be included before the IconCaptcha
class is called.
If you haven't installed installed IconCaptcha with Composer, make sure you still load the autoloader included in the downloaded ZIP.
<?php
require_once __DIR__ . '/../vendor/autoload.php';
use IconCaptcha\IconCaptcha;
try {
// Start a session.
// Note: check the documentation to see whether you need this.
session_start();
// Load the IconCaptcha options.
$options = require 'captcha-config.php';
// Create an instance of IconCaptcha.
$captcha = new IconCaptcha($options);
// Handle the CORS preflight request.
$captcha->handleCors();
// Process the request.
$captcha->request()->process();
// Request was not supported/recognized.
http_response_code(400);
} catch (Throwable $exception) {
http_response_code(500);
// ADD YOUR CUSTOM ERROR LOGGING SERVICE HERE.
}
To render the IconCaptcha widget, the following code should be added to the page. Both plain JavaScript and jQuery are supported and function exactly the same. Use the implementation you prefer. An example for jQuery can be found further down.
<script type="text/javascript">
// JavaScript implementation.
document.addEventListener('DOMContentLoaded', function() {
IconCaptcha.init('.iconcaptcha-widget', {
general: {
validationPath: '/path/to/captcha-request.php', // required, change path according to your installation.
fontFamily: 'inherit',
credits: 'show',
},
security: {
clickDelay: 500,
hoverDetection: true,
enableInitialMessage: true,
initializeDelay: 500,
selectionResetDelay: 3000,
loadingAnimationDelay: 1000,
},
messages: {
initialization: {
verify: 'Verify that you are human.',
loading: 'Loading challenge...',
},
header: 'Select the image displayed the <u>least</u> amount of times',
correct: 'Verification complete.',
incorrect: {
title: 'Uh oh.',
subtitle: "You've selected the wrong image.",
},
timeout: {
title: 'Please wait.',
subtitle: 'You made too many incorrect selections.'
}
}
});
});
</script>
If you wisht to use jQuery, make sure that the jQuery library is loaded before initializing IconCaptcha.
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script type="text/javascript">
// IconCaptcha hooks into jQuery, if you rather use jQuery instead of plain JavaScript.
// Note that the jQuery library should be loaded prior to initializing IconCaptcha.
$(document).ready(function() {
$('.iconcaptcha-widget').iconCaptcha({
// The captcha options go here like demonstrated in the example above.
})
});
</script>
TODO
It is possible to manually reset a specific captcha widget, and even every captcha widget present on the webpage.
To do so, simply call the IconCaptcha.reset()
function from within your custom JavaScript code. This will reset every rendered widget on the page. If you only wish to target a specific widget, pass the widget identifier to the reset function, e.g. IconCaptcha.reset('5fd3c68181999b447d4c89df5818e8e3ed9142dc')
.
TODO
IconCaptcha 4
- Getting Started
- Implementation
- Configuration
- Storage
- Session
- Challenge Generator
- Validation
- Hooks & Events
- Token
- Themes
- Localization
IconCaptcha 3 (outdated)