import v1.1.0_beta1 | 2009-08-21

This commit is contained in:
2019-07-17 22:16:19 +02:00
parent 2c1152f0d3
commit 8dee6b1a10
2306 changed files with 251360 additions and 23428 deletions

View File

@ -50,7 +50,7 @@ interface Zend_Captcha_Adapter extends Zend_Validate_Interface
* @param mixed $element
* @return string
*/
public function render(Zend_View_Interface $view, $element = null);
public function render(Zend_View_Interface $view = null, $element = null);
/**
* Set captcha name

View File

@ -39,11 +39,11 @@ class Zend_Captcha_Dumb extends Zend_Captcha_Word
/**
* Render the captcha
*
* @param Zend_View $view
* @param Zend_View_Interface $view
* @param mixed $element
* @return string
*/
public function render(Zend_View_Interface $view, $element = null)
public function render(Zend_View_Interface $view = null, $element = null)
{
return 'Please type this word backwards: <b>'
. strrev($this->getWord())

View File

@ -72,11 +72,11 @@ class Zend_Captcha_Figlet extends Zend_Captcha_Word
/**
* Display the captcha
*
* @param Zend_View $view
* @param Zend_View_Interface $view
* @param mixed $element
* @return string
*/
public function render(Zend_View_Interface $view, $element = null)
public function render(Zend_View_Interface $view = null, $element = null)
{
return '<pre>'
. $this->_figlet->render($this->getWord())

View File

@ -17,22 +17,22 @@
* @subpackage Adapter
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Image.php 14290 2009-03-13 12:40:14Z alexander $
*/
/** Zend_Captcha_Word */
require_once 'Zend/Captcha/Word.php';
/**
* Image-based captcha element
*
* Image-based captcha element
*
* Generates image displaying random word
*
*
* @category Zend
* @package Zend_Captcha
* @subpackage Adapter
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: $
*/
class Zend_Captcha_Image extends Zend_Captcha_Word
{
@ -49,7 +49,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
* @var string
*/
protected $_imgUrl = "/images/captcha/";
/**
* Image's alt tag content
*
@ -105,7 +105,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
* @var int
*/
protected $_gcFreq = 10;
/**
* How long to keep generated images
*
@ -114,7 +114,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
protected $_expiration = 600;
/**
* Number of noise dots on image
* Number of noise dots on image
* Used twice - before and after transform
*
* @var int
@ -160,17 +160,17 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
*
* @return int
*/
public function getExpiration()
public function getExpiration()
{
return $this->_expiration;
}
/**
* Get garbage collection frequency
*
* @return int
*/
public function getGcFreq()
public function getGcFreq()
{
return $this->_gcFreq;
}
@ -179,37 +179,37 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
*
* @return string
*/
public function getFont()
public function getFont()
{
return $this->_font;
}
/**
* Get font size
*
* @return int
*/
public function getFontSize()
public function getFontSize()
{
return $this->_fsize;
}
/**
* Get captcha image height
*
* @return int
*/
public function getHeight()
public function getHeight()
{
return $this->_height;
}
/**
* Get captcha image directory
*
* @return string
*/
public function getImgDir()
public function getImgDir()
{
return $this->_imgDir;
}
@ -218,7 +218,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
*
* @return string
*/
public function getImgUrl()
public function getImgUrl()
{
return $this->_imgUrl;
}
@ -227,7 +227,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
*
* @return string
*/
public function getSuffix()
public function getSuffix()
{
return $this->_suffix;
}
@ -236,7 +236,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
*
* @return int
*/
public function getWidth()
public function getWidth()
{
return $this->_width;
}
@ -264,7 +264,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
$this->_lineNoiseLevel = $lineNoiseLevel;
return $this;
}
/**
* Set captcha expiration
*
@ -276,14 +276,14 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
$this->_expiration = $expiration;
return $this;
}
/**
* Set garbage collection frequency
*
* @param int $gcFreq
* @return Zend_Captcha_Image
*/
public function setGcFreq($gcFreq)
public function setGcFreq($gcFreq)
{
$this->_gcFreq = $gcFreq;
return $this;
@ -295,55 +295,55 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
* @param string $font
* @return Zend_Captcha_Image
*/
public function setFont($font)
public function setFont($font)
{
$this->_font = $font;
return $this;
}
/**
* Set captcha font size
*
* @param int $fsize
* @return Zend_Captcha_Image
*/
public function setFontSize($fsize)
public function setFontSize($fsize)
{
$this->_fsize = $fsize;
return $this;
}
/**
* Set captcha image height
*
* @param int $height
* @return Zend_Captcha_Image
*/
public function setHeight($height)
public function setHeight($height)
{
$this->_height = $height;
return $this;
}
/**
* Set captcha image storage directory
*
* @param string $imgDir
* @return Zend_Captcha_Image
*/
public function setImgDir($imgDir)
public function setImgDir($imgDir)
{
$this->_imgDir = rtrim($imgDir, "/\\") . '/';
return $this;
}
/**
* Set captcha image base URL
*
* @param string $imgUrl
* @return Zend_Captcha_Image
*/
public function setImgUrl($imgUrl)
public function setImgUrl($imgUrl)
{
$this->_imgUrl = rtrim($imgUrl, "/\\") . '/';
return $this;
@ -356,47 +356,47 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
$this->_imgAlt = $imgAlt;
return $this;
}
/**
* Set captch image filename suffix
*
* @param string $suffix
* @return Zend_Captcha_Image
*/
public function setSuffix($suffix)
public function setSuffix($suffix)
{
$this->_suffix = $suffix;
return $this;
}
/**
* Set captcha image width
*
* @param int $width
* @return Zend_Captcha_Image
*/
public function setWidth($width)
public function setWidth($width)
{
$this->_width = $width;
return $this;
}
/**
* Generate random frequency
*
*
* @return float
*/
protected function _randomFreq()
protected function _randomFreq()
{
return mt_rand(700000, 1000000) / 15000000;
}
/**
* Generate random phase
*
*
* @return float
*/
protected function _randomPhase()
protected function _randomPhase()
{
// random phase from 0 to pi
return mt_rand(0, 3141592) / 1000000;
@ -404,41 +404,47 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
/**
* Generate random character size
*
*
* @return int
*/
protected function _randomSize()
protected function _randomSize()
{
return mt_rand(300, 700) / 100;
}
/**
* Generate captcha
*
*
* @return string captcha ID
*/
public function generate()
{
$id = parent::generate();
$tries = 5;
// If there's already such file, try creating a new ID
while($tries-- && file_exists($this->getImgDir() . $id . $this->getSuffix())) {
$id = $this->_generateRandomId();
$this->_setId($id);
}
$this->_generateImage($id, $this->getWord());
if (mt_rand(0, $this->getGcFreq()) == 1) {
if (mt_rand(1, $this->getGcFreq()) == 1) {
$this->_gc();
}
return $id;
}
/**
* Generate image captcha
*
*
* Override this function if you want different image generator
* Wave transform from http://www.captcha.ru/captchas/multiwave/
*
* @param string $id Captcha ID
* @param string $word Captcha word
*/
protected function _generateImage($id, $word)
{
protected function _generateImage($id, $word)
{
if (!extension_loaded("gd")) {
require_once 'Zend/Captcha/Exception.php';
throw new Zend_Captcha_Exception("Image CAPTCHA requires GD extension");
@ -460,11 +466,11 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
require_once 'Zend/Captcha/Exception.php';
throw new Zend_Captcha_Exception("Image CAPTCHA requires font");
}
$w = $this->getWidth();
$h = $this->getHeight();
$fsize = $this->getFontSize();
$img_file = $this->getImgDir() . $id . $this->getSuffix();
if(empty($this->_startImage)) {
$img = imagecreatetruecolor($w, $h);
@ -472,7 +478,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
$img = imagecreatefrompng($this->_startImage);
if(!$img) {
require_once 'Zend/Captcha/Exception.php';
throw new Zend_Captcha_Exception("Can not load start image");
throw new Zend_Captcha_Exception("Can not load start image");
}
$w = imagesx($img);
$h = imagesy($img);
@ -484,7 +490,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
$x = ($w - ($textbox[2] - $textbox[0])) / 2;
$y = ($h - ($textbox[7] - $textbox[1])) / 2;
imagefttext($img, $fsize, 0, $x, $y, $text_color, $font, $word);
// generate noise
for ($i=0; $i<$this->_dotNoiseLevel; $i++) {
imagefilledellipse($img, mt_rand(0,$w), mt_rand(0,$h), 2, 2, $text_color);
@ -492,7 +498,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
for($i=0; $i<$this->_lineNoiseLevel; $i++) {
imageline($img, mt_rand(0,$w), mt_rand(0,$h), mt_rand(0,$w), mt_rand(0,$h), $text_color);
}
// transformed image
$img2 = imagecreatetruecolor($w, $h);
$bg_color = imagecolorallocate($img2, 255, 255, 255);
@ -510,13 +516,13 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
$szx = $this->_randomSize();
$szy = $this->_randomSize();
for ($x = 0; $x < $w; $x++) {
for ($y = 0; $y < $h; $y++) {
$sx = $x + (sin($x*$freq1 + $ph1) + sin($y*$freq3 + $ph3)) * $szx;
$sy = $y + (sin($x*$freq2 + $ph2) + sin($y*$freq4 + $ph4)) * $szy;
if ($sx < 0 || $sy < 0 || $sx >= $w - 1 || $sy >= $h - 1) {
if ($sx < 0 || $sy < 0 || $sx >= $w - 1 || $sy >= $h - 1) {
continue;
} else {
$color = (imagecolorat($img, $sx, $sy) >> 16) & 0xFF;
@ -545,7 +551,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
imagesetpixel($img2, $x, $y, imagecolorallocate($img2, $newcolor, $newcolor, $newcolor));
}
}
// generate noise
for ($i=0; $i<$this->_dotNoiseLevel; $i++) {
imagefilledellipse($img2, mt_rand(0,$w), mt_rand(0,$h), 2, 2, $text_color);
@ -553,12 +559,12 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
for ($i=0; $i<$this->_lineNoiseLevel; $i++) {
imageline($img2, mt_rand(0,$w), mt_rand(0,$h), mt_rand(0,$w), mt_rand(0,$h), $text_color);
}
imagepng($img2, $img_file);
imagedestroy($img);
imagedestroy($img2);
}
/**
* Remove old files from image directory
*
@ -566,7 +572,12 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
protected function _gc()
{
$expire = time() - $this->getExpiration();
foreach (new DirectoryIterator($this->getImgDir()) as $file) {
$imgdir = $this->getImgDir();
if(!$imgdir || strlen($imgdir) < 2) {
// safety guard
return;
}
foreach (new DirectoryIterator($imgdir) as $file) {
if (!$file->isDot() && !$file->isDir()) {
if ($file->getMTime() < $expire) {
unlink($file->getPathname());
@ -574,16 +585,16 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
}
}
}
/**
* Display the captcha
*
* @param Zend_View $view
* @param Zend_View_Interface $view
* @param mixed $element
* @return string
*/
public function render(Zend_View_Interface $view, $element = null)
public function render(Zend_View_Interface $view = null, $element = null)
{
return '<img alt="'.$this->getImgAlt().'" src="' . $this->getImgUrl() . $this->getId() . $this->getSuffix() . '"/><br/>';
return '<img width="'.$this->getWidth().'" height="'.$this->getHeight().'" alt="'.$this->getImgAlt().'" src="' . $this->getImgUrl() . $this->getId() . $this->getSuffix() . '"/><br/>';
}
}

View File

@ -27,9 +27,9 @@ require_once 'Zend/Service/ReCaptcha.php';
/**
* ReCaptcha adapter
*
*
* Allows to insert captchas driven by ReCaptcha service
*
*
* @see http://recaptcha.net/apidocs/captcha/
*
* @category Zend
@ -37,32 +37,18 @@ require_once 'Zend/Service/ReCaptcha.php';
* @subpackage Adapter
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: $
* @version $Id: ReCaptcha.php 16127 2009-06-18 01:12:54Z stas $
*/
class Zend_Captcha_ReCaptcha extends Zend_Captcha_Base
class Zend_Captcha_ReCaptcha extends Zend_Captcha_Base
{
/**
* Recaptcha public key
*
* @var string
*/
protected $_pubkey;
/**
* Recaptcha private key
*
* @var string
*/
protected $_privkey;
/**@+
* ReCaptcha Field names
* ReCaptcha Field names
* @var string
*/
protected $_CHALLENGE = 'recaptcha_challenge_field';
protected $_RESPONSE = 'recaptcha_response_field';
/**@-*/
/**
* Recaptcha service object
*
@ -72,7 +58,7 @@ class Zend_Captcha_ReCaptcha extends Zend_Captcha_Base
/**
* Parameters defined by the service
*
*
* @var array
*/
protected $_serviceParams = array();
@ -95,64 +81,64 @@ class Zend_Captcha_ReCaptcha extends Zend_Captcha_Base
self::ERR_CAPTCHA => 'Failed to validate captcha',
self::BAD_CAPTCHA => 'Captcha value is wrong: %value%',
);
/**
* Retrieve ReCaptcha Private key
*
* @return string
*/
public function getPrivkey()
public function getPrivkey()
{
return $this->_privkey;
return $this->getService()->getPrivateKey();
}
/**
* Retrieve ReCaptcha Public key
*
* @return string
*/
public function getPubkey()
public function getPubkey()
{
return $this->_pubkey;
return $this->getService()->getPublicKey();
}
/**
* Set ReCaptcha Private key
*
* @param string $_privkey
* @param string $privkey
* @return Zend_Captcha_ReCaptcha
*/
public function setPrivkey($privkey)
public function setPrivkey($privkey)
{
$this->_privkey = $privkey;
$this->getService()->setPrivateKey($privkey);
return $this;
}
/**
* Set ReCaptcha public key
*
* @param string $_pubkey
* @param string $pubkey
* @return Zend_Captcha_ReCaptcha
*/
public function setPubkey($pubkey)
public function setPubkey($pubkey)
{
$this->_pubkey = $pubkey;
$this->getService()->setPublicKey($pubkey);
return $this;
}
/**
* Constructor
*
* @param array|Zend_Config $options
* @param array|Zend_Config $options
* @return void
*/
public function __construct($options = null)
{
parent::__construct($options);
$this->setService(new Zend_Service_ReCaptcha($this->getPubKey(), $this->getPrivKey()));
$this->setService(new Zend_Service_ReCaptcha());
$this->_serviceParams = $this->getService()->getParams();
parent::__construct($options);
if ($options instanceof Zend_Config) {
$options = $options->toArray();
}
@ -163,8 +149,8 @@ class Zend_Captcha_ReCaptcha extends Zend_Captcha_Base
/**
* Set service object
*
* @param Zend_Service_ReCaptcha $service
*
* @param Zend_Service_ReCaptcha $service
* @return Zend_Captcha_ReCaptcha
*/
public function setService(Zend_Service_ReCaptcha $service)
@ -175,7 +161,7 @@ class Zend_Captcha_ReCaptcha extends Zend_Captcha_Base
/**
* Retrieve ReCaptcha service object
*
*
* @return Zend_Service_ReCaptcha
*/
public function getService()
@ -187,9 +173,9 @@ class Zend_Captcha_ReCaptcha extends Zend_Captcha_Base
* Set option
*
* If option is a service parameter, proxies to the service.
*
* @param string $key
* @param mixed $value
*
* @param string $key
* @param mixed $value
* @return Zend_Captcha_ReCaptcha
*/
public function setOption($key, $value)
@ -201,7 +187,7 @@ class Zend_Captcha_ReCaptcha extends Zend_Captcha_Base
}
return parent::setOption($key, $value);
}
/**
* Generate captcha
*
@ -222,20 +208,29 @@ class Zend_Captcha_ReCaptcha extends Zend_Captcha_Base
*/
public function isValid($value, $context = null)
{
if (empty($context[$this->_CHALLENGE]) || empty($context[$this->_RESPONSE])) {
if (!is_array($value) && !is_array($context)) {
$this->_error(self::MISSING_VALUE);
return false;
}
if (!is_array($value) && is_array($context)) {
$value = $context;
}
if (empty($value[$this->_CHALLENGE]) || empty($value[$this->_RESPONSE])) {
$this->_error(self::MISSING_VALUE);
return false;
}
$service = $this->getService();
$res = $service->verify($context[$this->_CHALLENGE], $context[$this->_RESPONSE]);
$res = $service->verify($value[$this->_CHALLENGE], $value[$this->_RESPONSE]);
if (!$res) {
$this->_error(self::ERR_CAPTCHA);
return false;
}
if (!$res->isValid()) {
$this->_error(self::BAD_CAPTCHA, $res->getErrorCode());
$service->setParam('error', $res->getErrorCode());
@ -244,15 +239,15 @@ class Zend_Captcha_ReCaptcha extends Zend_Captcha_Base
return true;
}
/**
* Render captcha
*
* @param Zend_View $view
* @param mixed $element
*
* @param Zend_View_Interface $view
* @param mixed $element
* @return string
*/
public function render(Zend_View_Interface $view, $element = null)
public function render(Zend_View_Interface $view = null, $element = null)
{
return $this->getService()->getHTML();
}

View File

@ -220,6 +220,10 @@ abstract class Zend_Captcha_Word extends Zend_Captcha_Base
{
if (!isset($this->_session) || (null === $this->_session)) {
$id = $this->getId();
if (!class_exists($this->_sessionClass)) {
require_once 'Zend/Loader.php';
Zend_Loader::loadClass($this->_sessionClass);
}
$this->_session = new $this->_sessionClass('Zend_Form_Captcha_' . $id);
$this->_session->setExpirationHops(1, null, true);
$this->_session->setExpirationSeconds($this->getTimeout());
@ -322,21 +326,34 @@ abstract class Zend_Captcha_Word extends Zend_Captcha_Base
*/
public function isValid($value, $context = null)
{
$name = $this->getName();
if (!isset($context[$name]['input'])) {
if (!is_array($value) && !is_array($context)) {
$this->_error(self::MISSING_VALUE);
return false;
}
$value = strtolower($context[$name]['input']);
$this->_setValue($value);
if (!is_array($value) && is_array($context)) {
$value = $context;
}
if (!isset($context[$name]['id'])) {
$name = $this->getName();
if (isset($value[$name])) {
$value = $value[$name];
}
if (!isset($value['input'])) {
$this->_error(self::MISSING_VALUE);
return false;
}
$input = strtolower($value['input']);
$this->_setValue($input);
if (!isset($value['id'])) {
$this->_error(self::MISSING_ID);
return false;
}
$this->_id = $context[$name]['id'];
if ($value !== $this->getWord()) {
$this->_id = $value['id'];
if ($input !== $this->getWord()) {
$this->_error(self::BAD_CAPTCHA);
return false;
}