AutoIndent
This commit is contained in:
parent
077ab4c714
commit
8cd093edb5
3 changed files with 375 additions and 433 deletions
|
@ -3,35 +3,32 @@
|
|||
{
|
||||
//function CWwwLog() {}
|
||||
|
||||
/*
|
||||
/**
|
||||
* Return the log directory. Create it if it does not exist, or return false if creation failed.
|
||||
* Examples:
|
||||
* __FILE__ = r:\code\ryzom\www\login\config.php
|
||||
* $_SERVER['PATH_TRANSLATED'] = 'r:/code/ryzom/www/login//r2_login.php'
|
||||
* $_SERVER['SCRIPT_FILENAME'] = 'r:/code/ryzom/www/login//r2_login.php'
|
||||
*/
|
||||
function getSafeLogDir()
|
||||
public function getSafeLogDir()
|
||||
{
|
||||
// Examples:
|
||||
// __FILE__ = r:\code\ryzom\www\login\config.php
|
||||
// $_SERVER['PATH_TRANSLATED'] = 'r:/code/ryzom/www/login//r2_login.php'
|
||||
// $_SERVER['SCRIPT_FILENAME'] = 'r:/code/ryzom/www/login//r2_login.php'
|
||||
global $LogRelativePath;
|
||||
$pathInfo = pathinfo(__FILE__);
|
||||
$logPath = $pathInfo['dirname'] . '/' . $LogRelativePath;
|
||||
if (!is_dir($logPath))
|
||||
{
|
||||
if (!is_dir($logPath)) {
|
||||
$res = mkdir($LogPath, 0700);
|
||||
return $res ? $logPath : false;
|
||||
}
|
||||
return $logPath;
|
||||
}
|
||||
|
||||
function logStr($str)
|
||||
public function logStr($str)
|
||||
{
|
||||
$logPath = $this->getSafeLogDir();
|
||||
if ($logPath !== false)
|
||||
{
|
||||
if ($logPath !== false) {
|
||||
$fp = fopen($logPath . '/r2_login_' . date('Y-m-d') . '.log', 'a');
|
||||
fwrite($fp, date('Y-m-d H:i:s') . ' (' . $_SERVER['REMOTE_ADDR'] . ':' . $_SERVER['REQUEST_URI'] . "): $str\n");
|
||||
fclose($fp);
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
@ -2,13 +2,12 @@
|
|||
class LoginCb extends CLoginServiceWeb
|
||||
{
|
||||
// receive the login result sent back by the LS
|
||||
function loginResult($userId, $cookie, $resultCode, $errorString)
|
||||
public function loginResult($userId, $cookie, $resultCode, $errorString)
|
||||
{
|
||||
global $RingWebHost, $RingWebHostPHP;
|
||||
global $domainId;
|
||||
|
||||
if ($resultCode == 0 && $cookie != "")
|
||||
{
|
||||
if ($resultCode == 0 && $cookie != "") {
|
||||
// gather the domain information (server version, patch urls and backup patch url
|
||||
global $DBHost, $DBUserName, $DBPassword, $DBName, $AutoInsertInRing;
|
||||
|
||||
|
@ -17,8 +16,7 @@
|
|||
$query = "SELECT * FROM domain WHERE domain_id=$domainId";
|
||||
$result = mysqli_query($link, $query) or die(errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||
|
||||
if( mysqli_num_rows($result) != 1)
|
||||
{
|
||||
if (mysqli_num_rows($result) != 1) {
|
||||
die(errorMsgBlock(3001, $domainId));
|
||||
}
|
||||
$row = mysqli_fetch_array($result);
|
||||
|
@ -32,23 +30,17 @@
|
|||
$FSHostLuaMode = false;
|
||||
$res = joinMainland($userId, $domainId, $row["domain_name"]);
|
||||
|
||||
if ($res)
|
||||
{
|
||||
if ($res) {
|
||||
echo "1#" . $cookie . "#" . $FSHostResultStr . "#http://" . $RingWebHost . "/ring/web_start.php#http://" . $RingWebHostPHP . "/ring/\n";
|
||||
// return the ring domain information
|
||||
echo $row["patch_version"] . "#" . $row["backup_patch_url"] . "#" . $row["patch_urls"];
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
global $JoinSessionResultCode, $JoinSessionResultMsg;
|
||||
echo errorMsgBlock(BASE_TRANSLATED_RSM_ERROR_NUM + $JoinSessionResultCode, $JoinSessionResultCode, $JoinSessionResultMsg, $userId);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
// empty cookie, this mean the user id can't be validated by the LS
|
||||
echo errorMsgBlock(BASE_TRANSLATED_LS_ERROR_NUM + $resultCode, $resultCode, $errorString, $userId);
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
@ -6,79 +6,32 @@
|
|||
// For error handling, buffer all output
|
||||
ob_start('ob_callback_r2login');
|
||||
|
||||
include_once('config.php');
|
||||
include_once('login_translations.php');
|
||||
include_once('../tools/nel_message.php');
|
||||
include_once('../tools/domain_info.php');
|
||||
include_once('login_service_itf.php');
|
||||
include_once('../ring/join_shard.php');
|
||||
include_once('./class/CWwwLog.php');
|
||||
include_once('./class/LoginCb.php');
|
||||
include_once 'config.php';
|
||||
include_once 'login_translations.php';
|
||||
include_once '../tools/nel_message.php';
|
||||
include_once '../tools/domain_info.php';
|
||||
include_once 'login_service_itf.php';
|
||||
include_once '../ring/join_shard.php';
|
||||
include_once './class/CWwwLog.php';
|
||||
include_once './class/LoginCb.php';
|
||||
|
||||
|
||||
function get_salt($password)
|
||||
{
|
||||
if ($password[0] == '$')
|
||||
{
|
||||
$salt = substr($password, 0, 19);
|
||||
}
|
||||
else
|
||||
{
|
||||
$salt = substr($password, 0, 2);
|
||||
}
|
||||
return $salt;
|
||||
}
|
||||
|
||||
// see errorMsg
|
||||
function errorMsgBlock($errNum=GENERIC_ERROR_NUM) // $mixedArgs
|
||||
{
|
||||
$args = func_get_args();
|
||||
return '0:'.call_user_func_array('errorMsg', $args);
|
||||
}
|
||||
|
||||
// Callback called on end of output buffering
|
||||
function ob_callback_r2login($buffer)
|
||||
{
|
||||
// Log only in case of error or malformed result string
|
||||
$blockHd = substr($buffer, 0, 2);
|
||||
if ($blockHd != '1:')
|
||||
{
|
||||
$logFile = new CWwwLog();
|
||||
$logFile->logStr(str_replace("\n",'\n',$buffer));
|
||||
}
|
||||
return $buffer; // sent to output
|
||||
}
|
||||
|
||||
// Callback called on error
|
||||
function err_callback($errno, $errmsg, $filename, $linenum, $vars)
|
||||
{
|
||||
$logFile = new CWwwLog();
|
||||
$logFile->logStr("PHP ERROR/$errno $errmsg ($filename:$linenum)");
|
||||
$logFile->logStr("PHP CALLSTACK/" . print_r(debug_backtrace(), TRUE));
|
||||
// Never die after an error
|
||||
}
|
||||
|
||||
if (!isset($_GET['cmd']))
|
||||
{
|
||||
if (!isset($_GET['cmd'])) {
|
||||
die(errorMsgBlock(3002));
|
||||
}
|
||||
|
||||
// check for 'clear password' tag
|
||||
if (!isset($_GET['cp']))
|
||||
{
|
||||
if (!isset($_GET['cp'])) {
|
||||
$cp = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
$cp = $_GET['cp'];
|
||||
}
|
||||
|
||||
$submittedLang = isset($_GET['lg']) ? $_GET['lg'] : 'unknown';
|
||||
if (isset($_GET['dbg']) && ($_GET['dbg'] == 1))
|
||||
if (isset($_GET['dbg']) && ($_GET['dbg'] == 1)) {
|
||||
$DisplayDbg = true;
|
||||
}
|
||||
|
||||
switch($_GET['cmd'])
|
||||
{
|
||||
switch ($_GET['cmd']) {
|
||||
case 'ask':
|
||||
// client ask for a login salt
|
||||
askSalt($_GET['login'], $submittedLang);
|
||||
|
@ -86,27 +39,22 @@
|
|||
case 'login':
|
||||
$domainId = -1;
|
||||
// client sent is login info
|
||||
if (!checkUserValidity($_GET['login'], $_GET['password'], $_GET['clientApplication'], $cp, $id, $reason, $priv, $extended, $domainId, $submittedLang))
|
||||
{
|
||||
if (!checkUserValidity($_GET['login'], $_GET['password'], $_GET['clientApplication'], $cp, $id, $reason, $priv, $extended, $domainId, $submittedLang)) {
|
||||
echo '0:' . $reason;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
|
||||
// retreive the domain info
|
||||
$domainInfo = getDomainInfo($domainId);
|
||||
|
||||
// if we need to create missing ring info
|
||||
if ($AutoCreateRingInfo)
|
||||
{
|
||||
if ($AutoCreateRingInfo) {
|
||||
// check if the ring user exist, and create it if not
|
||||
$ringDb = mysqli_connect($DBHost, $RingDBUserName, $RingDBPassword) or die(errorMsgBlock(3004, 'Ring', $DBHost, $RingDBUserName));
|
||||
mysqli_select_db($ringDb, $domainInfo['ring_db_name']) or die(errorMsgBlock(3005, 'Ring', $domainInfo['ring_db_name'], $DBHost, $RingDBUserName));
|
||||
$query = "SELECT user_id FROM ring_users where user_id = '" . $id . "'";
|
||||
$result = mysqli_query($ringDb, $query) or die(errorMsgBlock(3006, $query, 'Ring', $domainInfo['ring_db_name'], $DBHost, $RingDBUserName, mysqli_error($ringDb)));
|
||||
|
||||
if (mysqli_num_rows($result) == 0)
|
||||
{
|
||||
if (mysqli_num_rows($result) == 0) {
|
||||
// no ring user record, build one
|
||||
$login = mysqli_real_escape_string($ringDb, $_GET['login']);
|
||||
$query = "INSERT INTO ring_users SET user_id = '$id', user_name = '$login', user_type='ut_pioneer'";
|
||||
|
@ -128,8 +76,7 @@
|
|||
$login->login($id, $_SERVER["REMOTE_ADDR"], $domainId);
|
||||
|
||||
// wait for the return message
|
||||
if (!$login->waitCallback())
|
||||
{
|
||||
if (!$login->waitCallback()) {
|
||||
die(errorMsgBlock(3003));
|
||||
}
|
||||
|
||||
|
@ -144,6 +91,45 @@
|
|||
// Functions
|
||||
// ----------------------------------------------------------------------------------------
|
||||
|
||||
function get_salt($password)
|
||||
{
|
||||
if ($password[0] == '$') {
|
||||
$salt = substr($password, 0, 19);
|
||||
} else {
|
||||
$salt = substr($password, 0, 2);
|
||||
}
|
||||
return $salt;
|
||||
}
|
||||
|
||||
// see errorMsg
|
||||
function errorMsgBlock($errNum = GENERIC_ERROR_NUM) // $mixedArgs
|
||||
|
||||
{
|
||||
$args = func_get_args();
|
||||
return '0:' . call_user_func_array('errorMsg', $args);
|
||||
}
|
||||
|
||||
// Callback called on end of output buffering
|
||||
function ob_callback_r2login($buffer)
|
||||
{
|
||||
// Log only in case of error or malformed result string
|
||||
$blockHd = substr($buffer, 0, 2);
|
||||
if ($blockHd != '1:') {
|
||||
$logFile = new CWwwLog();
|
||||
$logFile->logStr(str_replace("\n", '\n', $buffer));
|
||||
}
|
||||
return $buffer; // sent to output
|
||||
}
|
||||
|
||||
// Callback called on error
|
||||
function err_callback($errno, $errmsg, $filename, $linenum, $vars)
|
||||
{
|
||||
$logFile = new CWwwLog();
|
||||
$logFile->logStr("PHP ERROR/$errno $errmsg ($filename:$linenum)");
|
||||
$logFile->logStr("PHP CALLSTACK/" . print_r(debug_backtrace(), true));
|
||||
// Never die after an error
|
||||
}
|
||||
|
||||
// $reason contains the reason why the check failed or success
|
||||
// return true if the check is ok
|
||||
function checkUserValidity($login, $password, $clientApplication, $cp, &$id, &$reason, &$priv, &$extended, &$domainId, $lang)
|
||||
|
@ -162,8 +148,7 @@
|
|||
$query = "SELECT domain_id FROM domain WHERE domain_name='$domainName'";
|
||||
$result = mysqli_query($link, $query) or die(errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||
|
||||
if (mysqli_num_rows($result) == 0)
|
||||
{
|
||||
if (mysqli_num_rows($result) == 0) {
|
||||
// unrecoverable error, we must giveup
|
||||
$reason = errorMsg(3007, $domainName);
|
||||
mysqli_close($link);
|
||||
|
@ -184,10 +169,8 @@
|
|||
$query = "SELECT * FROM user where Login='$login'";
|
||||
$result = mysqli_query($link, $query) or die(errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||
|
||||
if (mysqli_num_rows ($result) == 0)
|
||||
{
|
||||
if ($AcceptUnknownUser)
|
||||
{
|
||||
if (mysqli_num_rows($result) == 0) {
|
||||
if ($AcceptUnknownUser) {
|
||||
// login doesn't exist, create it
|
||||
$password = mysqli_real_escape_string($link, $password);
|
||||
$query = "INSERT INTO user (Login, Password) VALUES ('$login', '$password')";
|
||||
|
@ -197,8 +180,7 @@
|
|||
$query = "SELECT * FROM user WHERE Login='$login'";
|
||||
$result = mysqli_query($link, $query) or die(errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||
|
||||
if (mysqli_num_rows ($result) == 1)
|
||||
{
|
||||
if (mysqli_num_rows($result) == 1) {
|
||||
$reason = errorMsg(3008, $login);
|
||||
$row = mysqli_fetch_assoc($result);
|
||||
$id = $row["UId"];
|
||||
|
@ -210,24 +192,17 @@
|
|||
$result = mysqli_query($link, $query) or die(errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||
|
||||
$res = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
$reason = errorMsg(3009, $login);
|
||||
$res = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
$reason = errorMsg(2001, $login, 'checkUserValidity');
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
$row = mysqli_fetch_assoc($result);
|
||||
$salt = get_salt($row["Password"]);
|
||||
if (($cp && $row["Password"] == $password) || (!$cp && $row["Password"] == crypt($password, $salt)))
|
||||
{
|
||||
if (($cp && $row["Password"] == $password) || (!$cp && $row["Password"] == crypt($password, $salt))) {
|
||||
// Store the real login (with correct case)
|
||||
$_GET['login'] = $row['Login'];
|
||||
// check if the user can use this application
|
||||
|
@ -235,50 +210,38 @@
|
|||
$clientApplication = mysqli_real_escape_string($link, $clientApplication);
|
||||
$query = "SELECT * FROM permission WHERE UId='" . $row["UId"] . "' AND DomainId='$domainId'";
|
||||
$result = mysqli_query($link, $query) or die(errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||
if (mysqli_num_rows ($result) == 0)
|
||||
{
|
||||
if ($AcceptUnknownUser)
|
||||
{
|
||||
if (mysqli_num_rows($result) == 0) {
|
||||
if ($AcceptUnknownUser) {
|
||||
// add default permission
|
||||
$query = "INSERT INTO permission (UId, DomainId, ShardId, AccessPrivilege) VALUES ('" . $row["UId"] . "', '$domainId', -1, '$domainStatus')";
|
||||
$result = mysqli_query($link, $query) or die(errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||
|
||||
$reason = errorMsg(3010);
|
||||
$res = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
// no permission
|
||||
$reason = errorMsg(3011, $clientApplication, $domainName);
|
||||
$res = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
// check that the access privilege for the domain
|
||||
$permission = mysqli_fetch_assoc($result);
|
||||
|
||||
if (!strstr($permission['AccessPrivilege'], $accessPriv))
|
||||
{
|
||||
if (!strstr($permission['AccessPrivilege'], $accessPriv)) {
|
||||
// no right to connect
|
||||
if ($AcceptUnknownUser)
|
||||
{
|
||||
if ($AcceptUnknownUser) {
|
||||
// set an additionnal privilege for this player
|
||||
$query = "UPDATE permission set AccessPrivilege='" . $permission['AccessPrivilege'] . ",$accessPriv' WHERE PermissionId=" . $permission['PermissionId'];
|
||||
$result = mysqli_query($link, $query) or die(errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||
|
||||
$reason = errorMsg(3012, $accessPriv);
|
||||
$res = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
// no permission
|
||||
$reason = errorMsg(3013, $clientApplication, $domainName, $accessPriv);
|
||||
$res = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
|
||||
// // check if the user not already online
|
||||
//
|
||||
|
@ -311,9 +274,7 @@
|
|||
// }
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
$reason = errorMsg(2004, 'user');
|
||||
$res = false;
|
||||
}
|
||||
|
@ -337,16 +298,12 @@
|
|||
$query = "SELECT Password FROM user WHERE Login='$login'";
|
||||
$result = mysqli_query($link, $query) or die(errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||
|
||||
if (mysqli_num_rows ($result) != 1)
|
||||
{
|
||||
if ($AcceptUnknownUser)
|
||||
{
|
||||
if (mysqli_num_rows($result) != 1) {
|
||||
if ($AcceptUnknownUser) {
|
||||
// just accept the client and return a default salk
|
||||
echo "1:AA";
|
||||
die;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
die(errorMsgBlock(2001, $login, 'askSalt'));
|
||||
// Check if this is not an unconfirmed account
|
||||
/*$query = "SELECT GamePassword, Language FROM signup_data WHERE login='$login'";
|
||||
|
@ -378,9 +335,7 @@
|
|||
die (errorMsgBlock(2003));
|
||||
}*/
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
$res_array = mysqli_fetch_assoc($result);
|
||||
$salt = get_salt($res_array['Password']);
|
||||
}
|
||||
|
@ -388,5 +343,3 @@
|
|||
echo "1:" . $salt;
|
||||
mysqli_close($link);
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue