1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
<?php
class CaptchaComponent extends Object {
var $controller;
private $fontColor = array("red" => 193, "green" => 0, "blue" => 118);
private $background;
private $fontType;
function startup(&$controller) {
$this->controller = &$controller;
$this->background = BEDITA_CORE_PATH . DS . "webroot".DS."captcha".DS."img".DS."button.png";
$this->fontType = BEDITA_CORE_PATH . DS . "webroot".DS."captcha".DS."fonts".DS."Vera.ttf";
}
public function image($options=array()) {
$length = (!empty($options["length"]))? $options["length"] : 4;
if (!empty($options["color"]))
$this->fontColor = $options["color"];
$str = strtoupper(substr(str_shuffle('123456789abcdefghjkmnpqrstuvwxyz'), 0, $length));
$this->controller->Session->write("captcha_id", $str);
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header('Pragma: no-cache');
header('Content-type: image/png');
if (is_dir(APP . "webroot".DS."captcha".DS."img")) {
foreach (glob(APP . "webroot".DS."captcha".DS."img".DS."*.png") as $filename) {
$bgArr[] = $filename;
}
} else {
foreach (glob(BEDITA_CORE_PATH . "webroot".DS."captcha".DS."img".DS."*.png") as $filename) {
$bgArr[] = $filename;
}
}
if (!empty($bgArr))
$this->background = $bgArr[array_rand($bgArr)];
$image = imagecreatefrompng($this->background);
$colour = imagecolorallocate($image, $this->fontColor["red"], $this->fontColor["green"], $this->fontColor["blue"]);
if (is_dir(APP . "webroot".DS."captcha".DS."fonts")) {
foreach (glob(APP . "webroot".DS."captcha".DS."fonts".DS."*.ttf") as $filename) {
$fontArr[] = $filename;
}
} else {
foreach (glob(BEDITA_CORE_PATH . "webroot".DS."captcha".DS."fonts".DS."*.ttf") as $filename) {
$fontArr[] = $filename;
}
}
if (!empty($fontArr))
$this->fontType = $fontArr[array_rand($fontArr)];
$imgsize = getimagesize($this->background);
$width = $imgsize[0];
$height = $imgsize[1];
$charSpace = $width / (strlen($str)+1);
for ($i=0; $i< strlen($str); $i++) {
imagettftext($image, 14+mt_rand(0,8), -20+mt_rand(0,40), ($i+0.3)*$charSpace, ($height/2)+mt_rand(0,10), $colour, $this->fontType, $str{$i});
}
imagepng($image);
}
public function checkCaptcha() {
if (empty($this->controller->params["form"]["captcha"]))
throw new BeditaException(__("Captcha image and text don't match", true));
$captcha = $this->controller->params["form"]["captcha"];
if( $this->controller->Session->valid() && (strtoupper($captcha) == $this->controller->Session->read('captcha_id')) )
return true;
else
throw new BeditaException(__("Text doesn't match image", true));
}
public function setFontColor($red, $green, $blue) {
$this->fontColor = array("red" => $red, "green" => $green, "blue" => $blue);
}
}
?>