getMessage();
$output['loglvl'] = 3;
}
try {
$wcmd = "cmd /C ".$GLOBALS['phpcommand']." ".dirname(__DIR__).DIRECTORY_SEPARATOR."jobs".DIRECTORY_SEPARATOR."bot.php";
$oExec = $WshShell->Run($wcmd, 0, false);
} catch (Exception $e) {
$output['rc'] = 1;
$output['msg'] = "Error due starting the Ranksystem Bot (exec command enabled?): ".$e->getMessage();
$output['loglvl'] = 3;
}
try {
exec("wmic process where \"Name LIKE \"%php%\" AND CommandLine LIKE \"%bot.php%\"\" get ProcessId", $pid);
} catch (Exception $e) {
$output['rc'] = 1;
$output['msg'] = "Error due getting process list (wmic command enabled?): ".$e->getMessage();
$output['loglvl'] = 3;
}
if(isset($pid[1]) && is_numeric($pid[1])) {
exec("echo ".$pid[1]." > ".$GLOBALS['pidfile']);
if (file_exists($GLOBALS['autostart'])) {
unlink($GLOBALS['autostart']);
}
$output['rc'] = 0;
$output['msg'] = "Ranksystem Bot successfully started!";
$output['loglvl'] = 4;
usleep(80000);
$output['log'] = getlog('40',explode(',',"CRITICAL,ERROR,WARNING,NOTICE,INFO,DEBUG,NONE"),NULL,NULL);
} else {
$output['rc'] = 1;
$output['msg'] = "Starting the Ranksystem Bot failed!";
$output['loglvl'] = 3;
}
} else {
exec($GLOBALS['phpcommand']." ".dirname(__DIR__).DIRECTORY_SEPARATOR."jobs".DIRECTORY_SEPARATOR."bot.php >/dev/null 2>&1 & echo $! > ".$GLOBALS['pidfile']);
if (check_bot_process() == FALSE) {
$output['rc'] = 1;
$output['msg'] = "Starting the Ranksystem Bot failed!";
$output['loglvl'] = 3;
} else {
if (file_exists($GLOBALS['autostart'])) {
unlink($GLOBALS['autostart']);
}
$output['rc'] = 0;
$output['msg'] = "Ranksystem Bot successfully started!";
$output['loglvl'] = 4;
usleep(80000);
$output['log'] = getlog('40',explode(',',"CRITICAL,ERROR,WARNING,NOTICE,INFO,DEBUG,NONE"),NULL,NULL);
}
}
} else {
$output['rc'] = 0;
$output['msg'] = "The Ranksystem is already running.";
$output['loglvl'] = 4;
}
} else {
$output['rc'] = 1;
$output['msg'] = check_log_permissions()." Canceled start request!";
$output['loglvl'] = 3;
}
return $output;
}
function bot_stop() {
$output = array();
if (check_log_permissions() === TRUE) {
if (check_bot_process() == FALSE) {
if(is_file($GLOBALS['pidfile'])) {
unlink($GLOBALS['pidfile']);
}
$output['rc'] = 0;
$output['msg'] = "The Ranksystem seems not to be running.";
$output['loglvl'] = 4;
} else {
$pid = str_replace(array("\r", "\n"), '', file_get_contents($GLOBALS['pidfile']));
unlink($GLOBALS['pidfile']);
$count_check=0;
while (check_bot_process($pid) == TRUE) {
sleep(1);
$count_check ++;
if($count_check > 10) {
if (substr(php_uname(), 0, 7) == "Windows") {
exec("taskkill /F /PID ".$pid);
} else {
exec("kill -9 ".$pid);
}
$output['rc'] = 1;
$output['msg'] = "Stop command received! Bot does not react, process killed!";
$output['loglvl'] = 3;
break;
}
}
if (check_bot_process($pid) == TRUE) {
$output['rc'] = 1;
$output['msg'] = "Stopping the Ranksystem Bot failed!";
$output['loglvl'] = 3;
} else {
file_put_contents($GLOBALS['autostart'],"");
$output['rc'] = 0;
$output['msg'] = "Ranksystem Bot successfully stopped!";
$output['loglvl'] = 4;
usleep(80000);
$output['log'] = getlog('40',explode(',',"CRITICAL,ERROR,WARNING,NOTICE,INFO,DEBUG,NONE"),NULL,NULL);
}
}
} else {
$output['rc'] = 1;
$output['msg'] = check_log_permissions()." Canceled stop request!";
$output['loglvl'] = 3;
}
return $output;
}
function check_bot_process($pid = NULL) {
enter_logfile(6, "Status check of Ranksystem Bot process..");
if (substr(php_uname(), 0, 7) == "Windows") {
if(!empty($pid)) {
exec("wmic process where \"processid=".$pid."\" get processid 2>nul", $result);
if(isset($result[1]) && is_numeric($result[1])) {
return TRUE;
} else {
return FALSE;
}
} else {
if (file_exists($GLOBALS['pidfile'])) {
$pid = str_replace(array("\r", "\n"), '', file_get_contents($GLOBALS['pidfile']));
exec("wmic process where \"processid=".$pid."\" get processid 2>nul", $result);
if(isset($result[1]) && is_numeric($result[1])) {
return TRUE;
} else {
return FALSE;
}
} else {
return FALSE;
}
}
} else {
if(!empty($pid)) {
$result = str_replace(array("\r", "\n"), '', shell_exec("ps ".$pid));
enter_logfile(6, " Check process list for Ranksystem Bot with PID '".$pid."'.. Response: '".$result."'");
if (strstr($result, $pid)) {
enter_logfile(6, "Process with PID '".$pid."' found.");
return TRUE;
} else {
enter_logfile(6, "No process with PID '".$pid."' found.");
return FALSE;
}
} else {
if (file_exists($GLOBALS['pidfile'])) {
$check_pid = str_replace(array("\r", "\n"), '', file_get_contents($GLOBALS['pidfile']));
enter_logfile(6, " PID file exists. Saved process ID of Ranksystem Bot: '".$check_pid."'");
$result = str_replace(array("\r", "\n"), '', shell_exec("ps ".$check_pid));
enter_logfile(6, " Check process list for Ranksystem Bot with saved PID.. Response: '".$result."'");
if (strstr($result, $check_pid)) {
enter_logfile(6, "Process with PID '".$check_pid."' found.");
return TRUE;
} else {
enter_logfile(6, "No process with PID '".$check_pid."' found.");
return FALSE;
}
} else {
return FALSE;
}
}
}
}
function check_log_permissions() {
if(!is_writable($GLOBALS['logpath'])) {
return "!!!! Logs folder is not writable !!!!";
} elseif(file_exists($GLOBALS['logfile']) && !is_writable($GLOBALS['logfile'])) {
return "!!!! Log file is not writable !!!!";
} else {
return TRUE;
}
}
function check_shutdown() {
if(!file_exists($GLOBALS['pidfile'])) {
shutdown(NULL,4,"Received signal to stop!");
}
}
function date_format_to($format, $syntax) {
$strf_syntax = [
'%O', '%d', '%a', '%e', '%A', '%u', '%w', '%j',
'%V',
'%B', '%m', '%b', '%-m',
'%G', '%Y', '%y',
'%P', '%p', '%l', '%I', '%H', '%M', '%S',
'%z', '%Z',
'%s'
];
$date_syntax = [
'S', 'd', 'D', 'j', 'l', 'N', 'w', 'z',
'W',
'F', 'm', 'M', 'n',
'o', 'Y', 'y',
'a', 'A', 'g', 'h', 'H', 'i', 's',
'O', 'T',
'U'
];
switch ( $syntax ) {
case 'date':
$from = $strf_syntax;
$to = $date_syntax;
break;
case 'strf':
$from = $date_syntax;
$to = $strf_syntax;
break;
default:
return false;
}
$pattern = array_map(
function ( $s ) {
return '/(? true
);
} else {
$dboptions = array();
}
try {
$mysqlcon = new PDO($dbserver, $dbuser, $dbpass, $dboptions);
return $mysqlcon;
} catch (PDOException $e) {
echo 'Delivered Parameter: '.$dbserver.'
';
echo 'Database Connection failed: '.$e->getMessage().'
Check:
- You have already installed the Ranksystem? Run install.php first!
- Is the database reachable?
- You have installed all needed PHP extenstions? Have a look here for Windows or Linux?'; $err_lvl = 3;
if($exit!=NULL) exit;
}
}
}
function enter_logfile($loglevel,$logtext,$norotate = false) {
if($loglevel!=9 && $loglevel > $GLOBALS['logs_debug_level']) return;
$file = $GLOBALS['logfile'];
switch ($loglevel) {
case 1: $loglevel = " CRITICAL "; break;
case 2: $loglevel = " ERROR "; break;
case 3: $loglevel = " WARNING "; break;
case 4: $loglevel = " NOTICE "; break;
case 5: $loglevel = " INFO "; break;
case 6: $loglevel = " DEBUG "; break;
default:$loglevel = " NONE ";
}
$loghandle = fopen($file, 'a');
fwrite($loghandle, DateTime::createFromFormat('U.u', number_format(microtime(true), 6, '.', ''))->setTimeZone(new DateTimeZone($GLOBALS['logs_timezone']))->format("Y-m-d H:i:s.u ").$loglevel.$logtext."\n");
fclose($loghandle);
if($norotate == false && filesize($file) > ($GLOBALS['logs_rotation_size'] * 1048576)) {
$loghandle = fopen($file, 'a');
fwrite($loghandle, DateTime::createFromFormat('U.u', number_format(microtime(true), 6, '.', ''))->setTimeZone(new DateTimeZone($GLOBALS['logs_timezone']))->format("Y-m-d H:i:s.u ")." NOTICE Logfile filesie of 5 MiB reached.. Rotate logfile.\n");
fclose($loghandle);
$file2 = "$file.old";
if(file_exists($file2)) unlink($file2);
rename($file, $file2);
$loghandle = fopen($file, 'a');
fwrite($loghandle, DateTime::createFromFormat('U.u', number_format(microtime(true), 6, '.', ''))->setTimeZone(new DateTimeZone($GLOBALS['logs_timezone']))->format("Y-m-d H:i:s.u ")." NOTICE Rotated logfile...\n");
fclose($loghandle);
}
}
function error_handling($msg,$type = NULL) {
if(is_string($msg) && is_string($type) && strstr($type, '#') && strstr($msg, '#####')) {
$type_arr = explode('#', $type);
$msg_arr = explode('#####', $msg);
$cnt = 0;
foreach($msg_arr as $msg) {
switch ($type_arr[$cnt]) {
case NULL: echo '
'; break;
case 0: echo '
'; break;
case 1: echo '
'; break;
case 2: echo '
'; break;
case 3: echo '
'; break;
}
echo '',$msg_arr[$cnt],'
';
$cnt++;
}
} else {
switch ($type) {
case NULL: echo '
'; break;
case 0: echo '
'; break;
case 1: echo '
'; break;
case 2: echo '
'; break;
case 3: echo '
'; break;
}
echo '',$msg,'
';
}
}
function exception_client_code($code) {
switch ($code) {
case 1:
return "1 - Channel Exception";
case 2:
return "2 - ServerGroup Exception";
case 3:
return "3 - Client Exception";
}
}
function getclientip() {
if (!empty($_SERVER['HTTP_CLIENT_IP']))
return $_SERVER['HTTP_CLIENT_IP'];
elseif(!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
return $_SERVER['HTTP_X_FORWARDED_FOR'];
elseif(!empty($_SERVER['HTTP_X_FORWARDED']))
return $_SERVER['HTTP_X_FORWARDED'];
elseif(!empty($_SERVER['HTTP_FORWARDED_FOR']))
return $_SERVER['HTTP_FORWARDED_FOR'];
elseif(!empty($_SERVER['HTTP_FORWARDED']))
return $_SERVER['HTTP_FORWARDED'];
elseif(!empty($_SERVER['REMOTE_ADDR']))
return $_SERVER['REMOTE_ADDR'];
else
return false;
}
function getlog($number_lines,$filters,$filter2,$inactivefilter = NULL) {
$lines=array();
if(file_exists($GLOBALS['logfile'])) {
$fp = fopen($GLOBALS['logfile'], "r");
$buffer=array();
while($line = fgets($fp, 4096)) {
array_push($buffer, htmlspecialchars($line));
}
fclose($fp);
$buffer = array_reverse($buffer);
$lastfilter = 'init';
foreach($buffer as $line) {
if(substr($line, 0, 2) != "20" && in_array($lastfilter, $filters)) {
array_push($lines, $line);
if (count($lines)>$number_lines) {
break;
}
continue;
}
foreach($filters as $filter) {
if(($filter != NULL && strstr($line, $filter) && $filter2 == NULL) || ($filter2 != NULL && strstr($line, $filter2) && $filter != NULL && strstr($line, $filter))) {
if($filter == "CRITICAL" || $filter == "ERROR") {
array_push($lines, '
'.$line.'');
} elseif($filter == "WARNING") {
array_push($lines, '
'.$line.'');
} else {
array_push($lines, $line);
}
$lastfilter = $filter;
if (count($lines)>$number_lines) {
break 2;
}
break;
} elseif($inactivefilter != NULL) {
foreach($inactivefilter as $defilter) {
if($defilter != NULL && strstr($line, $defilter)) {
$lastfilter = $defilter;
}
}
}
}
}
} else {
$lines[] = "No log entry found...\n";
$lines[] = "The logfile will be created with next startup.\n";
}
return $lines;
}
function get_language() {
$rspathhex = get_rspath();
if(isset($_GET["lang"])) {
if(is_dir($GLOBALS['langpath'])) {
foreach(scandir($GLOBALS['langpath']) as $file) {
if ('.' === $file || '..' === $file || is_dir($file)) continue;
$sep_lang = preg_split("/[._]/", $file);
if(isset($sep_lang[0]) && $sep_lang[0] == 'core' && isset($sep_lang[1]) && strlen($sep_lang[1]) == 2 && isset($sep_lang[4]) && strtolower($sep_lang[4]) == 'php') {
if(strtolower($_GET["lang"]) == strtolower($sep_lang[1])) {
$_SESSION[$rspathhex.'language'] = $sep_lang[1];
return $sep_lang[1];
}
}
}
}
}
if(isset($_SESSION[$rspathhex.'language'])) {
return $_SESSION[$rspathhex.'language'];
}
if(isset($GLOBALS['default_language'])) {
return $GLOBALS['default_language'];
}
return "en";
}
function get_percentage($max_value, $value) {
if($max_value>0) {
return (round(($value/$max_value)*100));
} else {
return 0;
}
}
function get_rspath() {
return 'rs_'.dechex(crc32(__DIR__)).'_';
}
function get_style($default_style) {
$rspathhex = get_rspath();
if(isset($_GET["style"])) {
if(is_dir($GLOBALS['stylepath'])) {
foreach(scandir($GLOBALS['stylepath']) as $folder) {
if ('.' === $folder || '..' === $folder) continue;
if(is_dir($GLOBALS['stylepath'].DIRECTORY_SEPARATOR.$folder)) {
foreach(scandir($GLOBALS['stylepath'].DIRECTORY_SEPARATOR.$folder) as $file) {
if ('.' === $file || '..' === $file || is_dir($file)) continue;
$sep_style = preg_split("/[._]/", $file);
if($file == "ST.css") {
$_SESSION[$rspathhex.'style'] = $folder;
return $folder;
}
}
}
}
}
}
if(isset($_SESSION[$rspathhex.'style'])) {
return $_SESSION[$rspathhex.'style'];
}
if(isset($default_style)) {
return $default_style;
}
return NULL;
}
function human_readable_size($bytes,$lang) {
$size = array($lang['size_byte'],$lang['size_kib'],$lang['size_mib'],$lang['size_gib'],$lang['size_tib'],$lang['size_pib'],$lang['size_eib'],$lang['size_zib'],$lang['size_yib']);
$factor = floor((strlen($bytes) - 1) / 3);
return sprintf("%.2f", $bytes / pow(1024, $factor)) . ' ' . @$size[$factor];
}
function list_rankup($cfg,$lang,$sqlhisgroup,$value,$adminlogin,$nation,$grpcount,$rank = NULL) {
$return = '
';
if ($cfg['stats_column_rank_switch'] == 1 || $adminlogin == 1) {
if($value['except'] == 2 || $value['except'] == 3) {
$return .= ' | ';
} else {
$return .= ''.$value['rank'].' | ';
}
}
if ($adminlogin == 1) {
$return .= ''.htmlspecialchars($value['name']).' | ';
} elseif ($cfg['stats_column_client_name_switch'] == 1) {
$return .= ''.htmlspecialchars($value['name']).' | ';
}
if ($adminlogin == 1) {
$return .= ''.$value['uuid'].' | ';
} elseif ($cfg['stats_column_unique_id_switch'] == 1) {
$return .= ''.$value['uuid'].' | ';
}
if ($cfg['stats_column_client_db_id_switch'] == 1 || $adminlogin == 1)
$return .= ''.$value['cldbid'].' | ';
if ($cfg['stats_column_last_seen_switch'] == 1 || $adminlogin == 1) {
if ($value['online'] == 1) {
$return .= 'online | ';
} else {
$return .= ''.date('Y-m-d H:i:s',$value['lastseen']).' | ';
}
}
if ($cfg['stats_column_nation_switch'] == 1 || $adminlogin == 1) {
if(strtoupper($value['nation']) == 'XX' || $value['nation'] == NULL) {
$return .= ' | ';
} else {
$return .= ' | ';
}
}
if ($cfg['stats_column_version_switch'] == 1 || $adminlogin == 1) {
$return .= ''.htmlspecialchars($value['version']).' | ';
}
if ($cfg['stats_column_platform_switch'] == 1 || $adminlogin == 1) {
$return .= ''.htmlspecialchars($value['platform']).' | ';
}
if ($cfg['stats_column_online_time_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['count'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['count']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_idle_time_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['idle'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['idle']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_active_time_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['count']) && is_numeric($value['idle'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".(round($value['count'])-round($value['idle'])));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_online_day_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['count_day'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['count_day']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_idle_day_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['idle_day'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['idle_day']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_active_day_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['active_day'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['active_day']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_online_week_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['count_week'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['count_week']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_idle_week_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['idle_week'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['idle_week']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_active_week_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['active_week'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['active_week']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_online_month_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['count_month'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['count_month']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_idle_month_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['idle_month'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['idle_month']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_active_month_switch'] == 1 || $adminlogin == 1) {
if (is_numeric($value['active_month'])) {
$return .= '';
$dtF = new DateTime("@0");
$dtT = new DateTime("@".round($value['active_month']));
$return .= $dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_current_server_group_switch'] == 1 || $adminlogin == 1) {
if ($value['grpid'] == 0) {
$return .= ' | ';
} elseif(isset($sqlhisgroup[$value['grpid']]) && $sqlhisgroup[$value['grpid']]['iconid'] != 0) {
$return .= ' '.$sqlhisgroup[$value['grpid']]['sgidname'].' | ';
} elseif(isset($sqlhisgroup[$value['grpid']])) {
$return .= ''.$sqlhisgroup[$value['grpid']]['sgidname'].' | ';
} else {
$return .= ''.$lang['unknown'].' | ';
}
}
if ($cfg['stats_column_current_group_since_switch'] == 1 || $adminlogin == 1) {
if ($value['grpsince'] == 0) {
$return .= ' | ';
} else {
$return .= ''.date('Y-m-d H:i:s',$value['grpsince']).' | ';
}
}
if ($cfg['stats_column_next_rankup_switch'] == 1 || $adminlogin == 1) {
$return .= ''.$dtF->diff($dtT)->format($cfg['default_date_format']).' | ';
} elseif ($value['except'] == 0 || $value['except'] == 1) {
$return .= '0 '.$lang['time_sec'].'">0';
} elseif ($value['except'] == 2 || $value['except'] == 3) {
$return .= '0 '.$lang['time_sec'].'">0';
} else {
$return .= $lang['errukwn'].'';
}
}
if ($cfg['stats_column_next_server_group_switch'] == 1 || $adminlogin == 1) {
if ($grpcount == count($cfg['rankup_definition']) && $value['nextup'] == 0 && $cfg['stats_show_clients_in_highest_rank_switch'] == 1 || $grpcount == count($cfg['rankup_definition']) && $value['nextup'] == 0 && $adminlogin == 1) {
$return .= ''.$lang['highest'].' | ';
} elseif ($value['except'] == 2 || $value['except'] == 3) {
$return .= ''.$lang['listexcept'].' | ';
} elseif (isset($sqlhisgroup[$rank['group']]) && $sqlhisgroup[$rank['group']]['iconid'] != 0) {
$return .= ' '.$sqlhisgroup[$rank['group']]['sgidname'].' | ';
} elseif (isset($sqlhisgroup[$rank['group']])) {
$return .= ''.$sqlhisgroup[$rank['group']]['sgidname'].' | ';
} else {
$return .= ' | ';
}
}
return $return;
}
function mime2extension($mimetype) {
$mimearr = [
'image/bmp' => 'bmp',
'image/x-bmp' => 'bmp',
'image/x-bitmap' => 'bmp',
'image/x-xbitmap' => 'bmp',
'image/x-win-bitmap' => 'bmp',
'image/x-windows-bmp' => 'bmp',
'image/ms-bmp' => 'bmp',
'image/x-ms-bmp' => 'bmp',
'image/gif' => 'gif',
'image/jpeg' => 'jpg',
'image/pjpeg' => 'jpg',
'image/x-portable-bitmap' => 'pbm',
'image/x-portable-graymap' => 'pgm',
'image/png' => 'png',
'image/x-png' => 'png',
'image/x-portable-pixmap' => 'ppm',
'image/svg+xml' => 'svg',
'image/x-xbitmap' => 'xbm',
'image/x-xpixmap' => 'xpm'
];
return isset($mimearr[$mimetype]) ? $mimearr[$mimetype] : FALSE;
}
function pagination($keysort,$keyorder,$user_pro_seite,$seiten_anzahl_gerundet,$seite,$getstring) {
$pagination = '';
return $pagination;
}
function php_error_handling($err_code, $err_msg, $err_file, $err_line) {
global $cfg;
switch ($err_code) {
case E_USER_ERROR: $loglevel = 2; break;
case E_USER_WARNING: $loglevel = 3; break;
case E_USER_NOTICE: $loglevel = 4; break;
default: $loglevel = 4;
}
if(substr($err_msg, 0, 15) != "password_hash()" && substr($err_msg, 0, 11) != "fsockopen()") {
enter_logfile($loglevel,$err_code.": ".$err_msg." on line ".$err_line." in ".$err_file);
}
return true;
}
function rem_session_ts3() {
$rspathhex = get_rspath();
unset($_SESSION[$rspathhex.'admin']);
unset($_SESSION[$rspathhex.'clientip']);
unset($_SESSION[$rspathhex.'connected']);
unset($_SESSION[$rspathhex.'inactivefilter']);
unset($_SESSION[$rspathhex.'language']);
unset($_SESSION[$rspathhex.'logfilter']);
unset($_SESSION[$rspathhex.'logfilter2']);
unset($_SESSION[$rspathhex.'multiple']);
unset($_SESSION[$rspathhex.'newversion']);
unset($_SESSION[$rspathhex.'number_lines']);
unset($_SESSION[$rspathhex.'password']);
unset($_SESSION[$rspathhex.'serverport']);
unset($_SESSION[$rspathhex.'temp_cldbid']);
unset($_SESSION[$rspathhex.'temp_name']);
unset($_SESSION[$rspathhex.'temp_uuid']);
unset($_SESSION[$rspathhex.'token']);
unset($_SESSION[$rspathhex.'tsavatar']);
unset($_SESSION[$rspathhex.'tscldbid']);
unset($_SESSION[$rspathhex.'tsconnections']);
unset($_SESSION[$rspathhex.'tscreated']);
unset($_SESSION[$rspathhex.'tsname']);
unset($_SESSION[$rspathhex.'tsuid']);
unset($_SESSION[$rspathhex.'upinfomsg']);
unset($_SESSION[$rspathhex.'username']);
unset($_SESSION[$rspathhex.'uuid_verified']);
}
function select_channel($channellist, $cfg_cid, $multiple=NULL) {
if(isset($channellist) && count($channellist)>0) {
$options = '';
if($multiple == 1) $options = ' multiple=""';
$selectbox = '';
} elseif ($multiple === 1) {
$selectbox = '';
$selectbox .= '';
} else {
$selectbox = '';
$selectbox .= '';
}
return $selectbox;
}
function set_language($language) {
if(is_dir($GLOBALS['langpath'])) {
foreach(scandir($GLOBALS['langpath']) as $file) {
if ('.' === $file || '..' === $file || is_dir($file)) continue;
$sep_lang = preg_split("/[._]/", $file);
if(isset($sep_lang[0]) && $sep_lang[0] == 'core' && isset($sep_lang[1]) && strlen($sep_lang[1]) == 2 && isset($sep_lang[4]) && strtolower($sep_lang[4]) == 'php') {
if(strtolower($language) == strtolower($sep_lang[1])) {
include($GLOBALS['langpath'].DIRECTORY_SEPARATOR.'/core_'.$sep_lang[1].'_'.$sep_lang[2].'_'.$sep_lang[3].'.'.$sep_lang[4]);
$_SESSION[get_rspath().'language'] = $sep_lang[1];
$required_lang = 1;
break;
}
}
}
}
if(!isset($required_lang)) {
include($GLOBALS['langpath'].DIRECTORY_SEPARATOR.'core_en_english_gb.php');
}
return $lang;
}
function set_session_ts3($mysqlcon,$cfg,$lang,$dbname) {
$hpclientip = getclientip();
$rspathhex = get_rspath();
$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);
if(!isset($_SESSION[$rspathhex.'connected']) && isset($cfg['stats_news_html'])) $_SESSION[$rspathhex.'stats_news_html'] = $cfg['stats_news_html'];
$_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(dirname(__DIR__))));
$hashedip = crypt($hpclientip, '$2y$10$'.$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'];
if(isset($cfg['webinterface_admin_client_unique_id_list']) && $cfg['webinterface_admin_client_unique_id_list'] != NULL) {
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'] = $lang['unknown'];
} 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'];
$_SESSION[$rspathhex.'style'] = $cfg['default_style'];
}
}
}
function sendmessage($ts3, $cfg, $uuid, $msg, $targetmode, $targetid=NULL, $erromsg=NULL, $loglevel=NULL, $successmsg=NULL, $nolog=NULL) {
try {
if(strlen($msg) > 1024) {
$fragarr = explode("##*##", wordwrap($msg, 1022, "##*##", TRUE), 1022);
foreach($fragarr as $frag) {
usleep($cfg['teamspeak_query_command_delay']);
if ($targetmode==2 && $targetid!=NULL) {
$ts3->serverGetSelected()->channelGetById($targetid)->message("\n".$frag);
if($nolog==NULL) enter_logfile(6,"sendmessage fragment to channel (ID: $targetid): ".$frag);
} elseif ($targetmode==3) {
$ts3->serverGetSelected()->message("\n".$frag);
if($nolog==NULL) enter_logfile(6,"sendmessage fragment to server: ".$frag);
} elseif ($targetmode==1 && $targetid!=NULL) {
$ts3->serverGetSelected()->clientGetById($targetid)->message("\n".$frag);
if($nolog==NULL) enter_logfile(6,"sendmessage fragment to connectionID $targetid (uuid $uuid): ".$frag);
} else {
$ts3->serverGetSelected()->clientGetByUid($uuid)->message("\n".$frag);
if($nolog==NULL) enter_logfile(6,"sendmessage fragment to uuid $uuid (connectionID $targetid): ".$frag);
}
}
} else {
usleep($cfg['teamspeak_query_command_delay']);
if ($targetmode==2 && $targetid!=NULL) {
$ts3->serverGetSelected()->channelGetById($targetid)->message($msg);
if($nolog==NULL) enter_logfile(6,"sendmessage to channel (ID: $targetid): ".$msg);
} elseif ($targetmode==3) {
$ts3->serverGetSelected()->message($msg);
if($nolog==NULL) enter_logfile(6,"sendmessage to server: ".$msg);
} elseif ($targetmode==1 && $targetid!=NULL) {
$ts3->serverGetSelected()->clientGetById($targetid)->message($msg);
if($nolog==NULL) enter_logfile(6,"sendmessage to connectionID $targetid (uuid $uuid): ".$msg);
} else {
$ts3->serverGetSelected()->clientGetByUid($uuid)->message($msg);
if($nolog==NULL) enter_logfile(6,"sendmessage to uuid $uuid (connectionID $targetid): ".$msg);
}
}
if($successmsg!=NULL) {
enter_logfile(5,$successmsg);
}
} catch (Exception $e) {
if($loglevel!=NULL) {
enter_logfile($loglevel,$erromsg." TS3: ".$e->getCode().': '.$e->getMessage());
} else {
enter_logfile(3,"sendmessage: ".$e->getCode().': '.$e->getMessage().", targetmode: $targetmode, targetid: $targetid");
}
}
}
function shutdown($mysqlcon,$loglevel,$reason,$nodestroypid = TRUE) {
if($nodestroypid === TRUE) {
if (file_exists($GLOBALS['pidfile'])) {
unlink($GLOBALS['pidfile']);
}
}
if($nodestroypid === TRUE) {
enter_logfile($loglevel,$reason." Shutting down!");
enter_logfile(9,"###################################################################");
} else {
enter_logfile($loglevel,$reason." Ignore request!");
}
if(isset($mysqlcon)) {
$mysqlcon = null;
}
exit;
}
function sort_channel_tree($channellist) {
foreach($channellist as $cid => $results) {
$channel['channel_order'][$results['pid']][$results['channel_order']] = $cid;
$channel['pid'][$results['pid']][] = $cid;
}
foreach($channel['pid'] as $pid => $pid_value) {
$channel_order = 0;
$count_pid = count($pid_value);
for($y=0; $y<$count_pid; $y++) {
foreach($channellist as $cid => $value) {
if(isset($channel['channel_order'][$pid][$channel_order]) && $channel['channel_order'][$pid][$channel_order] == $cid) {
$channel['sorted'][$pid][$cid] = $channellist[$cid];
$channel_order = $cid;
}
}
}
}
function channel_list($channel, $channel_list, $pid, $sub) {
if($channel['sorted'][$pid]) {
foreach($channel['sorted'][$pid] as $cid => $value) {
$channel_list[$cid] = $value;
$channel_list[$cid]['sub_level'] = $sub;
if(isset($channel['pid'][$cid])) {
$sub++;
$channel_list[$cid]['has_childs'] = 1;
$channel_list = channel_list($channel, $channel_list, $cid, $sub);
$sub--;
}
}
}
return $channel_list;
}
$sorted_channel = channel_list($channel, array(), 0, 1);
return $sorted_channel;
}
function sort_options($lang) {
$arr_sort_options = array(
array('option' => 'rank', 'title' => $lang['listrank'], 'icon' => 'fas fa-hashtag', 'config' => 'stats_column_rank_switch'),
array('option' => 'name', 'title' => $lang['listnick'], 'icon' => 'fas fa-user', 'config' => 'stats_column_client_name_switch'),
array('option' => 'uuid', 'title' => $lang['listuid'], 'icon' => 'fas fa-id-card', 'config' => 'stats_column_unique_id_switch'),
array('option' => 'cldbid', 'title' => $lang['listcldbid'], 'icon' => 'fas fa-database', 'config' => 'stats_column_client_db_id_switch'),
array('option' => 'lastseen', 'title' => $lang['listseen'], 'icon' => 'fas fa-user-clock', 'config' => 'stats_column_last_seen_switch'),
array('option' => 'nation', 'title' => $lang['listnat'], 'icon' => 'fas fa-globe-europe', 'config' => 'stats_column_nation_switch'),
array('option' => 'version', 'title' => $lang['listver'], 'icon' => 'fas fa-tag', 'config' => 'stats_column_version_switch'),
array('option' => 'platform', 'title' => $lang['listpla'], 'icon' => 'fas fa-server', 'config' => 'stats_column_platform_switch'),
array('option' => 'count', 'title' => $lang['listsumo'], 'icon' => 'fas fa-hourglass-start', 'config' => 'stats_column_online_time_switch'),
array('option' => 'idle', 'title' => $lang['listsumi'], 'icon' => 'fas fa-hourglass-end', 'config' => 'stats_column_idle_time_switch'),
array('option' => 'active', 'title' => $lang['listsuma'], 'icon' => 'fas fa-hourglass-half', 'config' => 'stats_column_active_time_switch'),
array('option' => 'count_day', 'title' => $lang['listsumo'].' '.$lang['stix0013'], 'icon' => 'fas fa-hourglass-start', 'config' => 'stats_column_online_day_switch'),
array('option' => 'idle_day', 'title' => $lang['listsumi'].' '.$lang['stix0013'], 'icon' => 'fas fa-hourglass-half', 'config' => 'stats_column_idle_day_switch'),
array('option' => 'active_day', 'title' => $lang['listsuma'].' '.$lang['stix0013'], 'icon' => 'fas fa-hourglass-end', 'config' => 'stats_column_active_day_switch'),
array('option' => 'count_week', 'title' => $lang['listsumo'].' '.$lang['stix0014'], 'icon' => 'fas fa-hourglass-start', 'config' => 'stats_column_online_week_switch'),
array('option' => 'idle_week', 'title' => $lang['listsumi'].' '.$lang['stix0014'], 'icon' => 'fas fa-hourglass-half', 'config' => 'stats_column_idle_week_switch'),
array('option' => 'active_week', 'title' => $lang['listsuma'].' '.$lang['stix0014'], 'icon' => 'fas fa-hourglass-end', 'config' => 'stats_column_active_week_switch'),
array('option' => 'count_month', 'title' => $lang['listsumo'].' '.$lang['stix0015'], 'icon' => 'fas fa-hourglass-start', 'config' => 'stats_column_online_month_switch'),
array('option' => 'idle_month', 'title' => $lang['listsumi'].' '.$lang['stix0015'], 'icon' => 'fas fa-hourglass-half', 'config' => 'stats_column_idle_month_switch'),
array('option' => 'active_month', 'title' => $lang['listsuma'].' '.$lang['stix0015'], 'icon' => 'fas fa-hourglass-end', 'config' => 'stats_column_active_month_switch'),
array('option' => 'grpid', 'title' => $lang['listacsg'], 'icon' => 'fas fa-clipboard-check', 'config' => 'stats_column_current_server_group_switch'),
array('option' => 'grpsince', 'title' => $lang['listgrps'], 'icon' => 'fas fa-history', 'config' => 'stats_column_current_group_since_switch'),
array('option' => 'nextup', 'title' => $lang['listnxup'], 'icon' => 'fas fa-clock', 'config' => 'stats_column_next_rankup_switch'),
array('option' => 'active', 'title' => $lang['listnxsg'], 'icon' => 'fas fa-clipboard-list', 'config' => 'stats_column_next_server_group_switch')
);
return $arr_sort_options;
}
function start_session($cfg) {
ini_set('session.cookie_httponly', 1);
ini_set('session.use_strict_mode', 1);
ini_set('session.sid_length', 128);
if(isset($cfg['default_header_xss'])) {
header("X-XSS-Protection: ".$cfg['default_header_xss']);
} else {
header("X-XSS-Protection: 1; mode=block");
}
if(!isset($cfg['default_header_contenttyp']) || $cfg['default_header_contenttyp'] == 1) {
header("X-Content-Type-Options: nosniff");
}
if(isset($cfg['default_header_frame']) && $cfg['default_header_frame'] != NULL) {
header("X-Frame-Options: ".$cfg['default_header_frame']);
}
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") {
$prot = 'https';
ini_set('session.cookie_secure', 1);
if(!headers_sent()) {
header("Strict-Transport-Security: max-age=31536000; includeSubDomains; preload;");
}
} else {
$prot = 'http';
}
if(isset($cfg['default_header_origin']) && $cfg['default_header_origin'] != NULL && $cfg['default_header_origin'] != 'null') {
if(strstr($cfg['default_header_origin'], ',')) {
$origin_arr = explode(',', $cfg['default_header_origin']);
if(isset($_SERVER['HTTP_ORIGIN']) && in_array($_SERVER['HTTP_ORIGIN'], $origin_arr)) {
header("Access-Control-Allow-Origin: ".$_SERVER['HTTP_ORIGIN']);
}
} else {
header("Access-Control-Allow-Origin: ".$cfg['default_header_origin']);
}
}
if(version_compare(PHP_VERSION, '7.3.0', '>=')) {
if(isset($cfg['default_session_sametime'])) {
ini_set('session.cookie_samesite', $cfg['default_session_sametime']);
} else {
ini_set('session.cookie_samesite', "Strict");
}
}
session_start();
return $prot;
}
?>