| 1 | 596 | thorn | <?php
 | 
      
        | 2 |  |  | 
 | 
      
        | 3 |  |  | // $Id$
 | 
      
        | 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 |  |  | // direct access prevention
 | 
      
        | 27 |  |  | defined('WB_PATH') OR die(header('Location: ../index.php'));
 | 
      
        | 28 |  |  | 
 | 
      
        | 29 |  |  | // check if module language file exists for the language set by the user (e.g. DE, EN)
 | 
      
        | 30 |  |  | if(!file_exists(WB_PATH .'/modules/captcha_control/languages/'.LANGUAGE .'.php')) {
 | 
      
        | 31 |  |  | 	// no module language file exists for the language set by the user, include default module language file EN.php
 | 
      
        | 32 |  |  | 	require_once(WB_PATH .'/modules/captcha_control/languages/EN.php');
 | 
      
        | 33 |  |  | } else {
 | 
      
        | 34 |  |  | 	// a module language file exists for the language defined by the user, load it
 | 
      
        | 35 |  |  | 	require_once(WB_PATH .'/modules/captcha_control/languages/'.LANGUAGE .'.php');
 | 
      
        | 36 |  |  | }
 | 
      
        | 37 |  |  | 
 | 
      
        | 38 |  |  | $table = TABLE_PREFIX.'mod_captcha_control';
 | 
      
        | 39 |  |  | 
 | 
      
        | 40 |  |  | // check if data was submitted
 | 
      
        | 41 |  |  | if(isset($_POST['save_settings'])) {
 | 
      
        | 42 |  |  | 	// get configuration settings
 | 
      
        | 43 |  |  | 	$enabled_captcha = ($_POST['enabled_captcha'] == '1') ? '1' : '0';
 | 
      
        | 44 |  |  | 	$enabled_asp = ($_POST['enabled_asp'] == '1') ? '1' : '0';
 | 
      
        | 45 |  |  | 	$captcha_type = $admin->add_slashes($_POST['captcha_type']);
 | 
      
        | 46 |  |  | 
 | 
      
        | 47 |  |  | 	// update database settings
 | 
      
        | 48 |  |  | 	$database->query("UPDATE $table SET
 | 
      
        | 49 |  |  | 		enabled_captcha = '$enabled_captcha',
 | 
      
        | 50 |  |  | 		enabled_asp = '$enabled_asp',
 | 
      
        | 51 |  |  | 		captcha_type = '$captcha_type'
 | 
      
        | 52 |  |  | 	");
 | 
      
        | 53 |  |  | 
 | 
      
        | 54 | 624 | thorn | 	// save text-captchas
 | 
      
        | 55 |  |  | 	if($_POST['captcha_type'] == 'text') {
 | 
      
        | 56 | 628 | thorn | 		$text_qa=$_POST['text_qa'];
 | 
      
        | 57 |  |  | 		if(strpos($text_qa, '### example ###') === FALSE) {
 | 
      
        | 58 |  |  | 			$text_qa=$admin->add_slashes($text_qa);
 | 
      
        | 59 |  |  | 			if($fh = fopen(WB_PATH.'/temp/.captcha_text.txt', 'wb')) {
 | 
      
        | 60 |  |  | 				fwrite($fh, $text_qa);
 | 
      
        | 61 |  |  | 				fclose($fh);
 | 
      
        | 62 |  |  | 			}
 | 
      
        | 63 | 624 | thorn | 		}
 | 
      
        | 64 |  |  | 	}
 | 
      
        | 65 |  |  | 
 | 
      
        | 66 | 596 | thorn | 	// check if there is a database error, otherwise say successful
 | 
      
        | 67 |  |  | 	if($database->is_error()) {
 | 
      
        | 68 |  |  | 		$admin->print_error($database->get_error(), $js_back);
 | 
      
        | 69 |  |  | 	} else {
 | 
      
        | 70 |  |  | 		$admin->print_success($MESSAGE['PAGES']['SAVED'], ADMIN_URL.'/admintools/tool.php?tool=captcha_control');
 | 
      
        | 71 |  |  | 	}
 | 
      
        | 72 |  |  | 
 | 
      
        | 73 |  |  | } else {
 | 
      
        | 74 |  |  | 
 | 
      
        | 75 |  |  | 	// include captcha-file
 | 
      
        | 76 |  |  | 	require_once(WB_PATH .'/include/captcha/captcha.php');
 | 
      
        | 77 |  |  | 
 | 
      
        | 78 | 624 | thorn | 	// load text-captchas
 | 
      
        | 79 |  |  | 	$text_qa='';
 | 
      
        | 80 |  |  | 	if(file_exists(WB_PATH.'/include/captcha/captchas/text.php')) {
 | 
      
        | 81 |  |  | 		if(file_exists(WB_PATH.'/temp/.captcha_text.txt')) {
 | 
      
        | 82 |  |  | 			@$content = file(WB_PATH.'/temp/.captcha_text.txt');
 | 
      
        | 83 |  |  | 			if($content!==FALSE) {
 | 
      
        | 84 |  |  | 				$text_qa = $admin->strip_slashes(implode('', $content));
 | 
      
        | 85 |  |  | 			}
 | 
      
        | 86 |  |  | 		}
 | 
      
        | 87 |  |  | 	}
 | 
      
        | 88 | 628 | thorn | 	if($text_qa == '')
 | 
      
        | 89 |  |  | 		$text_qa = $MOD_CAPTCHA_CONTROL['CAPTCHA_TEXT_DESC'];
 | 
      
        | 90 | 624 | thorn | 
 | 
      
        | 91 | 609 | thorn | // script to load image
 | 
      
        | 92 |  |  | ?>
 | 
      
        | 93 |  |  | <script type="text/javascript">
 | 
      
        | 94 |  |  | 	var pics = new Array();
 | 
      
        | 95 |  |  | 
 | 
      
        | 96 |  |  | 	pics["ttf_image"] = new Image();
 | 
      
        | 97 |  |  | 	pics["ttf_image"].src = "<?php echo WB_URL.'/include/captcha/captchas/ttf_image.png'?>";
 | 
      
        | 98 |  |  | 
 | 
      
        | 99 |  |  | 	pics["calc_image"] = new Image();
 | 
      
        | 100 |  |  | 	pics["calc_image"].src = "<?php echo WB_URL.'/include/captcha/captchas/calc_image.png'?>";
 | 
      
        | 101 |  |  | 
 | 
      
        | 102 | 615 | thorn | 	pics["calc_ttf_image"] = new Image();
 | 
      
        | 103 |  |  | 	pics["calc_ttf_image"].src = "<?php echo WB_URL.'/include/captcha/captchas/calc_ttf_image.png'?>";
 | 
      
        | 104 |  |  | 
 | 
      
        | 105 | 609 | thorn | 	pics["old_image"] = new Image();
 | 
      
        | 106 |  |  | 	pics["old_image"].src = "<?php echo WB_URL.'/include/captcha/captchas/old_image.png'?>";
 | 
      
        | 107 |  |  | 
 | 
      
        | 108 |  |  | 	pics["calc_text"] = new Image();
 | 
      
        | 109 |  |  | 	pics["calc_text"].src = "<?php echo WB_URL.'/include/captcha/captchas/calc_text.png'?>";
 | 
      
        | 110 | 615 | thorn | 
 | 
      
        | 111 | 624 | thorn | 	pics["text"] = new Image();
 | 
      
        | 112 |  |  | 	pics["text"].src = "<?php echo WB_URL.'/include/captcha/captchas/text.png'?>";
 | 
      
        | 113 |  |  | 
 | 
      
        | 114 | 615 | thorn | 	function load_captcha_image() {
 | 
      
        | 115 |  |  | 		document.captcha_example.src = pics[document.store_settings.captcha_type.value].src;
 | 
      
        | 116 | 624 | thorn | 		toggle_text_qa();
 | 
      
        | 117 | 615 | thorn | 	}
 | 
      
        | 118 | 624 | thorn | 
 | 
      
        | 119 |  |  | 	function toggle_text_qa() {
 | 
      
        | 120 |  |  | 		if(document.store_settings.captcha_type.value == 'text' ) {
 | 
      
        | 121 |  |  | 			document.getElementById('text_qa').style.display = '';
 | 
      
        | 122 |  |  | 		} else {
 | 
      
        | 123 |  |  | 			document.getElementById('text_qa').style.display = 'none';
 | 
      
        | 124 |  |  | 		}
 | 
      
        | 125 |  |  | 	}
 | 
      
        | 126 |  |  | 
 | 
      
        | 127 | 609 | thorn | </script>
 | 
      
        | 128 |  |  | <?php
 | 
      
        | 129 |  |  | 
 | 
      
        | 130 | 596 | thorn | 	// connect to database and read out captcha settings
 | 
      
        | 131 |  |  | 	if($query = $database->query("SELECT * FROM $table")) {
 | 
      
        | 132 |  |  | 		$data = $query->fetchRow();
 | 
      
        | 133 |  |  | 		$enabled_captcha = $data['enabled_captcha'];
 | 
      
        | 134 |  |  | 		$enabled_asp = $data['enabled_asp'];
 | 
      
        | 135 |  |  | 		$captcha_type = $admin->strip_slashes($data['captcha_type']);
 | 
      
        | 136 |  |  | 	} else {
 | 
      
        | 137 |  |  | 		// something went wrong, use dummy value
 | 
      
        | 138 |  |  | 		$enabled_captcha = '1';
 | 
      
        | 139 |  |  | 		$enabled_asp = '1';
 | 
      
        | 140 |  |  | 		$captcha_type = 'calc_text';
 | 
      
        | 141 |  |  | 	}
 | 
      
        | 142 |  |  | 
 | 
      
        | 143 |  |  | 	// write out heading
 | 
      
        | 144 |  |  | 	echo '<h2>' .$MOD_CAPTCHA_CONTROL['HEADING'] .'</h2>';
 | 
      
        | 145 |  |  | 
 | 
      
        | 146 |  |  | 	// output the form with values from the database
 | 
      
        | 147 |  |  | 	echo '<p>' .$MOD_CAPTCHA_CONTROL['HOWTO'] .'</p>';
 | 
      
        | 148 |  |  | ?>
 | 
      
        | 149 |  |  | <form name="store_settings" action="<?php echo $_SERVER['REQUEST_URI']; ?>" method="post">
 | 
      
        | 150 |  |  | 	<table width="98%" cellspacing="0" cellpadding="5px" class="row_a">
 | 
      
        | 151 |  |  | 	<tr><td colspan="2"><strong><?php echo $MOD_CAPTCHA_CONTROL['CAPTCHA_CONF'];?>:</strong></td></tr>
 | 
      
        | 152 | 609 | thorn | 	<tr><td>
 | 
      
        | 153 |  |  | 		<table>
 | 
      
        | 154 |  |  | 			<tr height="50px">
 | 
      
        | 155 |  |  | 			<td><?php echo $MOD_CAPTCHA_CONTROL['CAPTCHA_TYPE'];?>:</td>
 | 
      
        | 156 | 615 | thorn | 			<td align="right" width="150px"><img name="captcha_example" id="captcha_example" src="<?php echo WB_URL.'/include/captcha/captchas/'.$captcha_type.'.png'?>" ></td>
 | 
      
        | 157 | 609 | thorn | 			</tr>
 | 
      
        | 158 |  |  | 		</table>
 | 
      
        | 159 | 596 | thorn | 		<td>
 | 
      
        | 160 | 609 | thorn | 			<select name="captcha_type" id="captcha_type" onchange="load_captcha_image()" style="width: 98%;">
 | 
      
        | 161 | 596 | thorn | 			<?php foreach($useable_captchas AS $key=>$text) {
 | 
      
        | 162 |  |  | 				echo "<option value=\"$key\" ".($captcha_type==$key?'selected':'').">$text</option>";
 | 
      
        | 163 |  |  | 			} ?>
 | 
      
        | 164 |  |  | 		</select>
 | 
      
        | 165 |  |  | 		</td>
 | 
      
        | 166 |  |  | 	</tr>
 | 
      
        | 167 | 624 | thorn | 	<tr id="text_qa" style="display:<?php if($captcha_type=='text') echo ''; else echo 'none'; ;?>;">
 | 
      
        | 168 |  |  | 		<td class="setting_name"><?php echo $MOD_CAPTCHA_CONTROL['CAPTCHA_ENTER_TEXT'];?>:</td>
 | 
      
        | 169 |  |  | 		<td class="setting_value" colspan="2">
 | 
      
        | 170 |  |  | 			<textarea name="text_qa" wrap="off" cols="50" rows="10"><?php echo $text_qa; ?></textarea>
 | 
      
        | 171 |  |  | 		</td>
 | 
      
        | 172 |  |  | 	</tr>
 | 
      
        | 173 | 596 | thorn | 	<tr>
 | 
      
        | 174 |  |  | 		<td><?php echo $MOD_CAPTCHA_CONTROL['USE_SIGNUP_CAPTCHA'];?>:</td>
 | 
      
        | 175 |  |  | 		<td>
 | 
      
        | 176 |  |  | 			<input type="radio" <?php echo ($enabled_captcha=='1') ?'checked="checked"' :'';?>
 | 
      
        | 177 |  |  | 				name="enabled_captcha" value="1"><?php echo $MOD_CAPTCHA_CONTROL['ENABLED'];?>
 | 
      
        | 178 |  |  | 			<input type="radio" <?php echo ($enabled_captcha=='0') ?'checked="checked"' :'';?>
 | 
      
        | 179 |  |  | 				name="enabled_captcha" value="0"><?php echo $MOD_CAPTCHA_CONTROL['DISABLED'];?>
 | 
      
        | 180 |  |  | 		</td>
 | 
      
        | 181 |  |  | 	</tr>
 | 
      
        | 182 | 615 | thorn | 	<tr><td> </td><td style="font-size:smaller;"><?php echo $MOD_CAPTCHA_CONTROL['CAPTCHA_EXP'];?></td></tr>
 | 
      
        | 183 | 596 | thorn | 	<tr><td colspan="2"><br /><strong><?php echo $MOD_CAPTCHA_CONTROL['ASP_CONF'];?>:</strong></td></tr>
 | 
      
        | 184 |  |  | 	<tr>
 | 
      
        | 185 |  |  | 		<td><?php echo $MOD_CAPTCHA_CONTROL['ASP_TEXT'];?>:</td>
 | 
      
        | 186 |  |  | 		<td>
 | 
      
        | 187 |  |  | 			<input type="radio" <?php echo ($enabled_asp=='1') ?'checked="checked"' :'';?>
 | 
      
        | 188 |  |  | 				name="enabled_asp" value="1"><?php echo $MOD_CAPTCHA_CONTROL['ENABLED'];?>
 | 
      
        | 189 |  |  | 			<input type="radio" <?php echo ($enabled_asp=='0') ?'checked="checked"' :'';?>
 | 
      
        | 190 |  |  | 				name="enabled_asp" value="0"><?php echo $MOD_CAPTCHA_CONTROL['DISABLED'];?>
 | 
      
        | 191 |  |  | 		</td>
 | 
      
        | 192 |  |  | 	</tr>
 | 
      
        | 193 | 615 | thorn | 	<tr><td> </td><td style="font-size:smaller;"><?php echo $MOD_CAPTCHA_CONTROL['ASP_EXP'];?></td></tr>
 | 
      
        | 194 | 596 | thorn | 	</table>
 | 
      
        | 195 |  |  | 	<input type="submit" name="save_settings" style="margin-top:10px; width:140px;" value="<?php echo $TEXT['SAVE']; ?>" />
 | 
      
        | 196 |  |  | </form>
 | 
      
        | 197 |  |  | <?php
 | 
      
        | 198 |  |  | }
 | 
      
        | 199 |  |  | 
 | 
      
        | 200 | 599 | Ruebenwurz | ?>
 |