| 1 | <?php
 | 
  
    | 2 | 
 | 
  
    | 3 | // $Id: class.login.php 546 2008-01-17 18:10:50Z doc $
 | 
  
    | 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 | /*
 | 
  
    | 27 | 
 | 
  
    | 28 | Login class
 | 
  
    | 29 | 
 | 
  
    | 30 | This class will be used to with the login application
 | 
  
    | 31 | 
 | 
  
    | 32 | */
 | 
  
    | 33 | 
 | 
  
    | 34 | // Stop this file from being accessed directly
 | 
  
    | 35 | if(!defined('WB_URL')) {
 | 
  
    | 36 | 	header('Location: ../index.php');
 | 
  
    | 37 | 	exit(0);
 | 
  
    | 38 | }
 | 
  
    | 39 | 
 | 
  
    | 40 | define('LOGIN_CLASS_LOADED', true);
 | 
  
    | 41 | 
 | 
  
    | 42 | // Load the other required class files if they are not already loaded
 | 
  
    | 43 | require_once(WB_PATH."/framework/class.admin.php");
 | 
  
    | 44 | 
 | 
  
    | 45 | class login extends admin {
 | 
  
    | 46 | 	function login($config_array) {
 | 
  
    | 47 | 		// Get language vars
 | 
  
    | 48 | 		global $MESSAGE;
 | 
  
    | 49 | 		$this->wb();
 | 
  
    | 50 | 		// Get configuration values
 | 
  
    | 51 | 		$this->USERS_TABLE = $config_array['USERS_TABLE'];
 | 
  
    | 52 | 		$this->GROUPS_TABLE = $config_array['GROUPS_TABLE'];
 | 
  
    | 53 | 		$this->username_fieldname = $config_array['USERNAME_FIELDNAME'];
 | 
  
    | 54 | 		$this->password_fieldname = $config_array['PASSWORD_FIELDNAME'];
 | 
  
    | 55 | 		$this->remember_me_option = $config_array['REMEMBER_ME_OPTION'];
 | 
  
    | 56 | 		$this->max_attemps = $config_array['MAX_ATTEMPS'];
 | 
  
    | 57 | 		$this->warning_url = $config_array['WARNING_URL'];
 | 
  
    | 58 | 		$this->login_url = $config_array['LOGIN_URL'];
 | 
  
    | 59 | 		$this->template_dir = $config_array['TEMPLATE_DIR'];
 | 
  
    | 60 | 		$this->template_file = $config_array['TEMPLATE_FILE'];
 | 
  
    | 61 | 		$this->frontend = $config_array['FRONTEND'];
 | 
  
    | 62 | 		$this->forgotten_details_app = $config_array['FORGOTTEN_DETAILS_APP'];
 | 
  
    | 63 | 		$this->max_username_len = $config_array['MAX_USERNAME_LEN'];
 | 
  
    | 64 | 		$this->max_password_len = $config_array['MAX_PASSWORD_LEN'];
 | 
  
    | 65 | 		if (array_key_exists('REDIRECT_URL',$config_array))
 | 
  
    | 66 | 			$this->redirect_url = $config_array['REDIRECT_URL'];
 | 
  
    | 67 | 		else
 | 
  
    | 68 | 			$this->redirect_url = '';
 | 
  
    | 69 | 		// Get the supplied username and password
 | 
  
    | 70 | 		if ($this->get_post('username_fieldname') != ''){
 | 
  
    | 71 | 			$username_fieldname = $this->get_post('username_fieldname');
 | 
  
    | 72 | 			$password_fieldname = $this->get_post('password_fieldname');
 | 
  
    | 73 | 		} else {
 | 
  
    | 74 | 			$username_fieldname = 'username';
 | 
  
    | 75 | 			$password_fieldname = 'password';
 | 
  
    | 76 | 		}
 | 
  
    | 77 | 		$this->username = $this->add_slashes(strtolower($this->get_post($username_fieldname)));
 | 
  
    | 78 | 		$this->password = $this->get_post($password_fieldname);
 | 
  
    | 79 | 		// Figure out if the "remember me" option has been checked
 | 
  
    | 80 | 		if($this->get_post('remember') == 'true') {
 | 
  
    | 81 | 			$this->remember = $this->get_post('remember');
 | 
  
    | 82 | 		} else {
 | 
  
    | 83 | 			$this->remember = false;
 | 
  
    | 84 | 		}
 | 
  
    | 85 | 		// Get the length of the supplied username and password
 | 
  
    | 86 | 		if($this->get_post($username_fieldname) != '') {
 | 
  
    | 87 | 			$this->username_len = strlen($this->username);
 | 
  
    | 88 | 			$this->password_len = strlen($this->password);
 | 
  
    | 89 | 		}
 | 
  
    | 90 | 		// If the url is blank, set it to the default url
 | 
  
    | 91 | 		$this->url = $this->get_post('url');
 | 
  
    | 92 | 		if ($this->redirect_url!='') {
 | 
  
    | 93 | 			$this->url = $this->redirect_url;
 | 
  
    | 94 | 		}		
 | 
  
    | 95 | 		if(strlen($this->url) < 2) {
 | 
  
    | 96 | 			$this->url = $config_array['DEFAULT_URL'];
 | 
  
    | 97 | 		}
 | 
  
    | 98 | 		if($this->is_authenticated() == true) {
 | 
  
    | 99 | 			// User already logged-in, so redirect to default url
 | 
  
    | 100 | 			header('Location: '.$this->url);
 | 
  
    | 101 | 			exit();
 | 
  
    | 102 | 		} elseif($this->is_remembered() == true) {
 | 
  
    | 103 | 			// User has been "remembered"
 | 
  
    | 104 | 			// Get the users password
 | 
  
    | 105 | 			$database = new database();
 | 
  
    | 106 | 			$query_details = $database->query("SELECT * FROM ".$this->USERS_TABLE." WHERE user_id = '".$this->get_safe_remember_key()."' LIMIT 1");
 | 
  
    | 107 | 			$fetch_details = $query_details->fetchRow();
 | 
  
    | 108 | 			$this->username = $fetch_details['username'];
 | 
  
    | 109 | 			$this->password = $fetch_details['password'];
 | 
  
    | 110 | 			// Check if the user exists (authenticate them)
 | 
  
    | 111 | 			if($this->authenticate()) {
 | 
  
    | 112 | 				// Authentication successful
 | 
  
    | 113 | 				header("Location: ".$this->url);
 | 
  
    | 114 | 				exit(0);
 | 
  
    | 115 | 			} else {
 | 
  
    | 116 | 				$this->message = $MESSAGE['LOGIN']['AUTHENTICATION_FAILED'];
 | 
  
    | 117 | 				$this->increase_attemps();
 | 
  
    | 118 | 			}
 | 
  
    | 119 | 		} elseif($this->username == '' AND $this->password == '') {
 | 
  
    | 120 | 			$this->message = $MESSAGE['LOGIN']['BOTH_BLANK'];
 | 
  
    | 121 | 			$this->increase_attemps();
 | 
  
    | 122 | 		} elseif($this->username == '') {
 | 
  
    | 123 | 			$this->message = $MESSAGE['LOGIN']['USERNAME_BLANK'];
 | 
  
    | 124 | 			$this->increase_attemps();
 | 
  
    | 125 | 		} elseif($this->password == '') {
 | 
  
    | 126 | 			$this->message = $MESSAGE['LOGIN']['PASSWORD_BLANK'];
 | 
  
    | 127 | 			$this->increase_attemps();
 | 
  
    | 128 | 		} elseif($this->username_len < $config_array['MIN_USERNAME_LEN']) {
 | 
  
    | 129 | 			$this->message = $MESSAGE['LOGIN']['USERNAME_TOO_SHORT'];
 | 
  
    | 130 | 			$this->increase_attemps();
 | 
  
    | 131 | 		} elseif($this->password_len < $config_array['MIN_PASSWORD_LEN']) {
 | 
  
    | 132 | 			$this->message = $MESSAGE['LOGIN']['PASSWORD_TOO_SHORT'];
 | 
  
    | 133 | 			$this->increase_attemps();
 | 
  
    | 134 | 		} elseif($this->username_len > $config_array['MAX_USERNAME_LEN']) {
 | 
  
    | 135 | 			$this->message = $MESSAGE['LOGIN']['USERNAME_TOO_LONG'];
 | 
  
    | 136 | 			$this->increase_attemps();
 | 
  
    | 137 | 		} elseif($this->password_len > $config_array['MAX_PASSWORD_LEN']) {
 | 
  
    | 138 | 			$this->message = $MESSAGE['LOGIN']['PASSWORD_TOO_LONG'];
 | 
  
    | 139 | 			$this->increase_attemps();
 | 
  
    | 140 | 		} else {
 | 
  
    | 141 | 			// Check if the user exists (authenticate them)
 | 
  
    | 142 | 			$this->password = md5($this->password);
 | 
  
    | 143 | 			if($this->authenticate()) {
 | 
  
    | 144 | 				// Authentication successful
 | 
  
    | 145 | 				//echo $this->url;exit();
 | 
  
    | 146 | 				header("Location: ".$this->url);
 | 
  
    | 147 | 				exit(0);
 | 
  
    | 148 | 			} else {
 | 
  
    | 149 | 				$this->message = $MESSAGE['LOGIN']['AUTHENTICATION_FAILED'];
 | 
  
    | 150 | 				$this->increase_attemps();
 | 
  
    | 151 | 			}
 | 
  
    | 152 | 		}
 | 
  
    | 153 | 	}
 | 
  
    | 154 | 	
 | 
  
    | 155 | 	// Authenticate the user (check if they exist in the database)
 | 
  
    | 156 | 	function authenticate() {
 | 
  
    | 157 | 		// Get user information
 | 
  
    | 158 | 		$database = new database();
 | 
  
    | 159 | 		$query = "SELECT * FROM ".$this->USERS_TABLE." WHERE username = '".$this->username."' AND password = '".$this->password."' AND active = '1'";
 | 
  
    | 160 | 		$results = $database->query($query);
 | 
  
    | 161 | 		$results_array = $results->fetchRow();
 | 
  
    | 162 | 		$num_rows = $results->numRows();
 | 
  
    | 163 | 		if($num_rows) {
 | 
  
    | 164 | 			$user_id = $results_array['user_id'];
 | 
  
    | 165 | 			$this->user_id = $user_id;
 | 
  
    | 166 | 			$_SESSION['USER_ID'] = $user_id;
 | 
  
    | 167 | 			$_SESSION['GROUP_ID'] = $results_array['group_id'];
 | 
  
    | 168 | 			$_SESSION['GROUPS_ID'] = $results_array['groups_id'];
 | 
  
    | 169 | 			$_SESSION['USERNAME'] = $results_array['username'];
 | 
  
    | 170 | 			$_SESSION['DISPLAY_NAME'] = $results_array['display_name'];
 | 
  
    | 171 | 			$_SESSION['EMAIL'] = $results_array['email'];
 | 
  
    | 172 | 			$_SESSION['HOME_FOLDER'] = $results_array['home_folder'];
 | 
  
    | 173 | 			// Run remember function if needed
 | 
  
    | 174 | 			if($this->remember == true) {
 | 
  
    | 175 | 				$this->remember($this->user_id);
 | 
  
    | 176 | 			}
 | 
  
    | 177 | 			// Set language
 | 
  
    | 178 | 			if($results_array['language'] != '') {
 | 
  
    | 179 | 				$_SESSION['LANGUAGE'] = $results_array['language'];
 | 
  
    | 180 | 			}
 | 
  
    | 181 | 			// Set timezone
 | 
  
    | 182 | 			if($results_array['timezone'] != '-72000') {
 | 
  
    | 183 | 				$_SESSION['TIMEZONE'] = $results_array['timezone'];
 | 
  
    | 184 | 			} else {
 | 
  
    | 185 | 				// Set a session var so apps can tell user is using default tz
 | 
  
    | 186 | 				$_SESSION['USE_DEFAULT_TIMEZONE'] = true;
 | 
  
    | 187 | 			}
 | 
  
    | 188 | 			// Set date format
 | 
  
    | 189 | 			if($results_array['date_format'] != '') {
 | 
  
    | 190 | 				$_SESSION['DATE_FORMAT'] = $results_array['date_format'];
 | 
  
    | 191 | 			} else {
 | 
  
    | 192 | 				// Set a session var so apps can tell user is using default date format
 | 
  
    | 193 | 				$_SESSION['USE_DEFAULT_DATE_FORMAT'] = true;
 | 
  
    | 194 | 			}
 | 
  
    | 195 | 			// Set time format
 | 
  
    | 196 | 			if($results_array['time_format'] != '') {
 | 
  
    | 197 | 				$_SESSION['TIME_FORMAT'] = $results_array['time_format'];
 | 
  
    | 198 | 			} else {
 | 
  
    | 199 | 				// Set a session var so apps can tell user is using default time format
 | 
  
    | 200 | 				$_SESSION['USE_DEFAULT_TIME_FORMAT'] = true;
 | 
  
    | 201 | 			}
 | 
  
    | 202 | 			// Get group information
 | 
  
    | 203 | //			$query = "SELECT * FROM ".$this->GROUPS_TABLE." WHERE group_id = '".$this->get_session('GROUP_ID')."'";
 | 
  
    | 204 | //			$results = $database->query($query);
 | 
  
    | 205 | //			$results_array = $results->fetchRow();
 | 
  
    | 206 | //			$_SESSION['GROUP_NAME'] = $results_array['name'];
 | 
  
    | 207 | //			// Set system permissions
 | 
  
    | 208 | //			if($results_array['system_permissions'] != '') {
 | 
  
    | 209 | //				$_SESSION['SYSTEM_PERMISSIONS'] = explode(',', $results_array['system_permissions']);
 | 
  
    | 210 | //			} else {
 | 
  
    | 211 | //				$_SESSION['SYSTEM_PERMISSIONS'] = array();
 | 
  
    | 212 | //			}
 | 
  
    | 213 | //			// Set module permissions
 | 
  
    | 214 | //			if($results_array['module_permissions'] != '') {
 | 
  
    | 215 | //				$_SESSION['MODULE_PERMISSIONS'] = explode(',', $results_array['module_permissions']);
 | 
  
    | 216 | //			} else {
 | 
  
    | 217 | //				$_SESSION['MODULE_PERMISSIONS'] = array();
 | 
  
    | 218 | //			}
 | 
  
    | 219 | //			// Set template permissions
 | 
  
    | 220 | //			if($results_array['template_permissions'] != '') {
 | 
  
    | 221 | //				$_SESSION['TEMPLATE_PERMISSIONS'] = explode(',', $results_array['template_permissions']);
 | 
  
    | 222 | //			} else {
 | 
  
    | 223 | //				$_SESSION['TEMPLATE_PERMISSIONS'] = array();
 | 
  
    | 224 | //			}
 | 
  
    | 225 | 
 | 
  
    | 226 | 			$_SESSION['SYSTEM_PERMISSIONS'] = array();
 | 
  
    | 227 | 			$_SESSION['MODULE_PERMISSIONS'] = array();
 | 
  
    | 228 | 			$_SESSION['TEMPLATE_PERMISSIONS'] = array();
 | 
  
    | 229 | 			$_SESSION['GROUP_NAME'] = array();
 | 
  
    | 230 | 
 | 
  
    | 231 | 
 | 
  
    | 232 | 			foreach (split(",", $this->get_session('GROUPS_ID')) as $cur_group_id) {
 | 
  
    | 233 | 				$query = "SELECT * FROM ".$this->GROUPS_TABLE." WHERE group_id = '".$cur_group_id."'";
 | 
  
    | 234 | 				$results = $database->query($query);
 | 
  
    | 235 | 				$results_array = $results->fetchRow();
 | 
  
    | 236 | 				$_SESSION['GROUP_NAME'][$cur_group_id] = $results_array['name'];
 | 
  
    | 237 | 				// Set system permissions
 | 
  
    | 238 | 				if($results_array['system_permissions'] != '') {
 | 
  
    | 239 | 					$_SESSION['SYSTEM_PERMISSIONS'] = array_merge($_SESSION['SYSTEM_PERMISSIONS'], explode(',', $results_array['system_permissions']));
 | 
  
    | 240 | 				}
 | 
  
    | 241 | 				// Set module permissions
 | 
  
    | 242 | 				if($results_array['module_permissions'] != '') {
 | 
  
    | 243 | 					$_SESSION['MODULE_PERMISSIONS'] = array_merge($_SESSION['MODULE_PERMISSIONS'], explode(',', $results_array['module_permissions']));
 | 
  
    | 244 | 				}
 | 
  
    | 245 | 				// Set template permissions
 | 
  
    | 246 | 				if($results_array['template_permissions'] != '') {
 | 
  
    | 247 | 					$_SESSION['TEMPLATE_PERMISSIONS'] = array_merge($_SESSION['TEMPLATE_PERMISSIONS'], explode(',', $results_array['template_permissions']));
 | 
  
    | 248 | 				}
 | 
  
    | 249 | 			}	
 | 
  
    | 250 | 
 | 
  
    | 251 | 			// Update the users table with current ip and timestamp
 | 
  
    | 252 | 			$get_ts = mktime();
 | 
  
    | 253 | 			$get_ip = $_SERVER['REMOTE_ADDR'];
 | 
  
    | 254 | 			$query = "UPDATE ".$this->USERS_TABLE." SET login_when = '$get_ts', login_ip = '$get_ip' WHERE user_id = '$user_id'";
 | 
  
    | 255 | 			$database->query($query);
 | 
  
    | 256 | 		}
 | 
  
    | 257 | 		// Return if the user exists or not
 | 
  
    | 258 | 		return $num_rows;
 | 
  
    | 259 | 	}
 | 
  
    | 260 | 	
 | 
  
    | 261 | 	// Increase the count for login attemps
 | 
  
    | 262 | 	function increase_attemps() {
 | 
  
    | 263 | 		if(!isset($_SESSION['ATTEMPS'])) {
 | 
  
    | 264 | 			$_SESSION['ATTEMPS'] = 0;
 | 
  
    | 265 | 		} else {
 | 
  
    | 266 | 			$_SESSION['ATTEMPS'] = $this->get_session('ATTEMPS')+1;
 | 
  
    | 267 | 		}
 | 
  
    | 268 | 		$this->display_login();
 | 
  
    | 269 | 	}
 | 
  
    | 270 | 	
 | 
  
    | 271 | 	// Function to set a "remembering" cookie for the user
 | 
  
    | 272 | 	function remember($user_id) {
 | 
  
    | 273 | 		$remember_key = '';
 | 
  
    | 274 | 		// Generate user id to append to the remember key
 | 
  
    | 275 | 		$length = 11-strlen($user_id);
 | 
  
    | 276 | 		if($length > 0) {
 | 
  
    | 277 | 			for($i = 1; $i <= $length; $i++) {
 | 
  
    | 278 | 				$remember_key .= '0';
 | 
  
    | 279 | 			}
 | 
  
    | 280 | 		}
 | 
  
    | 281 | 		// Generate remember key
 | 
  
    | 282 | 		$remember_key .= $user_id.'_';
 | 
  
    | 283 | 		$salt = "abchefghjkmnpqrstuvwxyz0123456789";
 | 
  
    | 284 | 		srand((double)microtime()*1000000);
 | 
  
    | 285 | 		$i = 0;
 | 
  
    | 286 | 		while ($i <= 10) {
 | 
  
    | 287 | 			$num = rand() % 33;
 | 
  
    | 288 | 			$tmp = substr($salt, $num, 1);
 | 
  
    | 289 | 			$remember_key = $remember_key . $tmp;
 | 
  
    | 290 | 			$i++;
 | 
  
    | 291 | 		}
 | 
  
    | 292 | 		$remember_key = $remember_key;
 | 
  
    | 293 | 		// Update the remember key in the db
 | 
  
    | 294 | 		$database = new database();
 | 
  
    | 295 | 		$database->query("UPDATE ".$this->USERS_TABLE." SET remember_key = '$remember_key' WHERE user_id = '$user_id' LIMIT 1");
 | 
  
    | 296 | 		if($database->is_error()) {
 | 
  
    | 297 | 			return false;
 | 
  
    | 298 | 		} else {
 | 
  
    | 299 | 			// Workout options for the cookie
 | 
  
    | 300 | 			$cookie_name = 'REMEMBER_KEY';
 | 
  
    | 301 | 			$cookie_value = $remember_key;
 | 
  
    | 302 | 			$cookie_expire = time()+60*60*24*30;
 | 
  
    | 303 | 			// Set the cookie
 | 
  
    | 304 | 			if(setcookie($cookie_name, $cookie_value, $cookie_expire, '/')) {
 | 
  
    | 305 | 				return true;
 | 
  
    | 306 | 			} else {
 | 
  
    | 307 | 				return false;
 | 
  
    | 308 | 			}
 | 
  
    | 309 | 		}
 | 
  
    | 310 | 	}
 | 
  
    | 311 | 	
 | 
  
    | 312 | 	// Function to check if a user has been remembered
 | 
  
    | 313 | 	function is_remembered() {
 | 
  
    | 314 | 		if(isset($_COOKIE['REMEMBER_KEY']) AND $_COOKIE['REMEMBER_KEY'] != '') {
 | 
  
    | 315 | 			// Check if the remember key is correct
 | 
  
    | 316 | 			$database = new database();
 | 
  
    | 317 | 			$check_query = $database->query("SELECT user_id FROM ".$this->USERS_TABLE." WHERE remember_key = '".$this->get_safe_remember_key()."' LIMIT 1");
 | 
  
    | 318 | 			if($check_query->numRows() > 0) {
 | 
  
    | 319 | 				$check_fetch = $check_query->fetchRow();
 | 
  
    | 320 | 				$user_id = $check_fetch['user_id'];
 | 
  
    | 321 | 				// Check the remember key prefix
 | 
  
    | 322 | 				$remember_key_prefix = '';
 | 
  
    | 323 | 				$length = 11-strlen($user_id);
 | 
  
    | 324 | 				if($length > 0) {
 | 
  
    | 325 | 					for($i = 1; $i <= $length; $i++) {
 | 
  
    | 326 | 						$remember_key_prefix .= '0';
 | 
  
    | 327 | 					}
 | 
  
    | 328 | 				}
 | 
  
    | 329 | 				$remember_key_prefix .= $user_id.'_';
 | 
  
    | 330 | 				$length = strlen($remember_key_prefix);
 | 
  
    | 331 | 				if(substr($_COOKIE['REMEMBER_KEY'], 0, $length) == $remember_key_prefix) {
 | 
  
    | 332 | 					return true;
 | 
  
    | 333 | 				} else {
 | 
  
    | 334 | 					return false;
 | 
  
    | 335 | 				}
 | 
  
    | 336 | 			} else {
 | 
  
    | 337 | 				return false;
 | 
  
    | 338 | 			}
 | 
  
    | 339 | 		} else {
 | 
  
    | 340 | 			return false;
 | 
  
    | 341 | 		}
 | 
  
    | 342 | 	}
 | 
  
    | 343 | 	
 | 
  
    | 344 | 	// Display the login screen
 | 
  
    | 345 | 	function display_login() {
 | 
  
    | 346 | 		// Get language vars
 | 
  
    | 347 | 		global $MESSAGE;
 | 
  
    | 348 | 		global $MENU;
 | 
  
    | 349 | 		global $TEXT;
 | 
  
    | 350 | 		// If attemps more than allowed, warn the user
 | 
  
    | 351 | 		if($this->get_session('ATTEMPS') > $this->max_attemps) {
 | 
  
    | 352 | 			$this->warn();
 | 
  
    | 353 | 		}
 | 
  
    | 354 | 		// Show the login form
 | 
  
    | 355 | 		if($this->frontend != true) {
 | 
  
    | 356 | 			require_once(WB_PATH.'/include/phplib/template.inc');
 | 
  
    | 357 | 			$template = new Template($this->template_dir);
 | 
  
    | 358 | 			$template->set_file('page', $this->template_file);
 | 
  
    | 359 | 			$template->set_block('page', 'mainBlock', 'main');
 | 
  
    | 360 | 			if($this->remember_me_option != true) {
 | 
  
    | 361 | 				$template->set_var('DISPLAY_REMEMBER_ME', 'none');
 | 
  
    | 362 | 			} else {
 | 
  
    | 363 | 				$template->set_var('DISPLAY_REMEMBER_ME', '');
 | 
  
    | 364 | 			}
 | 
  
    | 365 | 			$template->set_var(array(
 | 
  
    | 366 | 											'ACTION_URL' => $this->login_url,
 | 
  
    | 367 | 											'ATTEMPS' => $this->get_session('ATTEMPS'),
 | 
  
    | 368 | 											'USERNAME' => $this->username,
 | 
  
    | 369 | 											'USERNAME_FIELDNAME' => $this->username_fieldname,
 | 
  
    | 370 | 											'PASSWORD_FIELDNAME' => $this->password_fieldname,
 | 
  
    | 371 | 											'MESSAGE' => $this->message,
 | 
  
    | 372 | 											'INTERFACE_DIR_URL' =>  ADMIN_URL.'/interface',
 | 
  
    | 373 | 											'MAX_USERNAME_LEN' => $this->max_username_len,
 | 
  
    | 374 | 											'MAX_PASSWORD_LEN' => $this->max_password_len,
 | 
  
    | 375 | 											'WB_URL' => WB_URL,
 | 
  
    | 376 | 											'FORGOTTEN_DETAILS_APP' => $this->forgotten_details_app,
 | 
  
    | 377 | 											'TEXT_FORGOTTEN_DETAILS' => $TEXT['FORGOTTEN_DETAILS'],
 | 
  
    | 378 | 											'TEXT_USERNAME' => $TEXT['USERNAME'],
 | 
  
    | 379 | 											'TEXT_PASSWORD' => $TEXT['PASSWORD'],
 | 
  
    | 380 | 											'TEXT_REMEMBER_ME' => $TEXT['REMEMBER_ME'],
 | 
  
    | 381 | 											'TEXT_LOGIN' => $TEXT['LOGIN'],
 | 
  
    | 382 | 											'TEXT_HOME' => $TEXT['HOME'],
 | 
  
    | 383 | 											'PAGES_DIRECTORY' => PAGES_DIRECTORY,
 | 
  
    | 384 | 											'SECTION_LOGIN' => $MENU['LOGIN']
 | 
  
    | 385 | 											)
 | 
  
    | 386 | 									);
 | 
  
    | 387 | 			if(defined('DEFAULT_CHARSET')) {
 | 
  
    | 388 | 				$charset=DEFAULT_CHARSET;
 | 
  
    | 389 | 			} else {
 | 
  
    | 390 | 				$charset='utf-8';
 | 
  
    | 391 | 			}
 | 
  
    | 392 | 			
 | 
  
    | 393 | 			$template->set_var('CHARSET', $charset);	
 | 
  
    | 394 | 									
 | 
  
    | 395 | 									
 | 
  
    | 396 | 			$template->parse('main', 'mainBlock', false);
 | 
  
    | 397 | 			$template->pparse('output', 'page');
 | 
  
    | 398 | 		}
 | 
  
    | 399 | 	}
 | 
  
    | 400 | 
 | 
  
    | 401 | 	// convert "REMEMBER_KEY" to a number and then repad
 | 
  
    | 402 | 	// any non numeric character will cause intval to return null thus returning 11 0's
 | 
  
    | 403 | 	function get_safe_remember_key() {
 | 
  
    | 404 | 		return str_pad(intval(substr($_COOKIE['REMEMBER_KEY'],0,11)),11,"0",STR_PAD_LEFT); // SQL Injection prevention
 | 
  
    | 405 | 	}
 | 
  
    | 406 | 	
 | 
  
    | 407 | 	// Warn user that they have had to many login attemps
 | 
  
    | 408 | 	function warn() {
 | 
  
    | 409 | 		header('Location: '.$this->warning_url);
 | 
  
    | 410 | 		exit(0);
 | 
  
    | 411 | 	}
 | 
  
    | 412 | 	
 | 
  
    | 413 | }
 | 
  
    | 414 | 
 | 
  
    | 415 | ?>
 |