Project

General

Profile

1 596 thorn
<?php
2
3
// $Id$
4
5
/*
6
7
 Website Baker Project <http://www.websitebaker.org/>
8 915 Ruebenwurz
 Copyright (C) 2004-2009, Ryan Djurovich
9 596 thorn
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
24
*/
25
26
require_once("../../../config.php");
27
require_once(WB_PATH.'/include/captcha/captcha.php');
28
29 609 thorn
if(!isset($_SESSION['captcha_time']))
30
	exit;
31
unset($_SESSION['captcha_time']);
32
33 596 thorn
// Captcha
34
$_SESSION['captcha'] = '';
35 615 thorn
mt_srand((double)microtime()*1000000);
36 596 thorn
$n = mt_rand(1,3);
37
switch ($n) {
38
	case 1:
39
		$x = mt_rand(1,9);
40
		$y = mt_rand(1,9);
41
		$_SESSION['captcha'] = $x + $y;
42
		$cap = "$x+$y";
43
		break;
44
	case 2:
45
		$x = mt_rand(10,20);
46
		$y = mt_rand(1,9);
47
		$_SESSION['captcha'] = $x - $y;
48
		$cap = "$x-$y";
49
		break;
50
	case 3:
51
		$x = mt_rand(2,10);
52
		$y = mt_rand(2,5);
53
		$_SESSION['captcha'] = $x * $y;
54
		$cap = "$x*$y";
55
		break;
56
}
57
58 858 thorn
// create reload-image
59
$reload = ImageCreateFromPNG(WB_PATH.'/include/captcha/reload_120_30.png'); // reload-overlay
60 596 thorn
61 858 thorn
$image = imagecreate(120, 30);
62
63 596 thorn
$white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
64
$gray = imagecolorallocate($image, 0xC0, 0xC0, 0xC0);
65
$darkgray = imagecolorallocate($image, 0x30, 0x30, 0x30);
66
67
for($i = 0; $i < 30; $i++) {
68 858 thorn
	$x1 = mt_rand(0,120);
69 848 thorn
	$y1 = mt_rand(0,30);
70 858 thorn
	$x2 = mt_rand(0,120);
71 848 thorn
	$y2 = mt_rand(0,30);
72 596 thorn
	imageline($image, $x1, $y1, $x2, $y2 , $gray);
73
}
74
75 858 thorn
$x = 10;
76 596 thorn
$l = strlen($cap);
77
for($i = 0; $i < $l; $i++) {
78 848 thorn
	$fnt = mt_rand(3,5);
79
	$x = $x + mt_rand(12 , 20);
80
	$y = mt_rand(7 , 12);
81 596 thorn
	imagestring($image, $fnt, $x, $y, substr($cap, $i, 1), $darkgray);
82
}
83
84 858 thorn
imagealphablending($reload, TRUE);
85
imagesavealpha($reload, TRUE);
86
87
// overlay
88
imagecopy($reload, $image, 0,0,0,0, 120,30);
89
imagedestroy($image);
90
$image = $reload;
91
92 596 thorn
captcha_header();
93
imagepng($image);
94
imagedestroy($image);
95
96
?>