Code:<?
session_start();
/*********************************************************************************/
/* This routine is moved up here so that all code below can use it if needed. */
/*********************************************************************************/
if ($_COOKIE["cookie_language"] != "")
$language = $_COOKIE["cookie_language"];
if ($_GET["language"] != "")
$language = $_GET["language"];
if ($language=="")
$language=$CFG_DEFAULT_LANGUAGE;
/* Language selection */
require "languages/english/strings.inc.php";
/*********************************************************************************/
/* This routine is borrowed from nuke and modified for this program. It will */
/* parse the user string passed from nuke to determine the user nick and password*/
/*********************************************************************************/
function is_user($user) {
global $uid, $pwd, $nukeUser, $nukeEmail, $nukeName;
if(!is_array($user)) {
$user = base64_decode($user);
$user = explode(":", $user);
$uid = "$user[0]";
$pwd = "$user[2]";
} else {
$uid = "$user[0]";
$pwd = "$user[2]";
}
$uid = addslashes($uid);
$uid = intval($uid);
if ($uid != "" AND $pwd != "") {
$sql = "SELECT username, user_password, user_email, name FROM nuke_users WHERE user_id='$uid'";
$result = mysql_query($sql);
$row = mysql_fetch_array($result);
$nukeUser = $row['username'];
$pass = $row['user_password'];
$nukeEmail = $row['user_email'];
$nukeName = $row['name'];
if($pass == $pwd && $pass != "") {
return 1;
}
}
return 0;
}
require_once("config.php");
$dbi = @mysql_connect($CFG_SERVER, $CFG_USER, $CFG_PASSWORD, $dbi, MYSQL_CLIENT_COMPRESS) or die("Unable to connect to MySQL Server. MySQL said: ".mysql_error());
$dbc = @mysql_select_db($CFG_DATABASE, $dbi) or die('Connection problem to Database. MySQL said '.mysql_error());
/*********************************************************************************/
/* Is this a valid active nuke user? If so then there should be a record in the */
/* nuke_sessions table. If not, then user is bounced back to nuke. */
/*********************************************************************************/
is_user($_GET['u']);
$sql = "SELECT * FROM nuke_session where uname='$nukeUser'";
$result = mysql_query($sql);
$sessionData = mysql_fetch_array($result);
extract($sessionData);
if ($guest!=0)
{
header("location: /modules.php?name=playchess");
}
/*********************************************************************************/
/* Okay. A session record was found so let's see if the username is in the */
/* player table. */
/*********************************************************************************/
$sql = "SELECT playerID, password as pass, nick as user FROM players where nick='$nukeUser'";
$result = mysql_query($sql);
$playerData = mysql_fetch_array($result);
extract($playerData);
if (!mysql_num_rows($result)) {
/*********************************************************************************/
/* No matching user was found in the player table so we will create a new user */
/* based on the nuke_user account information. Since nuke does not require a */
/* real name (and Chess does), if no name is entered in nuke then we will use the*/
/* nuke nickname as the username. */
/*********************************************************************************/
$nukeFirstName = explode(' ', $nukeName);
$nukeFirstName = str_replace(' ','',$nukeFirstName[0]);
if (empty($nukeFirstName)) $nukeFirstName = $nukeUser;
$nascimento = "$nano-$nmes-$ndia";
$tmpQuery = "INSERT INTO players (ativo,validation,password, firstName, nick, email, nascimento, sexo, rua, bairro, cidade, cep, uf, pais)
VALUES ('1','','$pwd', '$nukeFirstName', '$nukeUser', '$nukeEmail', '".$nascimento."', '".$_POST['sexo']."', '".$_POST['rua']."', '".$_POST['bairro']."', '".$_POST['cidade']."', '".$_POST['cep']."', '".$_POST['uf']."','".$_POST['pais']."')";
@mysql_query($tmpQuery);
/* get ID of new player */
$_SESSION['playerID'] = @mysql_insert_id();
/* set History format preference */
$tmpQuery = "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'history', 'pgn');";
/* set Theme preference */
$tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'theme', 'beholder');";
/* set Color Theme preference */
$tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'colortheme', '$CFG_DEFAULT_COLOR_THEME');";
/* Board Size */
$tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'boardSize', '50');";
/* Language */
$tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'language', '$language');";
/* Auto Accept */
$tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'autoaccept', '0');";
/* set auto-reload preference */
if (is_numeric($_POST['txtReload'])) {
if (intval($_POST['txtReload']) >= $CFG_MINAUTORELOAD)
$tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'autoreload', ".$_POST['txtReload'].")";
else
$tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'autoreload', ".$CFG_MINAUTORELOAD.")";
}
/* set email notification preference */
if ($CFG_USEEMAILNOTIFICATION) {
$tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'emailnotification', '".$_POST['txtEmailNotification']."')";
}
/*********************************************************************************/
/* Save the player record and preferences record. */
/*********************************************************************************/
@mysql_query($tmpQuery);
/*********************************************************************************/
/* If you want to email a confirmation email then uncomment and modify this code.*/
/*********************************************************************************/
/* mail("$row[firstName] <$row[email]>","Chess Knights - Account activated","
$row[firstName], welcome to The Chess Knights!
Your account was activated and you can log in trough the url:
$CFG_SITE_URL
Your username is: $row[nick]
","From: $CFG_EMAIL");
*/
/*********************************************************************************/
/* A new record has been added to the Chess user table. Now, force return to */
/* nuke and it should all pass thru to Chess server and log you in. */
/*********************************************************************************/
header("location: /modules.php?name=playchess");
die('New User Created!');
}
/*********************************************************************************/
/* User is a valid nuke user and a valid Chess player, so let's play Chess!!! */
/*********************************************************************************/
if (isset($user)&&isset($pass)){
$_POST['pwdPassword'] = $pass;
$_POST['txtNick'] = $user;
$_POST['ToDo'] = "Login";
session_register(_POST);
header("location: mainmenu.php");
exit;
}
?>
|