Added options for garbage collection frequency and expiration time of captcha image files.

This commit is contained in:
Björn Fromme 2011-11-09 17:58:53 +01:00
parent 572b58a41a
commit c6b47017b2
6 changed files with 62 additions and 9 deletions

View File

@ -25,6 +25,8 @@ class Configuration implements ConfigurationInterface
->scalarNode('as_file')->defaultValue(false)->end()
->scalarNode('image_folder')->defaultValue('captcha')->end()
->scalarNode('web_path')->defaultValue('%kernel.root_dir%/../web')->end()
->scalarNode('gc_freq')->defaultValue(100)->end()
->scalarNode('expiration')->defaultValue(60)->end()
->end()
;
return $treeBuilder;

View File

@ -25,6 +25,8 @@ class GregwarCaptchaExtension extends Extension
$container->setParameter('gregwar_captcha.as_file', $config['as_file']);
$container->setParameter('gregwar_captcha.image_folder', $config['image_folder']);
$container->setParameter('gregwar_captcha.web_path', $config['web_path']);
$container->setParameter('gregwar_captcha.gc_freq', $config['gc_freq']);
$container->setParameter('gregwar_captcha.expiration', $config['expiration']);
$resources = $container->getParameter('twig.form.resources');
$container->setParameter('twig.form.resources',array_merge(array('GregwarCaptchaBundle::captcha.html.twig'), $resources));

View File

@ -9,15 +9,43 @@ use Symfony\Component\Finder\Finder;
*/
class CaptchaGenerator {
/**
* Name of folder for captcha images
* @var string
*/
public $imageFolder;
/**
* Absolute path to public web folder
* @var string
*/
public $webPath;
/**
* Frequence of garbage collection in fractions of 1
* @var int
*/
public $gcFreq;
/**
* Maximum age of images in minutes
* @var int
*/
public $expiration;
/**
* The captcha code
* @var string
*/
public $value;
public function __construct($value, $imageFolder, $webPath)
public function __construct($value, $imageFolder, $webPath, $gcFreq, $expiration)
{
$this->value = $value;
$this->imageFolder = $imageFolder;
$this->webPath = $webPath;
$this->gcFreq = intval($gcFreq);
$this->expiration = intval($expiration);
}
public function getCode($width = 120, $height = 40)
@ -35,7 +63,7 @@ class CaptchaGenerator {
*/
public function getFile($width = 120, $height = 40)
{
if (rand(0, 10) == 5) {
if (mt_rand(1, $this->gcFreq) == 1) {
$this->garbageCollection();
}
@ -51,12 +79,13 @@ class CaptchaGenerator {
public function garbageCollection()
{
$finder = new Finder();
$criteria = sprintf('>= now - %s minutes', $this->expiration);
$finder->in($this->webPath . '/' . $this->imageFolder)
->date('since 10 minutes ago');
->date($criteria);
foreach($finder->files() as $file)
{
@unlink($file->getPathname());
unlink($file->getPathname());
}
}
@ -133,6 +162,10 @@ class CaptchaGenerator {
imagejpeg($out, null, 15);
return ob_get_clean();
} else {
// Check if folder exists and create it if not
if (!file_exists($this->webPath . '/' . $this->imageFolder)) {
mkdir($this->webPath . '/' . $this->imageFolder, 0755);
}
$filename = md5(uniqid()) . '.jpg';
$filepath = $this->webPath . '/' . $this->imageFolder . '/' . $filename;
imagejpeg($out, $filepath, 15);

View File

@ -103,6 +103,8 @@ You can define the following type option :
* **as_file**: if set to true an image file will be created instead of embedding to please IE6/7 (default=false)
* **image_folder**: name of folder for captcha images relative to public web folder in case **as_file** ist set to true (default="captcha")
* **web_path**: absolute path to public web folder (default="%kernel.root_dir%/../web")
* **gc_freq**: frequency of garbage collection in fractions of 1 (default=100)
* **expiration**: maximum lifetime of captcha image files in minutes (default=60)
Example :
@ -142,8 +144,8 @@ The default rendering is:
Image creation
==============
If you choose to use real images instead of embedded the widget will execute a garbage collection
randomly and delete images that are older than 10 minutes.
If you choose to use image files instead of embedding the widget will execute a garbage collection
randomly and delete images that exceed the configured lifetime.
License
=======

View File

@ -3,6 +3,6 @@ services:
# captcha type
captcha.type:
class: Gregwar\CaptchaBundle\Type\CaptchaType
arguments: [ "@session", %gregwar_captcha.width%, %gregwar_captcha.height%, %gregwar_captcha.length%, %gregwar_captcha.as_file%, %gregwar_captcha.image_folder%, %gregwar_captcha.web_path% ]
arguments: [ "@session", %gregwar_captcha.width%, %gregwar_captcha.height%, %gregwar_captcha.length%, %gregwar_captcha.as_file%, %gregwar_captcha.image_folder%, %gregwar_captcha.web_path%, %gregwar_captcha.gc_freq%, %gregwar_captcha.expiration% ]
tags:
- { name: form.type, alias: captcha }

View File

@ -58,6 +58,18 @@ class CaptchaType extends AbstractType
*/
protected $webPath;
/**
* Frequence of garbage collection in fractions of 1
* @var int
*/
public $gcFreq;
/**
* Maximum age of images in minutes
* @var int
*/
public $expiration;
/**
* The session
* @var Symfony\Component\HttpFoundation\Session
@ -67,7 +79,7 @@ class CaptchaType extends AbstractType
private $key = 'captcha';
public function __construct(Session $session, $width, $height, $length, $asFile, $imageFolder, $webPath)
public function __construct(Session $session, $width, $height, $length, $asFile, $imageFolder, $webPath, $gcFreq, $expiration)
{
$this->session = $session;
$this->width = $width;
@ -76,6 +88,8 @@ class CaptchaType extends AbstractType
$this->asFile = $asFile;
$this->imageFolder = $imageFolder;
$this->webPath = $webPath;
$this->gcFreq = $gcFreq;
$this->expiration = $expiration;
}
public function buildForm(FormBuilder $builder, array $options)
@ -87,7 +101,7 @@ class CaptchaType extends AbstractType
public function buildView(FormView $view, FormInterface $form)
{
$generator = new CaptchaGenerator($this->generateCaptchaValue(), $this->imageFolder, $this->webPath);
$generator = new CaptchaGenerator($this->generateCaptchaValue(), $this->imageFolder, $this->webPath, $this->gcFreq, $this->expiration);
if ($this->asFile) {
$view->set('captcha_code', $generator->getFile($this->width, $this->height));