On this page
CAPTCHA Adapters
laminas-captcha defines an abstraction for CAPTCHA implementations via
Laminas\Captcha\AdapterInterface
, and provides several implementations.
The AdapterInterface
All CAPTCHA adapters implement Laminas\Captcha\AdapterInterface
:
namespace Laminas\Captcha;
use Laminas\Validator\ValidatorInterface;
interface AdapterInterface extends ValidatorInterface
{
public function generate();
public function setName($name);
public function getName();
// Get helper name used for rendering this CAPTCHA type
public function getHelperName();
}
The name
setter and getter are used to specify and retrieve the CAPTCHA identifier.
The most interesting method is generate()
, which is used to create the CAPTCHA
token. This process typically will store the token in the session so that you
may compare against it in subsequent requests.
Most implementations also define a render()
method (or delegate to one) in
order to produce a CAPTCHA representation, be it an image, a figlet, a logic
problem, or some other CAPTCHA.
Laminas\Captcha\AbstractWord
Laminas\Captcha\AbstractWord
is an abstract adapter that serves as the base class
for most other CAPTCHA adapters. It provides mutators for specifying word
length, session TTL and the session container object to use; it also
encapsulates validation logic.
By default, the word length is 8 characters, the session timeout is 5 minutes,
and Laminas\Session\Container
is used for persistence (using the namespace
"Laminas\Form\Captcha\<captcha ID>
").
In addition to the methods required by the Laminas\Captcha\AdapterInterface
interface,
Laminas\Captcha\AbstractWord
exposes the following methods:
setWordLen($length)
andgetWordLen()
allow you to specify the length of the generated "word" in characters, and to retrieve the current value.setTimeout($ttl)
andgetTimeout()
allow you to specify the time-to-live of the session token, and to retrieve the current value.$ttl
should be specified in seconds.setUseNumbers($numbers)
andgetUseNumbers()
allow you to specify if numbers will be considered as possible characters for the random word, or if only letters would be used.setSessionClass($class)
andgetSessionClass()
allow you to specify an alternateLaminas\Session\Container
implementation to use to persist the CAPTCHA token and to retrieve the current value.getId()
allows you to retrieve the current token identifier.getWord()
allows you to retrieve the generated word to use with the CAPTCHA. It will generate the word for you if none has been generated yet.setSession(Laminas\Session\Container $session)
allows you to specify a session object to use for persisting the CAPTCHA token.getSession()
allows you to retrieve the current session object.
All word CAPTCHAs allow you to pass an array of options or a Traversable
object to the constructor, or, alternately, pass them to setOptions()
. By
default, the wordLen
, timeout
, and sessionClass
keys may all be used. Each
concrete implementation may define additional keys or utilize the options in
other ways.
AbstractWord is marked abstract
Laminas\Captcha\AbstractWord
is an abstract class and may not be instantiated directly.
Laminas\Captcha\Dumb
The Laminas\Captcha\Dumb
adapter is mostly self-descriptive. It provides a random
string that must be typed in reverse to validate. As such, it's not a good
CAPTCHA solution and should only be used for testing. It extends
Laminas\Captcha\AbstractWord
.
Laminas\Captcha\Figlet
The Laminas\Captcha\Figlet
adapter utilizes Laminas\Text\Figlet
to present a
figlet to the user.
Options passed to the constructor will also be passed to the
Laminas\Text\Figlet
object. See the
Laminas\Text\Figlet
documentation for details on what configuration options are available.
Laminas\Captcha\Image
The Laminas\Captcha\Image
adapter takes the generated word and renders it as an
image, performing various skewing permutations to make it difficult to
automatically decipher. It requires the GD extension,
compiled with TrueType or Freetype support. Currently, the Laminas\Captcha\Image
adapter can only generate PNG images.
Laminas\Captcha\Image
extends Laminas\Captcha\AbstractWord
, and additionally
exposes the following methods:
setExpiration($expiration)
andgetExpiration()
allow you to specify a maximum lifetime the CAPTCHA image may reside on the filesystem. This is typically longer than the session lifetime. Garbage collection is run periodically each time the CAPTCHA object is invoked, deleting all images that have expired. Expiration values should be specified in seconds.setGcFreq($gcFreq)
andgetGcFreg()
allow you to specify how frequently garbage collection should run. Garbage collection will run every1/$gcFreq
calls. The default is 100.setFont($font)
andgetFont()
allow you to specify the font you will use.$font
should be a fully qualified path to the font file. This value is required; the CAPTCHA will throw an exception during generation if the font file has not been specified.setFontSize($fsize)
andgetFontSize()
allow you to specify the font size in pixels for generating the CAPTCHA. The default is 24px.setHeight($height)
andgetHeight()
allow you to specify the height in pixels of the generated CAPTCHA image. The default is 50px.setWidth($width)
andgetWidth()
allow you to specify the width in pixels of the generated CAPTCHA image. The default is 200px.setImgDir($imgDir)
andgetImgDir()
allow you to specify the directory for storing CAPTCHA images. The default is./images/captcha/
, relative to the bootstrap script (typicallypublic/index.php
, resulting inpublic/images/captcha/
).setImgUrl($imgUrl)
andgetImgUrl()
allow you to specify the relative path to a CAPTCHA image to use for HTML markup. The default is/images/captcha/
.setSuffix($suffix)
andgetSuffix()
allow you to specify the filename suffix for the CAPTCHA image. The default is.png
. Note: changing this value will not change the type of the generated image.setDotNoiseLevel($level)
andgetDotNoiseLevel()
, along withsetLineNoiseLevel($level)
andgetLineNoiseLevel()
, allow you to control how much "noise" in the form of random dots and lines the image would contain. Each unit of$level
produces one random dot or line. The default is 100 dots and 5 lines. The noise is added twice, both before and after the image distortion transformation.
All of the above options may be passed to the constructor by simply removing the 'set' method prefix and casting the initial letter to lowercase: "suffix", "height", "imgUrl", etc.
Laminas\Captcha\ReCaptcha
The Laminas\Captcha\ReCaptcha
adapter uses Laminas\Service\ReCaptcha\ReCaptcha
to generate and validate CAPTCHAs. It exposes the following methods:
setSecretKey($key)
andgetSecretKey()
allow you to specify the secret key to use for the ReCaptcha service. This must be specified during construction, although it may be overridden at any point.setSiteKey($key)
andgetSiteKey()
allow you to specify the site key to use with the ReCaptcha service. This must be specified during construction, although it may be overridden at any point.setService(Laminas\ReCaptcha\ReCaptcha $service)
andgetService()
allow you to set and get the ReCaptcha service object.
When constructing Laminas\Captcha\ReCaptcha
, you can use the same set of keys
to the $options
array as supported by Laminas\Service\ReCaptcha\ReCaptcha
.
Updating from v2 to v3 of this adapter
As this adapter takes the same option keys as Laminas\Service\ReCaptcha\ReCaptcha
which supports Recaptcha API v2, this
component no longer supports the ssl
, xhtml
and lang
keys in the $options
array that is passed to the constructor.
The options keys pubKey
and privKey
and the getters and setters for these
keys are supported in this version, but are deprecated.