webbuilders-group/silverstripe-turnstile

A spam protector and form field using CloudFlare's Turnstile

Maintainers

👁 WebbuildersGroup

Package info

github.com/webbuilders-group/silverstripe-turnstile

Type:silverstripe-vendormodule

pkg:composer/webbuilders-group/silverstripe-turnstile

Statistics

Installs: 6 621

Dependents: 1

Suggesters: 0

Stars: 4

Open Issues: 0

2.1.2 2026-06-05 18:37 UTC

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

BSD-3-Clause c74fdba724374274521ce9ef97e3a905508ac7ea

silverstripecloudflareturnstile

This package is auto-updated.

Last update: 2026-06-22 16:42:40 UTC


README

Adds a "spam protection" field to Silverstripe userforms using Cloudflare's Turnstile service.

Maintainer Contact

Requirements

Installation

composer require webbuilders-group/silverstripe-turnstile

Configuration

There are multiple configuration options for the field, you must set the site_key and the secret_key which you can get from Cloudflare. These configuration options must be added to your site's yaml config typically this is app/_config/config.yml.

SilverStripe\SpamProtection\Extension\FormSpamProtectionExtension:
 default_spam_protector: WebbuildersGroup\Turnstile\Forms\TurnstileProtector #Set the default spam protector

WebbuildersGroup\Turnstile\Forms\TurnstileField:
 site_key: '`TURNSTILE_SITE_KEY`' #Your site key (required)
 secret_key: '`TURNSTILE_SECRET_KEY`' #Your secret key (required)
 verify_ssl: true #Allows you to disable php-curl's SSL peer verification by setting this to false (optional, defaults to true)
 default_theme: "light" #Default theme color (optional, light, dark or auto, defaults to light)
 js_onload_callback: null #Onload callback to be called when the JS for Turnstile is loaded
 proxy_server: "`SS_OUTBOUND_PROXY_SERVER`" #Your proxy server address (optional)
 proxy_port: "`SS_OUTBOUND_PROXY_PORT`" #Your proxy server address port (optional)
 proxy_auth: "`SS_OUTBOUND_PROXY_AUTH`" #Your proxy server authentication information (optional)

Adding field labels

If you want to add a field label or help text to the Captcha field you can do so like this:

$form->enableSpamProtection()
 ->Fields()
 ->fieldByName('Captcha')
 ->setTitle('Spam protection')
 ->setDescription('Your description here');

Adding Custom Attributes

Turnstile has a few other options that this module does not out of the box provide hooks for setting, however you can set them your self using setAttribute for example:

$form->enableSpamProtection()
 ->Fields()
 ->fieldByName('Captcha')
 ->setAttribute('data-action', 'action')
 ->setAttribute('data-cdata', 'payload')
 ->setAttribute('data-callback', 'yourChallengeJSCallback')
 ->setAttribute('data-expired-callback', 'yourExpiredJSCallback')
 ->setAttribute('data-error-callback', 'youErrorJSCallback')
 ->setAttribute('data-tabindex', 0);

Testing scenarios

Several dummy site and secret keys are available to help you test different scenarios. Choosing a visible challenge will let you style the widget during development.