97 lines
4.3 KiB
PHP
97 lines
4.3 KiB
PHP
<?PHP
|
|
if (isset($_POST['refresh'])) {
|
|
$rspathhex = 'rs_'.dechex(crc32(__DIR__)).'_';
|
|
rem_session_ts3($rspathhex);
|
|
}
|
|
function set_session_ts3($mysqlcon,$cfg,$lang,$dbname) {
|
|
if (!empty($_SERVER['HTTP_CLIENT_IP']))
|
|
$hpclientip = $_SERVER['HTTP_CLIENT_IP'];
|
|
elseif(!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
|
|
$hpclientip = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
|
elseif(!empty($_SERVER['HTTP_X_FORWARDED']))
|
|
$hpclientip = $_SERVER['HTTP_X_FORWARDED'];
|
|
elseif(!empty($_SERVER['HTTP_FORWARDED_FOR']))
|
|
$hpclientip = $_SERVER['HTTP_FORWARDED_FOR'];
|
|
elseif(!empty($_SERVER['HTTP_FORWARDED']))
|
|
$hpclientip = $_SERVER['HTTP_FORWARDED'];
|
|
elseif(!empty($_SERVER['REMOTE_ADDR']))
|
|
$hpclientip = $_SERVER['REMOTE_ADDR'];
|
|
else
|
|
$hpclientip = 0;
|
|
|
|
$rspathhex = 'rs_'.dechex(crc32(__DIR__)).'_';
|
|
|
|
$allclients = $mysqlcon->query("SELECT `u`.`uuid`,`u`.`cldbid`,`u`.`name`,`u`.`firstcon`,`s`.`total_connections` FROM `$dbname`.`user` AS `u` LEFT JOIN `$dbname`.`stats_user` AS `s` ON `u`.`uuid`=`s`.`uuid` WHERE `online`='1'")->fetchAll();
|
|
$iptable = $mysqlcon->query("SELECT `uuid`,`iphash`,`ip` FROM `$dbname`.`user_iphash`")->fetchAll(PDO::FETCH_ASSOC|PDO::FETCH_UNIQUE);
|
|
$_SESSION[$rspathhex.'connected'] = 0;
|
|
$_SESSION[$rspathhex.'tsname'] = $lang['stag0016'];
|
|
$_SESSION[$rspathhex.'serverport'] = $cfg['teamspeak_voice_port'];
|
|
$_SESSION[$rspathhex.'multiple'] = array();
|
|
|
|
if($cfg['rankup_hash_ip_addresses_mode'] == 2) {
|
|
$salt = md5(dechex(crc32(substr(__DIR__,0,-5))));
|
|
$hashedip = password_hash($hpclientip, PASSWORD_DEFAULT, array("cost" => 10, "salt" => $salt));
|
|
}
|
|
|
|
foreach ($allclients as $client) {
|
|
if(isset($_SESSION[$rspathhex.'uuid_verified']) && $_SESSION[$rspathhex.'uuid_verified'] != $client['uuid']) {
|
|
continue;
|
|
}
|
|
$verify = FALSE;
|
|
if($cfg['rankup_hash_ip_addresses_mode'] == 1) {
|
|
if (isset($iptable[$client['uuid']]['iphash']) && $iptable[$client['uuid']]['iphash'] != NULL && password_verify($hpclientip, $iptable[$client['uuid']]['iphash'])) {
|
|
$verify = TRUE;
|
|
}
|
|
} elseif($cfg['rankup_hash_ip_addresses_mode'] == 2) {
|
|
if (isset($iptable[$client['uuid']]['iphash']) && $hashedip == $iptable[$client['uuid']]['iphash'] && $iptable[$client['uuid']]['iphash'] != NULL) {
|
|
$verify = TRUE;
|
|
}
|
|
} else {
|
|
if (isset($iptable[$client['uuid']]['ip']) && $hpclientip == $iptable[$client['uuid']]['ip'] && $iptable[$client['uuid']]['ip'] != NULL) {
|
|
$verify = TRUE;
|
|
}
|
|
}
|
|
if ($verify == TRUE) {
|
|
$_SESSION[$rspathhex.'tsname'] = htmlspecialchars($client['name']);
|
|
if(isset($_SESSION[$rspathhex.'tsuid']) && $_SESSION[$rspathhex.'tsuid'] != $client['uuid']) {
|
|
$_SESSION[$rspathhex.'multiple'][$client['uuid']] = htmlspecialchars($client['name']);
|
|
$_SESSION[$rspathhex.'tsname'] = "verification needed (multiple)!";
|
|
unset($_SESSION[$rspathhex.'admin']);
|
|
} elseif (!isset($_SESSION[$rspathhex.'tsuid'])) {
|
|
$_SESSION[$rspathhex.'multiple'][$client['uuid']] = htmlspecialchars($client['name']);
|
|
}
|
|
$_SESSION[$rspathhex.'tsuid'] = $client['uuid'];
|
|
foreach(array_flip($cfg['webinterface_admin_client_unique_id_list']) as $auuid) {
|
|
if ($_SESSION[$rspathhex.'tsuid'] == $auuid) {
|
|
$_SESSION[$rspathhex.'admin'] = TRUE;
|
|
}
|
|
}
|
|
$_SESSION[$rspathhex.'tscldbid'] = $client['cldbid'];
|
|
if ($client['firstcon'] == 0) {
|
|
$_SESSION[$rspathhex.'tscreated'] = "unkown";
|
|
} else {
|
|
$_SESSION[$rspathhex.'tscreated'] = date('d-m-Y', $client['firstcon']);
|
|
}
|
|
if ($client['total_connections'] != NULL) {
|
|
$_SESSION[$rspathhex.'tsconnections'] = $client['total_connections'];
|
|
} else {
|
|
$_SESSION[$rspathhex.'tsconnections'] = 0;
|
|
}
|
|
$convert = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p');
|
|
$uuidasbase16 = '';
|
|
for ($i = 0; $i < 20; $i++) {
|
|
$char = ord(substr(base64_decode($_SESSION[$rspathhex.'tsuid']), $i, 1));
|
|
$uuidasbase16 .= $convert[($char & 0xF0) >> 4];
|
|
$uuidasbase16 .= $convert[$char & 0x0F];
|
|
}
|
|
if (is_file('../avatars/' . $uuidasbase16 . '.png')) {
|
|
$_SESSION[$rspathhex.'tsavatar'] = $uuidasbase16 . '.png';
|
|
} else {
|
|
$_SESSION[$rspathhex.'tsavatar'] = "none";
|
|
}
|
|
$_SESSION[$rspathhex.'connected'] = 1;
|
|
$_SESSION[$rspathhex.'language'] = $cfg['default_language'];
|
|
}
|
|
}
|
|
}
|
|
?>
|