updated template for registration and setting up add_user functions

This commit is contained in:
Botanic 2013-06-07 04:05:28 -07:00
parent 47887e000c
commit ef8d9129c4
7 changed files with 280 additions and 220 deletions

View file

@ -10,7 +10,7 @@ class Helpers{
$smarty = new Smarty; $smarty = new Smarty;
// turn smarty debugging on/off // turn smarty debugging on/off
$smarty -> debugging = false; $smarty -> debugging = true;
// caching must be disabled for multi-language support // caching must be disabled for multi-language support
$smarty -> caching = false; $smarty -> caching = false;
$smarty -> cache_lifetime = 120; $smarty -> cache_lifetime = 120;

View file

@ -1,151 +1,202 @@
<?php <?php
class Users { class Users{
/** function add_user(){
* // check if values exist
if ( isset( $_POST["Username"] ) and isset( $_POST["Password"] ) and isset( $_POST["Email"] ) )
{
// check values
$user = Users :: checkUser( $_POST["Username"] );
$pass = Users :: checkPassword( $_POST["Password"] );
$cpass = Users :: confirmPassword();
$email = Users :: checkEmail( $_POST["Email"] );
}else{
$user = "";
$pass = "";
$cpass = "";
$email = "";
}
// if all are good then create user
if ( ( $user == "success" ) and ( $pass == "success" ) and ( $cpass == "success" ) and ( $email == "success" ) and ( isset( $_POST["TaC"] ) ) ){
$edit = array(
'name' => $_POST["Username"],
'pass' => $_POST["Password"],
'mail' => $_POST["Email"],
'init' => $_POST["Email"],
'unhashpass' => $_POST["Password"],
'status' => 1,
'access' => REQUEST_TIME
);
user_save( NULL, $edit );
header( 'Location: email_sent.php' );
exit;
}else{
$pageElements = array(
'GAME_NAME' => variable_get( 'ryzommanage_game-name', '' ),
'WELCOME_MESSAGE' => variable_get( 'ryzommanage_register-welcome', '' ),
'USERNAME' => $user,
'PASSWORD' => $pass,
'CPASSWORD' => $cpass,
'EMAIL' => $email
);
if ( $user != "success" ){
$pageElements['USERNAME_ERROR'] = 'TRUE';
}else{
$pageElements['USERNAME_ERROR'] = 'FALSE';
}
if ( $pass != "success" ){
$pageElements['PASSWORD_ERROR'] = 'TRUE';
}else{
$pageElements['PASSWORD_ERROR'] = 'FALSE';
}
if ( $cpass != "success" ){
$pageElements['CPASSWORD_ERROR'] = 'TRUE';
}else{
$pageElements['CPASSWORD_ERROR'] = 'FALSE';
}
if ( $email != "success" ){
$pageElements['EMAIL_ERROR'] = 'TRUE';
}else{
$pageElements['EMAIL_ERROR'] = 'FALSE';
}
if ( isset( $_POST["TaC"] ) ){
$pageElements['TAC_ERROR'] = 'FALSE';
}else{
$pageElements['TAC_ERROR'] = 'TRUE';
}
return $pageElements;
}
/**
* Function checkUser * Function checkUser
* *
* @takes $username * @takes $username
* @return string * @return string Info: Returns a string based on if the username is valid, if valid then "success" is returned
*
* Info: Returns a string based on if the username is valid, if valid then "success" is returned
*
*/ */
public function checkUser($username) public function checkUser( $username )
{ {
if (isset($username)) { if ( isset( $username ) ){
if (strlen($username) > 12) { if ( strlen( $username ) > 12 ){
return "Username must be no more than 12 characters."; return "Username must be no more than 12 characters.";
} elseif (strlen($username) < 5) { }elseif ( strlen( $username ) < 5 ){
return "Username must be 5 or more characters."; return "Username must be 5 or more characters.";
} elseif (!preg_match('/^[a-z0-9\.]*$/', $username)) { }elseif ( !preg_match( '/^[a-z0-9\.]*$/', $username ) ){
return "Username can only contain numbers and letters."; return "Username can only contain numbers and letters.";
} elseif (sql::db_query("SELECT COUNT(*) FROM {users} WHERE name = :name", array( }elseif ( sql :: db_query( "SELECT COUNT(*) FROM {users} WHERE name = :name", array(
':name' => $username ':name' => $username
))->fetchField()) { ) ) -> fetchField() ){
return "Username " . $username . " is in use."; return "Username " . $username . " is in use.";
} else { }else{
return "success"; return "success";
} }
} else { }else{
return "success"; return "success";
} }
return "fail"; return "fail";
} }
/** /**
*
* Function checkPassword * Function checkPassword
* *
* @takes $pass * @takes $pass
* @return string * @return string Info: Returns a string based on if the password is valid, if valid then "success" is returned
*
* Info: Returns a string based on if the password is valid, if valid then "success" is returned
*
*/ */
public function checkPassword($pass) public function checkPassword( $pass )
{ {
if (isset($pass)) { if ( isset( $pass ) ){
if (strlen($pass) > 20) { if ( strlen( $pass ) > 20 ){
return "Password must be no more than 20 characters."; return "Password must be no more than 20 characters.";
} elseif (strlen($pass) < 5) { }elseif ( strlen( $pass ) < 5 ){
return "Password must be more than 5 characters."; return "Password must be more than 5 characters.";
} else { }else{
return "success"; return "success";
} }
} }
return "fail"; return "fail";
} }
/** /**
*
* Function confirmPassword * Function confirmPassword
* *
* @takes $pass * @takes $pass
* @return string * @return string Info: Verify's $_POST["Password"] is the same as $_POST["ConfirmPass"]
*
* Info: Verify's $_POST["Password"] is the same as $_POST["ConfirmPass"]
*
*/ */
public function confirmPassword() public function confirmPassword()
{ {
if (($_POST["Password"]) != ($_POST["ConfirmPass"])) { if ( ( $_POST["Password"] ) != ( $_POST["ConfirmPass"] ) ){
return "Passwords do not match."; return "Passwords do not match.";
} else { }else{
return "success"; return "success";
} }
return "fail"; return "fail";
} }
/** /**
*
* Function checkEmail * Function checkEmail
* *
* @takes $email * @takes $email
* @return * @return
*
*
*
*/ */
public function checkEmail($email) public function checkEmail( $email )
{ {
if (isset($email)) { if ( isset( $email ) ){
if (!validEmail($email)) { if ( !validEmail( $email ) ){
return "Email address is not valid."; return "Email address is not valid.";
} elseif (db_query("SELECT COUNT(*) FROM {users} WHERE mail = :mail", array( }elseif ( db_query( "SELECT COUNT(*) FROM {users} WHERE mail = :mail", array(
':mail' => $email ':mail' => $email
))->fetchField()) { ) ) -> fetchField() ){
return "Email is in use."; return "Email is in use.";
} else { }else{
return "success"; return "success";
} }
} else { }else{
return "success"; return "success";
} }
return "fail"; return "fail";
} }
public function validEmail($email) public function validEmail( $email )
{ {
$isValid = true; $isValid = true;
$atIndex = strrpos($email, "@"); $atIndex = strrpos( $email, "@" );
if (is_bool($atIndex) && !$atIndex) { if ( is_bool( $atIndex ) && !$atIndex ){
$isValid = false; $isValid = false;
} else { }else{
$domain = substr($email, $atIndex + 1); $domain = substr( $email, $atIndex + 1 );
$local = substr($email, 0, $atIndex); $local = substr( $email, 0, $atIndex );
$localLen = strlen($local); $localLen = strlen( $local );
$domainLen = strlen($domain); $domainLen = strlen( $domain );
if ($localLen < 1 || $localLen > 64) { if ( $localLen < 1 || $localLen > 64 ){
// local part length exceeded // local part length exceeded
$isValid = false; $isValid = false;
} else if ($domainLen < 1 || $domainLen > 255) { }else if ( $domainLen < 1 || $domainLen > 255 ){
// domain part length exceeded // domain part length exceeded
$isValid = false; $isValid = false;
} else if ($local[0] == '.' || $local[$localLen - 1] == '.') { }else if ( $local[0] == '.' || $local[$localLen - 1] == '.' ){
// local part starts or ends with '.' // local part starts or ends with '.'
$isValid = false; $isValid = false;
} else if (preg_match('/\\.\\./', $local)) { }else if ( preg_match( '/\\.\\./', $local ) ){
// local part has two consecutive dots // local part has two consecutive dots
$isValid = false; $isValid = false;
} else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain)) { }else if ( !preg_match( '/^[A-Za-z0-9\\-\\.]+$/', $domain ) ){
// character not valid in domain part // character not valid in domain part
$isValid = false; $isValid = false;
} else if (preg_match('/\\.\\./', $domain)) { }else if ( preg_match( '/\\.\\./', $domain ) ){
// domain part has two consecutive dots // domain part has two consecutive dots
$isValid = false; $isValid = false;
} else if (!preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/', str_replace("\\\\", "", $local))) { }else if ( !preg_match( '/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/', str_replace( "\\\\", "", $local ) ) ){
// character not valid in local part unless // character not valid in local part unless
// local part is quoted // local part is quoted
if (!preg_match('/^"(\\\\"|[^"])+"$/', str_replace("\\\\", "", $local))) { if ( !preg_match( '/^"(\\\\"|[^"])+"$/', str_replace( "\\\\", "", $local ) ) ){
$isValid = false; $isValid = false;
} }
} }
if ($isValid && !(checkdnsrr($domain, "MX") || checkdnsrr($domain, "A"))) { if ( $isValid && !( checkdnsrr( $domain, "MX" ) || checkdnsrr( $domain, "A" ) ) ){
// domain not found in DNS // domain not found in DNS
$isValid = false; $isValid = false;
} }
} }
return $isValid; return $isValid;
} }
public function generateSALT($length = 2) public function generateSALT( $length = 2 )
{ {
// start with a blank salt // start with a blank salt
$salt = ""; $salt = "";
// define possible characters - any character in this string can be // define possible characters - any character in this string can be
@ -154,19 +205,19 @@ public function generateSALT($length = 2)
// you should do it // you should do it
$possible = "2346789bcdfghjkmnpqrtvwxyzBCDFGHJKLMNPQRTVWXYZ"; $possible = "2346789bcdfghjkmnpqrtvwxyzBCDFGHJKLMNPQRTVWXYZ";
// we refer to the length of $possible a few times, so let's grab it now // we refer to the length of $possible a few times, so let's grab it now
$maxlength = strlen($possible); $maxlength = strlen( $possible );
// check for length overflow and truncate if necessary // check for length overflow and truncate if necessary
if ($length > $maxlength) { if ( $length > $maxlength ){
$length = $maxlength; $length = $maxlength;
} }
// set up a counter for how many characters are in the salt so far // set up a counter for how many characters are in the salt so far
$i = 0; $i = 0;
// add random characters to $salt until $length is reached // add random characters to $salt until $length is reached
while ($i < $length) { while ( $i < $length ){
// pick a random character from the possible ones // pick a random character from the possible ones
$char = substr($possible, mt_rand(0, $maxlength - 1), 1); $char = substr( $possible, mt_rand( 0, $maxlength - 1 ), 1 );
// have we already used this character in $salt? // have we already used this character in $salt?
if (!strstr($salt, $char)) { if ( !strstr( $salt, $char ) ){
// no, so it's OK to add it onto the end of whatever we've already got... // no, so it's OK to add it onto the end of whatever we've already got...
$salt .= $char; $salt .= $char;
// ... and increase the counter by one // ... and increase the counter by one
@ -175,6 +226,7 @@ public function generateSALT($length = 2)
} }
// done! // done!
return $salt; return $salt;
} }
} }

View file

@ -27,7 +27,7 @@
</tr> </tr>
<tr> <tr>
<td width="33%" <?php if ($PASSWORD_ERROR == "TRUE"){ echo 'class="error"';}?> id="caption-Password">Desired Password:</td> <td width="33%" {if isset($PASSWORD_ERROR) && $PASSWORD_ERROR eq "TRUE"}class="error"{/if} id="caption-Password">{$password_tag}</td>
<td width="25%"> <td width="25%">
<input type="password" <input type="password"
@ -36,27 +36,27 @@
maxlength="20" maxlength="20"
onkeyup= onkeyup=
"testPassword(document.Page1.Password.value, 'comment-Password')" "testPassword(document.Page1.Password.value, 'comment-Password')"
onfocus="javascript:showTooltip(' 5-20 characters.', this);" /> onfocus="javascript:showTooltip('{$password_message}', this);" />
</td> </td>
<td id="comment-Password" <?php if ($PASSWORD_ERROR == "TRUE"){ echo 'class="error"';}?> width="42%"><?php if ($PASSWORD_ERROR == "TRUE"){ echo $PASSWORD;}?></td> <td id="comment-Password" {if isset($PASSWORD_ERROR) && $PASSWORD_ERROR eq "TRUE"}class="error"{/if} width="42%">{if isset($PASSWORD_ERROR) && $PASSWORD_ERROR eq "TRUE"}{$Password}{/if}</td>
</tr> </tr>
<tr> <tr>
<td width="33%"<?php if ($CPASSWORD_ERROR == "TRUE"){ echo 'class="error"';}?> id="caption-ConfirmPass">Confirm Password:</td> <td width="33%" {if isset($CPASSWORD_ERROR) && $CPASSWORD_ERROR eq "TRUE"}class="error"{/if} id="caption-ConfirmPass">{$cpassword_tag}</td>
<td width="25%"><input type="password" <td width="25%"><input type="password"
name="ConfirmPass" name="ConfirmPass"
value="" value=""
maxlength="20" maxlength="20"
onfocus="javascript:showTooltip('Retype your Password', this);" /> onfocus="javascript:showTooltip('{$cpassword_message}', this);" />
</td> </td>
<td id="comment-ConfirmPass" <?php if ($CPASSWORD_ERROR == "TRUE"){ echo 'class="error"';}?>width="42%"><?php if ($CPASSWORD_ERROR == "TRUE"){ echo $CPASSWORD;}?></td> <td id="comment-ConfirmPass" {if isset($CPASSWORD_ERROR) && $CPASSWORD_ERROR eq "TRUE"}class="error"{/if} width="42%">{if isset($CPASSWORD_ERROR) && $CPASSWORD_ERROR eq "TRUE"}{$ConfirmPass}{/if}</td>
</tr> </tr>
<tr> <tr>
<td width="33%" <?php if ($EMAIL_ERROR == "TRUE"){ echo 'class="error"';}?> id="caption-Email">Email Address (to which a confirmation email will be sent):</td> <td width="33%" {if isset($CPASSWORD_ERROR) && $CPASSWORD_ERROR eq "TRUE"}class="error"{/if} id="caption-Email">{$email_tag}</td>
<td width="25%"> <td width="25%">
<input type="text" <input type="text"
@ -64,24 +64,22 @@
value="" value=""
maxlength="255" maxlength="255"
onfocus= onfocus=
"javascript:showTooltip('Please verify that the e-mail address you enter here is valid and will remain valid in the future. It will only be used to manage your <?php echo $GAME_NAME; ?> account.', this);" /> "javascript:showTooltip('{$email_message}', this);" />
</td> </td>
<td id="comment-Email" <?php if ($EMAIL_ERROR == "TRUE"){ echo 'class="error"';}?> width="42%"><?php if ($EMAIL_ERROR == "TRUE"){ echo $EMAIL;}?></td> <td id="comment-Email" {if isset($EMAIL_ERROR) && $EMAIL_ERROR eq "TRUE"}class="error"{/if} width="42%">{if isset($EMAIL_ERROR) && $EMAIL_ERROR eq "TRUE"}{$Email}{/if}</td>
</tr> </tr>
<tr> <tr>
<td width= <td width=
"33%" <?php if ($TAC_ERROR == "TRUE"){ echo 'class="error"';}?> "33%" {if isset($TAC_ERROR) && $TAC_ERROR eq "TRUE"}class="error"{/if}
colspan="2"><input type="checkbox" colspan="2"><input type="checkbox"
name="TaC" name="TaC"
value="1" value="1"
onfocus="javascript:showTooltip('', this);" /><span id= onfocus="javascript:showTooltip('', this);" /><span id=
"caption-TaC">YES, I agree to the terms of "caption-TaC">{$tac_tag}</span></td>
service</span></td><?php if ($TAC_ERROR == "TRUE"){ <td id="comment-TaC" {if isset($TAC_ERROR) && $TAC_ERROR eq "TRUE"}class="error"{/if} width="42%">{$tac_message}</td>
echo '<td id="comment-TaC" class="error" width="42%">You must accept the Terms of Service</td>';}
else {
echo '<td width="42%" id="comment-TaC" >';}; ?>
</tr> </tr>
</table> </table>
@ -98,22 +96,20 @@
inset=""></div> inset=""></div>
<div id="tooltip-Username"> <div id="tooltip-Username">
5-12 lower-case characters and numbers. The login (username) you create here will be {$username_tooltip}
your login name. The name of your game characters will be chosen later on.
</div> </div>
<div id="tooltip-Password"> <div id="tooltip-Password">
5-20 characters. {$password_message}
</div> </div>
<div id="tooltip-ConfirmPass"> <div id="tooltip-ConfirmPass">
Retype your Password {$cpassword_message}
</div> </div>
<div id="tooltip-Email"> <div id="tooltip-Email">
Please verify that the e-mail address you enter here is valid and will remain valid {$email_message}
in the future. It will be used to manage your <?php echo $GAME_NAME; ?> account.
</div> </div>
<div id="tooltip-TaC"></div> <div id="tooltip-TaC"></div>

View file

@ -4,5 +4,19 @@
[register] [register]
title = "RYZOM CORE INGAME REGISTRATION" title = "RYZOM CORE INGAME REGISTRATION"
welcome_message = "Welcome! Please fill in the following fields to get your new Ryzom Core account:" welcome_message = "Welcome! Please fill in the following fields to get your new Ryzom Core account:"
username_tag = "Desired Username:" username_tag = "Desired Username:"
username_tooltip = "5-12 lower-case characters and numbers. The login (username) you create here will be your login name. The name of your game characters will be chosen later on." username_tooltip = "5-12 lower-case characters and numbers. The login (username) you create here will be your login name. The name of your game characters will be chosen later on."
password_tag = "Desired Password:"
password_message = "Password must be 5-20 characters."
cpassword_tag = "Confirm Password:"
cpassword_message = "Retype your Password"
email_tag = "Email Address (to which a confirmation email will be sent):"
email_message = "Please verify that the e-mail address you enter here is valid and will remain valid in the future. It will only be used to manage your Ryzom Core account."
tac_tag = "YES, I agree to the terms of service."
tac_message = "You must accept the Terms of Service."

View file

@ -18,8 +18,6 @@ $DBHOST = 'localhost' ;
$NTUserName = 'shard' ; $NTUserName = 'shard' ;
$NTPassword = '' ; $NTPassword = '' ;
$SITETITLE = 'Ryzom Core AMS' ;
$LOGRELATIVEPATH = 'logs/' ; $LOGRELATIVEPATH = 'logs/' ;
// If true= the server will add automatically unknown user in the database // If true= the server will add automatically unknown user in the database
@ -83,5 +81,3 @@ $NELDB_CONFIG_TABLE = $NELDB_PREFIX . 'config';
$BG_IMG = 'imgs/bg_live.png' ; $BG_IMG = 'imgs/bg_live.png' ;
$DEFAULT_LANGUAGE = 'en'; $DEFAULT_LANGUAGE = 'en';
$TEMPLATE_DIR = "";

View file

@ -1,6 +1,10 @@
<?php <?php
function add_user(){ function add_user(){
echo "test";
//add user locally here
$return = users::add_user();
return $return;
} }
function checkUser(){ function checkUser(){

View file

@ -3,20 +3,18 @@
require( '../config.php' ); require( '../config.php' );
require( '../../ams_lib/libinclude.php' ); require( '../../ams_lib/libinclude.php' );
if (isset($_POST["function"])){ if ( isset( $_POST["function"] ) ){
require("inc/".$_POST["function"].".php"); require( "inc/" . $_POST["function"] . ".php" );
$_POST["function"](); $return = $_POST["function"]();
} }
function loadpage ($page){ function loadpage ( $page ){
require_once('autoload/'.$page.'.php'); require_once( 'autoload/' . $page . '.php' );
} }
$page = 'home'; $page = 'home';
if (isset($_GET["page"])) { if ( isset( $_GET["page"] ) ){
$page = $_GET["page"]; $page = $_GET["page"];
} }
$pageElements = array();
$pageElements['USERNAME_ERROR'] = 'TRUE'; helpers :: loadTemplate( 'register' , $return );
$pageElements['Username'] = 'testuser';
helpers::loadTemplate( 'register' , $pageElements);