Project

General

Profile

1
<?php
2

    
3
// $Id: text.php 656 2008-02-01 22:53:02Z thorn $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2008, Ryan Djurovich
9

    
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
// Must include code to stop this file being accessed directly
27
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
28

    
29
global $admin;
30
global $database;
31
$name = 'text';
32
$file = WB_PATH."/temp/.captcha_$name.php";
33

    
34
srand((double)microtime()*100000);
35
$_SESSION['captcha'] = rand(0,99999);
36

    
37
// get questions and answers
38
$text_qa='';
39
$table = TABLE_PREFIX.'mod_captcha_control';
40
if($query = $database->query("SELECT ct_text FROM $table")) {
41
	$data = $query->fetchRow();
42
	$text_qa = $data['ct_text'];
43
}
44
$content = explode("\n", $text_qa);
45

    
46
reset($content);
47
while($s = current($content)) {
48
	// get question
49
	$s=trim(rtrim(rtrim($s,"\n"),"\r")); // remove newline
50
	if($s=='' OR $s{0}!='?') {
51
		next($content);
52
		continue;
53
	}
54
	if(isset($s{3}) && $s{3}==':') {
55
		$lang=substr($s,1,2);
56
		$q=substr($s,4);
57
	}	else {
58
		$lang='XX';
59
		$q=substr($s,1);
60
		if($q=='') {
61
			next($content);
62
			continue;
63
		}
64
	}
65
	// get answer
66
	$s=next($content);
67
	$s=trim(rtrim(rtrim($s,"\n"),"\r")); // remove newline
68
	if(isset($s{0}) && $s{0}=='!') {
69
		$a=substr($s,1);
70
		$qa[$lang][$q]=$a;
71
		next($content);
72
	}
73
}
74
if(!isset($qa) || $qa == array()) {
75
	echo '<b>Error</b>: no text defined! Enter <b>0</b> to solve this captcha';
76
	$_SESSION['captcha'] = '0';
77
	return;
78
}
79

    
80
// choose language to use
81
if(defined('LANGUAGE') && isset($qa[LANGUAGE]))
82
	$lang = LANGUAGE;
83
else
84
	$lang = 'XX';
85
if(!isset($qa[$lang])) {
86
	echo '<b>Error</b>: no text defined! Enter <b>0</b> to solve this captcha';
87
	$_SESSION['captcha'] = '0';
88
	return;
89
}
90

    
91
// choose random question
92
$k = array_rand($qa[$lang]);
93

    
94
$_SESSION['captcha'] = $qa[$lang][$k];
95

    
96
echo $k;
97

    
98
?>
(10-10/13)