developer/web/statuscheck.php

1148 lines
60 KiB
PHP
Raw Normal View History

2013-08-28 22:47:04 +02:00
<?php
2013-08-28 22:47:04 +02:00
/**
* File: statuscheck.php.
* Author: Ulrich Block
* Date: 03.10.12
* Time: 17:09
* Contact: <ulrich.block@easy-wi.com>
*
* This file is part of Easy-WI.
*
* Easy-WI is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Easy-WI is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Easy-WI. If not, see <http://www.gnu.org/licenses/>.
*
* Diese Datei ist Teil von Easy-WI.
*
* Easy-WI ist Freie Software: Sie koennen es unter den Bedingungen
* der GNU General Public License, wie von der Free Software Foundation,
* Version 3 der Lizenz oder (nach Ihrer Wahl) jeder spaeteren
* veroeffentlichten Version, weiterverbreiten und/oder modifizieren.
*
* Easy-WI wird in der Hoffnung, dass es nuetzlich sein wird, aber
* OHNE JEDE GEWAEHELEISTUNG, bereitgestellt; sogar ohne die implizite
* Gewaehrleistung der MARKTFAEHIGKEIT oder EIGNUNG FUER EINEN BESTIMMTEN ZWECK.
* Siehe die GNU General Public License fuer weitere Details.
*
* Sie sollten eine Kopie der GNU General Public License zusammen mit diesem
* Programm erhalten haben. Wenn nicht, siehe <http://www.gnu.org/licenses/>.
*/
if (isset($_SERVER['REMOTE_ADDR'])) {
$ip = $_SERVER['REMOTE_ADDR'];
$timelimit = (isset($_GET['timeout']) and is_numeric($_GET['timeout'])) ? $_GET['timeout'] : ini_get('max_execution_time') - 10;
2013-08-28 22:47:04 +02:00
} else {
$timelimit = 600;
2013-08-28 22:47:04 +02:00
}
2014-01-01 13:59:37 +01:00
2013-08-28 22:47:04 +02:00
if (isset($argv)) {
2014-01-01 13:59:37 +01:00
$args = array();
2014-01-01 13:59:37 +01:00
2013-08-28 22:47:04 +02:00
foreach ($argv as $a) {
if ($a == 'gs' or $a == 'vs' or $a == 'my') {
2014-01-01 13:59:37 +01:00
$checkTypeOfServer = $a;
} else if (is_numeric($a)) {
$sleep = $a;
} else {
$e = explode(':', $a);
2014-01-01 13:59:37 +01:00
if (isset($e[1])) {
$args[$e[0]] = $e[1];
}
2013-08-28 22:47:04 +02:00
}
}
}
define('EASYWIDIR', dirname(__FILE__));
2014-02-23 13:13:48 +01:00
include(EASYWIDIR . '/stuff/methods/vorlage.php');
include(EASYWIDIR . '/stuff/methods/functions.php');
include(EASYWIDIR . '/stuff/methods/class_validator.php');
include(EASYWIDIR . '/stuff/settings.php');
2014-02-23 13:13:48 +01:00
include(EASYWIDIR . '/stuff/methods/functions_gs.php');
include(EASYWIDIR . '/stuff/methods/functions_ssh_exec.php');
include(EASYWIDIR . '/stuff/methods/class_ts3.php');
2013-11-27 20:26:19 +01:00
include(EASYWIDIR . '/third_party/gameq/GameQ.php');
include(EASYWIDIR . '/stuff/methods/class_mysql.php');
include(EASYWIDIR . '/stuff/keyphrasefile.php');
2013-08-28 22:47:04 +02:00
set_time_limit($timelimit);
$query = $sql->prepare("UPDATE `settings` SET `lastCronStatus`=UNIX_TIMESTAMP()");
$query->execute();
if (!isset($ip) or $ui->escaped('SERVER_ADDR', 'server') == $ip or in_array($ip, ipstoarray($rSA['cronjob_ips']))) {
if (isset($checkTypeOfServer)) {
if ($checkTypeOfServer == 'gs') {
print 'Checking Gameserver' . "\r\n";
} else if ($checkTypeOfServer == 'vs') {
print 'Checking Voiceserver' . "\r\n";
} else {
print 'Getting MySQL DB sizes' . "\r\n";
}
} else {
$checkTypeOfServer='all';
print 'Checking Gameserver and Voiceserver' . "\r\n";
}
2013-08-28 22:47:04 +02:00
$dayAndHour=date('Y-m-d H:').'00:00';
$dayAndZeroHour=date('Y-m-d').' 00:00:00';
$ssprache = getlanguagefile('settings','uk',0);
$vosprache = getlanguagefile('voice','uk',0);
$sprache = getlanguagefile('gserver','uk',0);
2013-08-28 22:47:04 +02:00
2013-11-27 20:26:19 +01:00
// lendmodul active ?
$query = $sql->prepare("SELECT `active` FROM `modules` WHERE `id`=5 LIMIT 1");
$query->execute();
$lendActive = $query->fetchColumn();
2013-12-27 14:42:39 +01:00
$lendActive = (active_check($lendActive)) ? $lendActive : 'Y';
2013-11-27 20:26:19 +01:00
2013-08-28 22:47:04 +02:00
# Pick up Reseller and Lend Settings
$resellersettings = array();
$query = $sql->prepare("SELECT `brandname`,`noservertag`,`nopassword`,`tohighslots`,`down_checks`,`resellerid` FROM `settings`");
2013-11-27 20:26:19 +01:00
$query2 = $sql->prepare("SELECT `shutdownempty`,`shutdownemptytime`,`lastcheck`,`oldcheck` FROM `lendsettings` WHERE `resellerid`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$query->execute();
foreach ($query->fetchall(PDO::FETCH_ASSOC) as $row) {
2013-11-27 20:26:19 +01:00
unset($shutdownempty);
$resellerid = $row['resellerid'];
2013-08-28 22:47:04 +02:00
$query2->execute(array($resellerid));
foreach ($query2->fetchall(PDO::FETCH_ASSOC) as $row2) {
$shutdownempty = $row2['shutdownempty'];
$shutdownemptytime = $row2['shutdownemptytime'];
2014-01-10 22:16:51 +01:00
$firstcheck = '00-00-' . round(2 * (strtotime($row2['lastcheck']) - strtotime($row2['oldcheck'])) / 60);
$firstchecktime = date('d-G-i');
2013-08-28 22:47:04 +02:00
}
2013-11-27 20:26:19 +01:00
if (isset($shutdownempty)) {
$resellersettings[$resellerid] = array('shutdownempty' => $shutdownempty,'shutdownemptytime' => $shutdownemptytime,'firstchecktime' => $firstchecktime,'firstcheck' => $firstcheck,'brandname' => $row['brandname'], 'noservertag' => $row['noservertag'], 'nopassword' => $row['nopassword'], 'tohighslots' => $row['tohighslots'], 'down_checks' => $row['down_checks']);
}
2013-08-28 22:47:04 +02:00
}
$query = $sql->prepare("UPDATE `lendsettings` SET `oldcheck`=`lastcheck`,`lastcheck`=NOW()");
2013-08-28 22:47:04 +02:00
$query->execute();
# Game Server
if ($checkTypeOfServer == 'all' or $checkTypeOfServer == 'gs') {
2013-11-27 20:26:19 +01:00
// Lend server stopping.
// We want only one socket per root server. Collect the to be stopped lendservers in an array and sort by root ID
$rtmp = array();
$query = $sql->prepare("SELECT `id`,`serverid`,`started`,`lendtime`,`resellerid` FROM `lendedserver` WHERE `servertype`='g'");
$query2 = $sql->prepare("SELECT g.`rootID`,g.`id` FROM `serverlist` s INNER JOIN `gsswitch` g ON s.`switchID`=g.`id` WHERE s.`id`=? LIMIT 1");
$query3 = $sql->prepare("DELETE FROM `lendedserver` WHERE `id`=? AND `resellerid`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$query->execute();
foreach ($query->fetchall(PDO::FETCH_ASSOC) as $row) {
$id = $row['id'];
$lendtime = $row['lendtime'];
$serverid = $row['serverid'];
$resellerid = $row['resellerid'];
$timeleft = round($row['lendtime'] - (strtotime('now') - strtotime($row['started'])) / 60);
if ($timeleft <= 0) {
$query3->execute(array($id, $resellerid));
$query2->execute(array($row['serverid']));
foreach ($query2->fetchAll(PDO::FETCH_ASSOC) as $row2) {
$tmp = gsrestart($row2['id'], 'so', $aeskey, $resellerid);
if (is_array($tmp)) {
foreach($tmp as $t) {
$rtmp[$row2['rootID']][] = $t;
}
}
}
2013-08-28 22:47:04 +02:00
print "Time is up, stopping lendserver: $id\r\n";
2013-08-28 22:47:04 +02:00
} else {
print "Lendserver $serverid has $timeleft minutes left\r\n";
}
}
// Send stop commands to rootserver
foreach ($rtmp as $k => $v) {
if (count($v) > 0) {
ssh2_execute('gs', $k, $v);
}
}
2013-11-27 20:26:19 +01:00
// Define basic variables for GS status checks
$other = array();
$i = 1;
2013-11-27 20:26:19 +01:00
$totalCount = 0;
$serverBatchArray = array();
$allServersArray = array();
$shellCmds = array();
2013-11-27 20:26:19 +01:00
// Get the list of servers which are active and are not stopped. The array to be created will support batch mode.
$query = $sql->prepare("SELECT g.`id`,g.`rootID`,g.`serverid`,g.`serverip`,g.`port`,g.`port2`,t.`gameq` FROM `gsswitch` g INNER JOIN `serverlist` s ON g.`serverid`=s.`id` INNER JOIN `servertypes` t ON s.`servertype`=t.`id` WHERE g.`stopped`='N' AND g.`active`='Y'");
2013-08-28 22:47:04 +02:00
$query->execute();
foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $row) {
2013-11-27 20:26:19 +01:00
// without the gameq value we cannot query. So this results need to be sorted out.
if (!in_array($row['gameq'], array('', null, false))) {
2014-03-30 11:59:03 +02:00
if (in_array($row['gameq'], array('cube2', 'ut', 'ut2004', 'ut3', 'mta'))) {
$checkAtIPPort = $row['serverip'] . ':' . $row['port2'];
} else {
$checkAtIPPort = $row['serverip'] . ':' . $row['port'];
}
$serverBatchArray[] = array('id' => $row['id'], 'type' => $row['gameq'], 'host' => $checkAtIPPort);
2013-11-27 20:26:19 +01:00
$i++;
if ($i == 50) {
2013-11-27 20:26:19 +01:00
$allServersArray[] = $serverBatchArray;
$serverBatchArray = array();
$i = 1;
2013-08-28 22:47:04 +02:00
}
2013-11-27 20:26:19 +01:00
$totalCount++;
2013-08-28 22:47:04 +02:00
}
}
2013-11-27 20:26:19 +01:00
$allServersArray[] = $serverBatchArray;
2013-11-27 20:26:19 +01:00
print "Checking $totalCount server(s) with GameQ query\r\n";
2013-11-27 20:26:19 +01:00
foreach ($allServersArray as $servers) {
2013-11-27 20:26:19 +01:00
$gq = new GameQ();
$gq->setOption('timeout', 3);
2013-11-27 20:26:19 +01:00
if (isset($dbConnect['debug']) and $dbConnect['debug'] == 1) {
$gq->setOption('debug', true);
2013-08-28 22:47:04 +02:00
}
2013-11-27 20:26:19 +01:00
$gq->setFilter('normalise');
$gq->addServers($servers);
2013-11-27 20:26:19 +01:00
foreach($gq->requestData() as $switchID => $v) {
unset($userid, $stopserver, $doNotRestart);
$lid = 0;
2013-11-27 20:26:19 +01:00
$elapsed = 0;
$shutdownemptytime = 0;
2013-12-01 15:57:23 +01:00
$notified = 0;
2013-11-27 20:26:19 +01:00
$query = $sql->prepare("SELECT s.`id` AS `serverID`,t.`description`,t.`gamebinary`,g.* FROM `gsswitch` g INNER JOIN `serverlist` s ON g.`serverid`=s.`id` INNER JOIN `servertypes` t ON s.`servertype`=t.`id` WHERE g.`id`=? LIMIT 1");
2013-11-27 20:26:19 +01:00
$query2 = $sql->prepare("SELECT `id`,`started` FROM `lendedserver` WHERE `serverid`=? LIMIT 1");
$query->execute(array($switchID));
2013-08-28 22:47:04 +02:00
foreach ($query->fetchall(PDO::FETCH_ASSOC) as $row) {
2013-11-27 20:26:19 +01:00
$serverip = $row['serverip'];
$autoRestart = $row['autoRestart'];
2013-11-27 20:26:19 +01:00
$port = $row['port'];
$address = $row['serverip'] . ':' . $row['port'];
$gametype = $row['description'];
$notified = $row['notified'];
$secnotified = $row['secnotified'];
2013-11-27 20:26:19 +01:00
$lendserver = $row['lendserver'];
$userid = $row['userid'];
2013-11-27 20:26:19 +01:00
$resellerid = $row['resellerid'];
$brandname = $row['brandname'];
2013-11-27 20:26:19 +01:00
$rootID = $row['rootID'];
$war = $row['war'];
$slots = $row['slots'];
if (($row['gamebinary'] == 'hlds_run' or $row['gamebinary'] == 'srcds_run') and $row['tvenable'] == 'Y') {
$slots++;
}
2013-11-27 20:26:19 +01:00
if ($lendserver == 'Y' and $lendActive == 'Y' and $resellersettings[$resellerid]['shutdownempty'] == 'Y') {
$shutdownemptytime = $resellersettings[$resellerid]['shutdownemptytime'];
$query2->execute(array($row['serverID']));
2013-08-28 22:47:04 +02:00
foreach ($query2->fetchall(PDO::FETCH_ASSOC) as $row2) {
$lid = $row2['id'];
2013-11-27 20:26:19 +01:00
$elapsed = round((strtotime('now') - strtotime($row2['started'])) / 60);
2013-08-28 22:47:04 +02:00
}
}
}
2013-11-27 20:26:19 +01:00
if ($v['gq_online'] == 1) {
$name = normalizeName($v['gq_hostname']);
2013-11-27 20:26:19 +01:00
$numplayers = $v['gq_numplayers'];
$maxplayers = $v['gq_maxplayers'];
$map = $v['gq_mapname'];
$password = ($v['gq_password'] == 1) ? 'Y' : 'N';
} else {
$name = 'OFFLINE';
$numplayers = 0;
$maxplayers = 0;
$map = '';
2013-11-27 20:26:19 +01:00
$password = 'Y';
}
$returnCmd = array();
// Check lendserver specific settings
if (isset($userid) and $lendserver == 'Y') {
// Running but no lend information in temp table
if ($v['gq_online'] == 1) {
$query = $sql->prepare("SELECT 1 FROM `lendedserver` WHERE `id`=? LIMIT 1");
$query->execute(array($lid));
if ($query->rowCount() == 0) {
2013-12-01 15:57:23 +01:00
print "Will stop lendserver $address because not lendet\r\n";
2013-11-27 20:26:19 +01:00
$stopserver = true;
}
if (!isset($stopserver) and $lendserver == 'Y' and $lendActive == 'Y' and $resellersettings[$resellerid]['shutdownempty'] == 'Y' and $elapsed > $shutdownemptytime and $numplayers == 0 and $maxplayers != 0 and $slots != 0) {
print "Will stop server $address after $elapsed minutes, because it is empty and threshold is $shutdownemptytime minutes \r\n";
$stopserver = true;
2013-08-28 22:47:04 +02:00
}
}
2013-11-27 20:26:19 +01:00
// Expected to be running but is not, so remove from temp table
if (isset($stopserver) or $v['gq_online'] != 1) {
if (!isset($stopserver)) {
print "Will remove lendserver $address with lendID $lid because it is lendet but stopped \r\n";
2013-08-28 22:47:04 +02:00
}
2013-11-27 20:26:19 +01:00
$doNotRestart = true;
$query = $sql->prepare("DELETE FROM `lendedserver` WHERE `id`=? LIMIT 1");
$query->execute(array($lid));
2013-08-28 22:47:04 +02:00
}
}
2013-11-27 20:26:19 +01:00
if (isset($userid) and $v['gq_online'] == 1) {
$rulebreak = array();
if ($war == 'Y' and $password == 'N') {
$rulebreak[] = $ssprache->nopassword;
if ($resellersettings[$resellerid]['nopassword'] == 1) {
$stopserver = true;
print "Will stop server $address because running without password. The name converted to ISO-8859-1 is ".iconv('UTF-8','ISO-8859-1//TRANSLIT', $name).".\r\n";
} else {
print "Server with address $address is running as $gametype and illegal without password. The name converted to ISO-8859-1 is ".iconv('UTF-8','ISO-8859-1//TRANSLIT', $name).".\r\n";
}
}
2013-11-27 20:26:19 +01:00
if ($maxplayers > $slots) {
$rulebreak[] = $ssprache->tohighslots;
if ($resellersettings[$resellerid]['tohighslots'] == 1) {
$stopserver = true;
print "Will stop server $address because running with to much slots. The name converted to ISO-8859-1 is ".iconv('UTF-8','ISO-8859-1//TRANSLIT', $name).".\r\n";
} else {
print "Server $address is running as $gametype and with illegal slotamount. The name converted to ISO-8859-1 is ".iconv('UTF-8','ISO-8859-1//TRANSLIT', $name).".\r\n";
}
2013-08-28 22:47:04 +02:00
}
2013-11-27 20:26:19 +01:00
if ($brandname == 'Y' and $resellersettings[$resellerid]['brandname'] != '' and strpos(strtolower($name),strtolower($resellersettings[$resellerid]['brandname'])) === false) {
$rulebreak[] = $ssprache->noservertag;
if ($resellersettings[$resellerid]['noservertag'] == 1) {
$stopserver = true;
print "Will stop server $address because running without servertag. The name converted to ISO-8859-1 is ".iconv('UTF-8','ISO-8859-1//TRANSLIT', $name).".\r\n";
} else {
print "Server $address is running as $gametype and illegal without servertag. The name converted to ISO-8859-1 is ".iconv('UTF-8','ISO-8859-1//TRANSLIT', $name).".\r\n";
}
}
if (count($rulebreak) == 0 and !isset($stopserver)) {
print "Server $address is running as $gametype. The name converted to ISO-8859-1 is ".iconv('UTF-8','ISO-8859-1//TRANSLIT', $name).".\r\n";
}
if ($secnotified == 'N' and count($rulebreak) > 0) {
if ($resellerid==0) {
$query = $sql->prepare("SELECT `id`,`mail_securitybreach` FROM `userdata` WHERE `id`=? OR (`resellerid`=0 AND `accounttype`='a')");
$query->execute(array($userid));
} else {
$query = $sql->prepare("SELECT `id`,`mail_securitybreach` FROM `userdata` WHERE `id`=? OR (`id`=? AND `accounttype`='r')");
$query->execute(array($userid, $resellerid));
}
foreach ($query->fetchall(PDO::FETCH_ASSOC) as $row) {
if ($row['mail_securitybreach'] == 'Y') {
sendmail('emailsecuritybreach', $row['id'], $address, implode('<br>', $rulebreak));
}
}
$query = $sql->prepare("UPDATE `gsswitch` SET `secnotified`='Y' WHERE `id`=? LIMIT 1");
$query->execute(array($switchID));
}
if ($secnotified == 'Y' and count($rulebreak) == 0) {
$query = $sql->prepare("UPDATE `gsswitch` SET `secnotified`='N' WHERE `id`=? LIMIT 1");
$query->execute(array($switchID));
}
2013-12-31 19:42:43 +01:00
if (isset($stopserver) and $stopserver === true) {
2013-11-27 20:26:19 +01:00
$numplayers = 0;
$map = '';
2013-11-27 20:26:19 +01:00
$tmp = gsrestart($switchID, 'so', $aeskey, $resellerid);
if (is_array($tmp)) {
foreach($tmp as $t) {
$returnCmd[] = $t;
}
}
$query = $sql->prepare("DELETE FROM `lendedserver` WHERE `serverid`=? AND `resellerid`=? AND `servertype`='g' LIMIT 1");
$query->execute(array($switchID, $resellerid));
2013-08-28 22:47:04 +02:00
}
2013-11-27 20:26:19 +01:00
if ($notified > 0) {
$query = $sql->prepare("UPDATE `gsswitch` SET `notified`=0 WHERE `id`=? LIMIT 1");
$query->execute(array($switchID));
}
} else if (isset($userid) and isset($autoRestart)) {
2013-11-27 20:26:19 +01:00
$name = 'OFFLINE';
$numplayers = 0;
$maxplayers = 0;
$map = '';
$password = 'Y';
2013-11-27 20:26:19 +01:00
if (!isset($doNotRestart)) {
$notified++;
if (isset($dbConnect['debug']) and $dbConnect['debug'] == 1) {
print_r($v);
}
2013-11-27 20:26:19 +01:00
if ($autoRestart == 'Y' and $notified >= $resellersettings[$resellerid]['down_checks']) {
2013-11-27 20:26:19 +01:00
print "Restarting: $address\r\n";
$tmp = gsrestart($switchID, 're', $aeskey, $resellerid);
if (is_array($tmp)) {
foreach($tmp as $t) {
$returnCmd[] = $t;
}
}
} else {
print "Not Restarting: $address\r\n";
}
if ($notified == $resellersettings[$resellerid]['down_checks']) {
$query = $sql->prepare("SELECT `mail_serverdown` FROM `userdata` WHERE `id`=? LIMIT 1");
$query->execute(array($userid));
foreach ($query->fetchall(PDO::FETCH_ASSOC) as $row) {
if ($row['mail_serverdown'] == 'Y') {
sendmail('emaildownrestart', $userid, $address,'');
}
}
}
} else {
print "Not Stopping as database leftover: $address\r\n";
}
2013-08-28 22:47:04 +02:00
}
2013-11-27 20:26:19 +01:00
$query = $sql->prepare("UPDATE `gsswitch` SET `queryName`=?,`queryNumplayers`=?,`queryMaxplayers`=?,`queryMap`=?,`queryPassword`=?,`queryUpdatetime`=?,`notified`=? WHERE `id`=? LIMIT 1");
$query->execute(array($name, $numplayers, $maxplayers, $map, $password, $logdate, $notified, $switchID));
foreach($returnCmd as $t) {
$shellCmds[$rootID][] = $t;
}
2013-08-28 22:47:04 +02:00
}
}
2013-11-27 20:26:19 +01:00
unset($gq);
if (isset($dbConnect['debug']) and $dbConnect['debug'] == 1) {
print_r($shellCmds);
}
2013-10-26 11:59:03 +02:00
foreach($shellCmds as $k => $v) {
ssh2_execute('gs', $k, $v);
2013-08-29 23:37:49 +02:00
}
2013-08-28 22:47:04 +02:00
}
# Voice Server
if ($checkTypeOfServer == 'all' or $checkTypeOfServer == 'vs') {
2013-08-28 22:47:04 +02:00
#voice_tsdns
print 'Checking TSDNS' . "\r\n";
$query = $sql->prepare("SELECT *,AES_DECRYPT(`ssh2port`,:aeskey) AS `decryptedssh2port`,AES_DECRYPT(`ssh2user`,:aeskey) AS `decryptedssh2user`,AES_DECRYPT(`ssh2password`,:aeskey) AS `decryptedssh2password` FROM `voice_tsdns` WHERE `active`='Y'");
$query->execute(array(':aeskey' => $aeskey));
2013-08-28 22:47:04 +02:00
foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $row) {
$resellerid = $row['resellerid'];
$tsdnscheck = @fsockopen ($row['ssh2ip'], 41144, $errno, $errstr,5);
if (!is_resource($tsdnscheck) and $row['autorestart'] == 'Y') {
2013-08-28 22:47:04 +02:00
sleep(1);
$tsdnscheck = @fsockopen ($row['ssh2ip'], 41144, $errno, $errstr,5);
2013-08-28 22:47:04 +02:00
}
if (!is_resource($tsdnscheck) and $row['autorestart'] == 'Y') {
print "TSDNS Error: ".$row['ssh2ip'] . ' ' . $errno.' ('.$errstr.")\r\n";
$query3 = $sql->prepare("UPDATE `voice_tsdns` SET `notified`=`notified`+1 WHERE `id`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$query3->execute(array($row['id']));
$tsdnsDownCheck = $row['notified']+1;
if ($tsdnsDownCheck == $resellersettings[$resellerid]['down_checks']) {
2013-08-28 22:47:04 +02:00
if ($resellerid==0) {
$query3 = $sql->prepare("SELECT `id`,`mail_serverdown` FROM `userdata` WHERE `accounttype`='a' AND `resellerid`=0");
2013-08-28 22:47:04 +02:00
$query3->execute();
} else {
$query3 = $sql->prepare("SELECT `id`,`mail_serverdown` FROM `userdata` WHERE `id`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$query3->execute(array($resellerid));
}
2013-08-28 22:47:04 +02:00
foreach ($query3->fetchAll(PDO::FETCH_ASSOC) as $row3) {
if ($row3['mail_serverdown'] == 'Y') {
sendmail('emaildownrestart', $row3['id'], $row['ssh2ip'].' (External TSDNS)','');
2013-08-28 22:47:04 +02:00
}
}
}
2014-01-05 13:00:36 +01:00
unset($folders);
$i = 0;
2014-01-05 13:00:36 +01:00
$lastFolder = '';
$tsdnsbin= ($row['bitversion'] == '32') ? 'tsdnsserver_linux_x86' : 'tsdnsserver_linux_amd64';
$split_config = preg_split('/\//', $row['serverdir'], -1, PREG_SPLIT_NO_EMPTY);
$folderfilecount = count($split_config) - 1;
$folders = (substr($row['serverdir'], 0, 1) == '/') ? 'cd /' : 'cd ';
2014-01-05 13:00:36 +01:00
while ($i <= $folderfilecount) {
$folders = $folders.$split_config[$i] . '/';
$lastFolder = $split_config[$i];
$i++;
}
2014-01-05 13:00:36 +01:00
if ($folders == 'cd ') {
$folders = '';
} else if ($lastFolder != 'tsdns' or substr($row['serverdir'], 0, 1) != '/') {
$folders = $folders . 'tsdns/ && ';
2013-08-28 22:47:04 +02:00
} else {
2014-01-05 13:00:36 +01:00
$folders = $folders . ' && ';
2013-08-28 22:47:04 +02:00
}
$ssh2cmd = $folders . 'function r () { if [ "`ps fx | grep ' . $tsdnsbin . ' | grep -v grep`" == "" ]; then ./' . $tsdnsbin . ' > /dev/null & else ./' . $tsdnsbin . ' --update > /dev/null & fi }; r& ';
2014-01-05 13:00:36 +01:00
if (ssh2_execute('vd', $row['id'], $ssh2cmd)) {
print "Restarting TSDNS: {$row['ssh2ip']}\r\n";
2013-08-28 22:47:04 +02:00
} else {
2014-01-05 13:00:36 +01:00
print "Failed restarting TSDNS: {$row['ssh2ip']}\r\n";
}
if (isset($dbConnect['debug']) and $dbConnect['debug'] == 1) {
echo $ssh2cmd . "\r\n";
2013-08-28 22:47:04 +02:00
}
2014-01-05 13:00:36 +01:00
2013-08-28 22:47:04 +02:00
} else {
2013-08-28 22:47:04 +02:00
print "TSDNS ${row['ssh2ip']} is up and running\r\n";
$query3 = $sql->prepare("UPDATE `voice_tsdns` SET `notified`=0 WHERE `id`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$query3->execute(array($row['id']));
}
}
/* Voice Server */
2014-01-05 13:00:36 +01:00
if ((isset($args['tsDebug']) and $args['tsDebug'] == 1)) {
print "Checking voice server with debug on\r\n";
}
$query = $sql->prepare("SELECT *,AES_DECRYPT(`querypassword`,:aeskey) AS `decryptedquerypassword`,AES_DECRYPT(`ssh2port`,:aeskey) AS `decryptedssh2port`,AES_DECRYPT(`ssh2user`,:aeskey) AS `decryptedssh2user`,AES_DECRYPT(`ssh2password`,:aeskey) AS `decryptedssh2password` FROM `voice_masterserver` WHERE `active`='Y'");
$query->execute(array(':aeskey' => $aeskey));
foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $vrow) {
unset($connect_ssh2, $ssh2, $badLogin);
$ts3masterid = $vrow['id'];
$ts3masternotified = $vrow['notified'];
$addedby = $vrow['addedby'];
$queryport = $vrow['queryport'];
$querypassword = $vrow['decryptedquerypassword'];
$resellerid = $vrow['resellerid'];
$autorestart = $vrow['autorestart'];
if ($addedby == 1) {
$vselect2 = $sql->prepare("SELECT `ip` FROM `rserverdata` WHERE `id`=? AND `resellerid`=? LIMIT 1");
$vselect2->execute(array($vrow['rootid'], $resellerid));
$queryip = $vselect2->fetchColumn();
} else {
$queryip = $vrow['ssh2ip'];
2013-08-28 22:47:04 +02:00
}
if ($vrow['type'] == 'ts3') {
print "Connecting to TS3 server $queryip\r\n";
$tsdown = false;
$tsdnsdown = false;
$defaultwelcome = $vrow['defaultwelcome'];
$default = array('virtualserver_hostbanner_url' => $vrow['defaulthostbanner_url'], 'virtualserver_hostbanner_gfx_url' => $vrow['defaulthostbanner_gfx_url'], 'virtualserver_hostbutton_tooltip' => $vrow['defaulthostbutton_tooltip'], 'virtualserver_hostbutton_url' => $vrow['defaulthostbutton_url'], 'virtualserver_hostbutton_gfx_url' => $vrow['defaulthostbutton_gfx_url'], 'defaultwelcome' => $vrow['defaultwelcome']);
$connection = new TS3($queryip, $queryport,'serveradmin', $querypassword, (isset($args['tsDebug']) and $args['tsDebug'] == 1) ? true : false);
$errorcode = $connection->errorcode;
2013-08-28 22:47:04 +02:00
if (strpos($errorcode,'error id=0') === false) {
2013-08-28 22:47:04 +02:00
$connection->CloseConnection();
unset($connection);
2013-08-28 22:47:04 +02:00
sleep(1);
$connection = new TS3($queryip, $queryport,'serveradmin', $querypassword);
$errorcode = $connection->errorcode;
2013-08-28 22:47:04 +02:00
}
if (strpos($errorcode, 'error id=0') === false) {
2013-08-28 22:47:04 +02:00
$connection->CloseConnection();
unset($connection);
}
if (strpos($errorcode, 'error id=0') === false) {
print "TS3 Query Error: " . $errorcode . "\r\n";
$tsdown = true;
$restartreturn = "TS3";
2013-08-28 22:47:04 +02:00
}
if ($vrow['usedns'] == 'Y') {
$tsdnscheck = @fsockopen ($queryip,41144, $errno, $errstr,5);
2013-08-28 22:47:04 +02:00
if (!is_resource($tsdnscheck)) {
sleep(1);
$tsdnscheck = @fsockopen ($queryip,41144, $errno, $errstr,5);
2013-08-28 22:47:04 +02:00
}
if (!is_resource($tsdnscheck)) {
2013-08-28 22:47:04 +02:00
print "TSDNS Error: ".$errno.' ('.$errstr.")\r\n";
$tsdnsdown = true;
2013-08-28 22:47:04 +02:00
if (isset($restartreturn)) {
$restartreturn .= " and TSDNS";
2013-08-28 22:47:04 +02:00
} else {
$restartreturn = "TSDNS";
2013-08-28 22:47:04 +02:00
}
}
}
if ($tsdown == true or $tsdnsdown == true) {
2013-08-28 22:47:04 +02:00
$ts3masternotified++;
if ($ts3masternotified == $resellersettings[$resellerid]['down_checks']) {
if ($resellerid == 0) {
$query2 = $sql->prepare("SELECT `id`,`mail_serverdown` FROM `userdata` WHERE `accounttype`='a' AND `resellerid`=0");
2013-08-28 22:47:04 +02:00
$query2->execute();
} else {
$query2 = $sql->prepare("SELECT `id`,`mail_serverdown` FROM `userdata` WHERE `id`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$query2->execute(array($resellerid));
}
2013-08-28 22:47:04 +02:00
foreach ($query2->fetchall(PDO::FETCH_ASSOC) as $row2) {
if ($row2['mail_serverdown'] == 'Y') {
sendmail('emaildownrestart', $row2['id'], $queryip . ' (' . $restartreturn . ')', '');
}
2013-08-28 22:47:04 +02:00
}
}
$query2 = $sql->prepare("UPDATE `voice_server` SET `uptime`=0 WHERE `masterserver`=?");
$query2->execute(array($ts3masterid));
$query2 = $sql->prepare("UPDATE `voice_masterserver` SET `notified`=? WHERE `id`=? LIMIT 1");
$query2->execute(array($ts3masternotified, $ts3masterid));
2014-01-05 13:00:36 +01:00
if (($autorestart == 'Y' and $ts3masternotified >= $resellersettings[$resellerid]['down_checks'])) {
$cmds = array();
$i = 0;
$split_config = preg_split('/\//', $vrow['serverdir'], -1, PREG_SPLIT_NO_EMPTY);
$folderfilecount = count($split_config) - 1;
2014-01-05 13:00:36 +01:00
$folders = (substr($vrow['serverdir'], 0, 1) == '/') ? 'cd /' : 'cd ';
2014-01-05 13:00:36 +01:00
while ($i <= $folderfilecount) {
$folders = $folders . $split_config[$i] . '/';
2014-01-05 13:00:36 +01:00
$i++;
}
if ($folders == 'cd ') {
$folders = '';
$tsdnsFolders = 'cd tsdns && ';
2014-01-05 13:00:36 +01:00
} else {
$tsdnsFolders = $folders.'tsdns && ';
$folders = $folders . ' && ';
}
2014-01-05 13:00:36 +01:00
if ($vrow['bitversion'] == '32') {
$tsbin = 'ts3server_linux_x86';
$tsdnsbin = 'tsdnsserver_linux_x86';
2013-08-28 22:47:04 +02:00
} else {
$tsbin = 'ts3server_linux_amd64';
$tsdnsbin = 'tsdnsserver_linux_amd64';
2014-01-05 13:00:36 +01:00
}
if ($tsdown == true) {
$cmds[] = $folders . 'function r () { if [ "`ps fx | grep ' . $tsbin . ' | grep -v grep`" == "" ]; then ./ts3server_startscript.sh start > /dev/null & else ./ts3server_startscript.sh restart > /dev/null & fi }; r& ';
2014-01-05 13:00:36 +01:00
}
if ($vrow['usedns'] == 'Y' and $tsdnsdown == true) {
$cmds[] = $tsdnsFolders . 'function r () { if [ "`ps fx | grep ' . $tsdnsbin . ' | grep -v grep`" == "" ]; then ./' . $tsdnsbin . ' > /dev/null & else ./' . $tsdnsbin . ' --update > /dev/null & fi }; r& ';
2013-08-28 22:47:04 +02:00
}
2014-01-05 13:00:36 +01:00
if (count($cmds) > 0) {
if (ssh2_execute('vm', $ts3masterid, $cmds)) {
print "Restarting: $restartreturn $queryip\r\n";
2013-08-28 22:47:04 +02:00
} else {
2014-01-05 13:00:36 +01:00
print "Failed restarting: $restartreturn $queryip\r\n";
2013-08-28 22:47:04 +02:00
}
2014-01-05 13:00:36 +01:00
if (isset($dbConnect['debug']) and $dbConnect['debug'] == 1) {
print_r($cmds);
2013-08-28 22:47:04 +02:00
}
}
} else {
2014-01-05 13:00:36 +01:00
print "$restartreturn $queryip down but no Restart triggert\r\n";
2013-08-28 22:47:04 +02:00
}
}
2014-01-05 13:00:36 +01:00
if ($tsdown != true) {
if ($ts3masternotified > 0) {
$pupdate = $sql->prepare("UPDATE `voice_masterserver` SET `notified`=0 WHERE `id`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$pupdate->execute(array($ts3masterid));
}
2013-12-18 22:46:48 +01:00
$serverlist = $connection->ServerList();
2013-12-18 22:46:48 +01:00
if (!isset($serverlist[0]['id']) or $serverlist[0]['id'] == 0) {
2013-12-18 22:46:48 +01:00
2013-08-28 22:47:04 +02:00
foreach ($serverlist as $server) {
unset($newtrafficdata, $newtraffic, $ts3id);
$modbadserver = array();
$newnotified = 'N';
$virtualserver_id = $server['virtualserver_id'];
$vs = $server['virtualserver_status'];
$uptime = (isset($server['virtualserver_uptime'])) ? $server['virtualserver_uptime'] : 0;
$vselect2 = $sql->prepare("SELECT * FROM `voice_server` WHERE `localserverid`=? AND `masterserver`=? AND `resellerid`=? AND `autoRestart`='Y' LIMIT 1");
$vselect2->execute(array($virtualserver_id, $vrow['id'], $resellerid));
2013-08-28 22:47:04 +02:00
foreach ($vselect2->fetchall(PDO::FETCH_ASSOC) as $vrow2) {
$queryName = $vrow2['queryName'];
$lendserver = $vrow2['lendserver'];
$ts3id = $vrow2['id'];
$userid = $vrow2['userid'];
$slots = $vrow2['slots'];
$password = $vrow2['password'];
$forcebanner = $vrow2['forcebanner'];
$forcebutton = $vrow2['forcebutton'];
$forceservertag = $vrow2['forceservertag'];
$forcewelcome = $vrow2['forcewelcome'];
$flexSlots = $vrow2['flexSlots'];
$flexSlotsFree = $vrow2['flexSlotsFree'];
$flexSlotsPercent = $vrow2['flexSlotsPercent'];
$flexSlotsCurrent = $vrow2['flexSlotsCurrent'];
$max_download_total_bandwidth = $vrow2['max_download_total_bandwidth'];
$max_upload_total_bandwidth = $vrow2['max_upload_total_bandwidth'];
$address = $vrow2['ip'] . ':' . $vrow2['port'];
$active = $vrow2['active'];
$notified = $vrow2['notified'];
$olduptime = $vrow2['uptime'];
$initialpassword = $vrow2['initialpassword'];
$maxtrafficmb = $vrow2['maxtraffic'];
$maxtraffic = $maxtrafficmb * 1024;
$filetraffic = ($vrow2['filetraffic'] == null) ? 0 : $vrow2['filetraffic'];
$lastfiletraffic = ($vrow2['lastfiletraffic'] == null) ? 0 : $vrow2['lastfiletraffic'];
$newtrafficdata = $lastfiletraffic;
$newtraffic = $filetraffic;
2013-08-28 22:47:04 +02:00
}
if (isset($ts3id) and $vs == 'online' and $active == 'N') {
2013-08-28 22:47:04 +02:00
print "Inactive TS3 server $address running. Stopping it.\r\n";
$connection->StopServer($virtualserver_id);
} else if (isset($ts3id) and $vs == 'online' and $active == 'Y') {
unset($rulebreak, $changeSlots);
$queryName = $server['virtualserver_name'];
$usedslots = (isset($server['virtualserver_clientsonline'])) ? $server['virtualserver_clientsonline'] : 0;
if ($lendserver == 'Y') {
$vselect2 = $sql->prepare("SELECT `slots` FROM `lendedserver` WHERE `servertype`='v' AND `serverid`=? AND `resellerid`=? LIMIT 1");
$vselect2->execute(array($ts3id, $resellerid));
$lendslots = $vselect2->fetchColumn();
} else {
$lendslots = 0;
}
$sd = $connection->ServerDetails($virtualserver_id);
$newtrafficdata = round(($sd['connection_filetransfer_bytes_sent_total'] + $sd['connection_filetransfer_bytes_received_total']) / 1024);
2014-01-10 22:16:51 +01:00
if (isset($resellersettings[$resellerid]['firstchecktime']) and isset($resellersettings[$resellerid]['firstcheck']) and $resellersettings[$resellerid]['firstchecktime'] < $resellersettings[$resellerid]['firstcheck']) {
$filetraffic = 0;
}
$newtraffic = 0;
2014-02-15 19:30:19 +01:00
$addedtraffic = 0;
if ($newtrafficdata > $lastfiletraffic) {
$addedtraffic = $newtrafficdata - $lastfiletraffic;
$newtraffic = $filetraffic + $addedtraffic;
} else if ($newtrafficdata == $lastfiletraffic) {
$newtraffic = $filetraffic;
} else if ($newtrafficdata < $lastfiletraffic) {
$addedtraffic = $newtrafficdata;
2014-02-15 19:30:19 +01:00
$newtraffic = $filetraffic + $addedtraffic;
2013-08-28 22:47:04 +02:00
}
$newtrafficmb = round($newtraffic / 1024);
$traffictext = '';
$virtualserver_max_download_total_bandwidth = $max_download_total_bandwidth;
$virtualserver_max_upload_total_bandwidth = $max_upload_total_bandwidth;
if (isset($ts3id) and $flexSlots == 'Y' and $usedslots==0 and ($usedslots+$flexSlotsFree) != $flexSlotsCurrent) {
$changeSlots = $flexSlotsFree;
} else if (isset($ts3id) and $flexSlots == 'Y' and ($usedslots + $flexSlotsFree) != $flexSlotsCurrent and ($usedslots + $flexSlotsFree) <= $slots and (abs(($usedslots + $flexSlotsFree) - $flexSlotsCurrent) / ($flexSlotsFree / 100)) >= $flexSlotsPercent) {
$changeSlots = $usedslots + $flexSlotsFree;
} else if (isset($ts3id) and $flexSlots == 'Y' and $flexSlotsCurrent != $slots and ($usedslots + $flexSlotsFree) > $slots and (abs(($usedslots + $flexSlotsFree) - $flexSlotsCurrent) / ($flexSlotsFree / 100)) >= $flexSlotsPercent) {
$changeSlots = $slots;
}
if (isset($changeSlots) and $flexSlotsCurrent != 2 and $changeSlots < 2) {
$changeSlots = 2;
} else if (isset($changeSlots) and $flexSlotsCurrent == 2 and $changeSlots < 2) {
unset($changeSlots);
}
if ($maxtraffic > 0 and $newtraffic > $maxtraffic and $sd['virtualserver_max_download_total_bandwidth'] > 1 and $sd['virtualserver_max_upload_total_bandwidth'] > 1) {
$virtualserver_max_download_total_bandwidth = 1;
$virtualserver_max_upload_total_bandwidth = 1;
$traffictext = 'and has now reached the traffic limit ' . $newtrafficmb . '/' . $maxtrafficmb." MB";
2013-08-28 22:47:04 +02:00
if (isset($rulebreak)) {
$rulebreak .= '<br />Traffic Limit' . $newtrafficmb . '/' . $maxtrafficmb." MB";
2013-08-28 22:47:04 +02:00
} else {
$rulebreak = '<br />Traffic Limit' . $newtrafficmb . '/' . $maxtrafficmb." MB";
2013-08-28 22:47:04 +02:00
}
} else if ($maxtraffic > 0 and $newtraffic > $maxtraffic and $sd['virtualserver_max_download_total_bandwidth'] < 2 and $sd['virtualserver_max_upload_total_bandwidth'] < 2) {
$virtualserver_max_download_total_bandwidth = 1;
$virtualserver_max_upload_total_bandwidth = 1;
$traffictext = 'and has still reached the traffic limit ' . $newtrafficmb . '/' . $maxtrafficmb." MB";
} else if ($maxtraffic > 0) {
$traffictext = 'and has not reached traffic limit ' . $newtrafficmb . '/' . $maxtrafficmb." MB";
2013-08-28 22:47:04 +02:00
} else {
$traffictext = 'and has traffic limit ' . $newtrafficmb . '/' . $maxtrafficmb." MB";
2013-08-28 22:47:04 +02:00
}
if ($sd['virtualserver_max_download_total_bandwidth'] != $virtualserver_max_download_total_bandwidth or $sd['virtualserver_max_upload_total_bandwidth'] != $virtualserver_max_download_total_bandwidth) {
$modbadserver['virtualserver_max_download_total_bandwidth'] = $virtualserver_max_download_total_bandwidth;
$modbadserver['virtualserver_max_upload_total_bandwidth'] = $virtualserver_max_download_total_bandwidth;
2013-08-28 22:47:04 +02:00
}
if ($forceservertag == 'Y' and $resellersettings[$resellerid]['brandname'] != '' and strpos(strtolower($server['virtualserver_name']), strtolower($resellersettings[$resellerid]['brandname'])) === false) {
print $vrow['type'] . ' server $address illegal without servertag. The name converted to ISO-8859-1 is ' . iconv('UTF-8','ISO-8859-1//TRANSLIT', $server['virtualserver_name']) . "\r\n";
2013-08-28 22:47:04 +02:00
if (isset($rulebreak)) {
$rulebreak .= '<br />' . $ssprache->noservertag;
2013-08-28 22:47:04 +02:00
} else {
$rulebreak = $ssprache->noservertag;
2013-08-28 22:47:04 +02:00
}
$modbadserver['virtualserver_name'] = $server['virtualserver_name'] . ' ' . $resellersettings[$resellerid]['brandname'];
2013-08-28 22:47:04 +02:00
}
if (isset($ts3id) and $forcebanner == 'Y') {
foreach (array('virtualserver_hostbanner_url', 'virtualserver_hostbanner_gfx_url') as $param) {
if ($default[$param] != '' and $sd[$param] != $default[$param]) {
$modbadserver[$param] = $default[$param];
print $vrow['type']." server $address $param != ".$default[$param].". The name converted to ISO-8859-1 is ".iconv('UTF-8','ISO-8859-1//TRANSLIT', $server['virtualserver_name']) . "\r\n";
2013-08-28 22:47:04 +02:00
if (isset($rulebreak)) {
$rulebreak .= '<br />' . $param . ' ' . $vosprache->isnot . ' ' . $default[$param];
2013-08-28 22:47:04 +02:00
} else {
$rulebreak = $param . ' ' . $vosprache->isnot . ' ' . $default[$param];
2013-08-28 22:47:04 +02:00
}
}
}
}
if (isset($ts3id) and $forcebutton == 'Y') {
foreach (array('virtualserver_hostbutton_tooltip', 'virtualserver_hostbutton_url', 'virtualserver_hostbutton_gfx_url') as $param) {
if ($default[$param] != '' and $sd[$param] != $default[$param]) {
$modbadserver[$param] = $default[$param];
print $vrow['type'] . " server $address $param != " . $default[$param] . ". The name converted to ISO-8859-1 is " . iconv('UTF-8','ISO-8859-1//TRANSLIT', $server['virtualserver_name']) . "\r\n";
2013-08-28 22:47:04 +02:00
if (isset($rulebreak)) {
$rulebreak .='<br />' . $param . ' ' . $vosprache->isnot . ' ' . $default[$param];
2013-08-28 22:47:04 +02:00
} else {
$rulebreak = $param . ' ' . $vosprache->isnot . ' ' . $default[$param];
2013-08-28 22:47:04 +02:00
}
}
}
}
if (isset($ts3id) and $forcewelcome == 'Y' and $default['defaultwelcome'] != '' and $sd['virtualserver_welcomemessage'] != $default['defaultwelcome']) {
$modbadserver['virtualserver_welcomemessage'] = $default['defaultwelcome'];
print $vrow['type'] . " server $address $param != ".$default['defaultwelcome'] . '. The name converted to ISO-8859-1 is ' . iconv('UTF-8','ISO-8859-1//TRANSLIT', $server['virtualserver_name']) . "\r\n";
2013-08-28 22:47:04 +02:00
if (isset($rulebreak)) {
$rulebreak .= '<br />virtualserver_welcomemessage ' . $vosprache->isnot . ' ' . $default['defaultwelcome'];
2013-08-28 22:47:04 +02:00
} else {
$rulebreak = 'virtualserver_welcomemessage ' . $vosprache->isnot . ' ' . $default['defaultwelcome'];
2013-08-28 22:47:04 +02:00
}
}
if (isset($ts3id, $lendserver) and (($lendserver == 'N' and $slots < $server['virtualserver_maxclients']) or ($lendserver == 'Y' and $lendslots < $server['virtualserver_maxclients']))) {
$showSlots = ($lendserver == 'Y') ? $lendslots : $slots;
print $vrow['type'] . " server $address virtualserver_maxclients ${sd['virtualserver_maxclients']}!= " . $showSlots . ". The name converted to ISO-8859-1 is " . iconv('UTF-8','ISO-8859-1//TRANSLIT', $server['virtualserver_name']) . "\r\n";
2013-08-28 22:47:04 +02:00
if (isset($rulebreak)) {
$rulebreak .= '<br />virtualserver_maxclients ' . $vosprache->isnot . ' ' . $showSlots;
2013-08-28 22:47:04 +02:00
} else {
$rulebreak = 'virtualserver_maxclients ' . $vosprache->isnot . ' ' . $showSlots;
2013-08-28 22:47:04 +02:00
}
}
if (isset($ts3id) and $password == 'Y' and $sd['virtualserver_flag_password'] != '1') {
$modbadserver['virtualserver_password'] = $initialpassword;
print $vrow['type'] . " server $address virtualserver_flag_password != 1. The name converted to ISO-8859-1 is " . iconv('UTF-8','ISO-8859-1//TRANSLIT', $server['virtualserver_name']) . "\r\n";
2013-08-28 22:47:04 +02:00
if (isset($rulebreak)) {
$rulebreak .="<br />virtualserver_flag_password ".$vosprache->isnot." 1";
} else {
$rulebreak="virtualserver_flag_password ".$vosprache->isnot." 1";
}
}
if (isset($ts3id) and $lendserver == 'N' and !isset($rulebreak)) {
2013-08-28 22:47:04 +02:00
if (isset($changeSlots)) {
print $vrow['type'] . " server $address Changing Flex Slots to ${changeSlots}. The name converted to ISO-8859-1 is " . iconv('UTF-8','ISO-8859-1//TRANSLIT', $server['virtualserver_name']) . "\r\n";
$connection->ImportModServer($virtualserver_id, $changeSlots, $vrow2['ip'], $vrow2['port'], array());
$pupdate2 = $sql->prepare("UPDATE `voice_server` SET `notified`=0,`flexSlotsCurrent`=? WHERE `id`=? LIMIT 1");
$pupdate2->execute(array($changeSlots, $ts3id));
} else if ($notified > 0) {
$pupdate2 = $sql->prepare("UPDATE `voice_server` SET `notified`=0 WHERE `id`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$pupdate2->execute(array($ts3id));
}
print $vrow['type']." server $address is running $traffictext. The name converted to ISO-8859-1 is ".iconv('UTF-8','ISO-8859-1//TRANSLIT', $server['virtualserver_name']) . "\r\n";
} else if (isset($ts3id) and $notified == 0 and isset($rulebreak)) {
$connection->ImportModServer($virtualserver_id,($lendserver == 'Y') ? $lendslots : $slots, $vrow2['ip'], $vrow2['port'], $modbadserver);
2013-08-28 22:47:04 +02:00
if ($resellerid==0) {
$query2 = $sql->prepare("SELECT `id`,`mail_securitybreach` FROM `userdata` WHERE `id`=? OR (`resellerid`=0 AND `accounttype`='a')");
2013-08-28 22:47:04 +02:00
$query2->execute(array($userid));
} else {
$query2 = $sql->prepare("SELECT `id`,`mail_securitybreach` FROM `userdata` WHERE `id`=? OR (`id`=? AND `accounttype`='r')");
$query2->execute(array($userid, $resellerid));
2013-08-28 22:47:04 +02:00
}
2013-08-28 22:47:04 +02:00
foreach ($query2->fetchall(PDO::FETCH_ASSOC) as $row2) {
if ($row2['mail_securitybreach'] == 'Y' or $row2['id'] == $userid) {
sendmail('emailsecuritybreach', $row2['id'], $address, $rulebreak);
2013-08-28 22:47:04 +02:00
}
}
$pupdate2 = $sql->prepare("UPDATE `voice_server` SET `notified`='1' WHERE `id`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$pupdate2->execute(array($ts3id));
}
if (isset($ts3id) and $lendserver == 'Y' and $resellersettings[$resellerid]['shutdownempty'] == 'Y') {
$stop = false;
$dataloss = true;
$shutdownemptytime = $resellersettings[$resellerid]['shutdownemptytime'];
$elapsedtime = $sql->prepare("SELECT `id`,`started`,`lendtime` FROM `lendedserver` WHERE `serverid`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$elapsedtime->execute(array($ts3id));
foreach ($elapsedtime->fetchall(PDO::FETCH_ASSOC) as $erow) {
$dataloss = false;
$lid = $erow['id'];
$runtime = $erow['lendtime'];
$elapsed = round((strtotime('now') - strtotime($erow['started'])) / 60);
if ($elapsed > $shutdownemptytime and $usedslots == 0) {
2013-08-28 22:47:04 +02:00
print "Will stop server $address before time is up, because it is empty\r\n";
$stop = true;
} else if ($elapsed >= $runtime) {
2013-08-28 22:47:04 +02:00
print "Will stop server $address because time is up\r\n";
$stop = true;
2013-08-28 22:47:04 +02:00
}
if ($stop == true) {
$rmvoicelend = $sql->prepare("DELETE FROM `lendedserver` WHERE `id`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$rmvoicelend->execute(array($lid));
}
}
if ($dataloss == true) {
2013-08-28 22:47:04 +02:00
print "Will stop server $address because it is a lendserver and should not be running\r\n";
$stop = true;
2013-08-28 22:47:04 +02:00
}
if ($stop == true) {
2013-08-28 22:47:04 +02:00
$connection->StopServer($virtualserver_id);
}
}
2014-02-15 19:30:19 +01:00
$query = $sql->prepare("INSERT INTO `voice_server_stats` (`sid`,`mid`,`installed`,`used`,`traffic`,`date`,`uid`,`resellerid`) VALUES (?,?,?,?,?,?,?,?) ON DUPLICATE KEY UPDATE `traffic`=`traffic`+VALUES(`traffic`),`used`=(`used`*(`count`/(`count`+1))+(VALUES(`used`)*(1/(`count`+1)))),`installed`=(`installed`*(`count`/(`count`+1))+(VALUES(`installed`)*(1/(`count`+1)))),`count`=`count`+1");
$query->execute(array($ts3id, $ts3masterid, $server['virtualserver_maxclients'], $usedslots, $addedtraffic, $dayAndZeroHour, $userid, $resellerid));
2013-08-28 22:47:04 +02:00
} else if (isset($ts3id)) {
$uptime = 1;
$usedslots = 0;
if ($lendserver == 'Y' and $lendActive == 'Y') {
$removedeadvoiceserver = $sql->prepare("DELETE FROM `lendedserver` WHERE `serverid`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$removedeadvoiceserver->execute(array($ts3id));
} else if ($active == 'Y' and $vs != 'online' and $olduptime>1 and $olduptime != null) {
2013-08-28 22:47:04 +02:00
$notified++;
2013-10-13 13:11:38 +02:00
if ($notified>=$ts3masternotified == $resellersettings[$resellerid]['down_checks']){
2013-08-28 22:47:04 +02:00
print "TS3 server $address not running. Starting it.\r\n";
$connection->StartServer($virtualserver_id);
}
if ($notified == $resellersettings[$resellerid]['down_checks']) {
$query2 = $sql->prepare("SELECT `mail_serverdown` FROM `userdata` WHERE `id`=? LIMIT 1");
2013-08-28 22:47:04 +02:00
$query2->execute(array($userid));
foreach ($query2->fetchall(PDO::FETCH_ASSOC) as $row2) {
if ($row2['mail_serverdown'] == 'Y') sendmail('emaildownrestart', $userid, $address,'');
2013-08-28 22:47:04 +02:00
}
$newnotified = $notified;
2013-08-28 22:47:04 +02:00
}
}
}
if (isset($ts3id)) {
$flagPassword = 'N';
2013-10-13 13:11:38 +02:00
if (isset($sd['virtualserver_flag_password']) and $sd['virtualserver_flag_password'] == 1) {
$flagPassword = 'Y';
}
$query2 = $sql->prepare("UPDATE `voice_server` SET `usedslots`=?,`uptime`=?,`notified`=?,`filetraffic`=?,`lastfiletraffic`=?,`queryName`=?,`queryNumplayers`=?,`queryMaxplayers`=?,`queryPassword`=?,`queryUpdatetime`=NOW() WHERE `id`=? AND `resellerid`=? LIMIT 1");
$query2->execute(array($usedslots, $uptime, $newnotified, $newtraffic, $newtrafficdata, $queryName,((isset($server['virtualserver_clientsonline'])) ? $server['virtualserver_clientsonline'] : 0 - 1),(isset($server['virtualserver_maxclients'])) ? $server['virtualserver_maxclients'] : 0, $flagPassword, $ts3id, $resellerid));
2013-08-28 22:47:04 +02:00
}
if (isset($args['coolDown'])) {
$nano = time_nanosleep(0, $args['coolDown']);
2013-10-12 08:40:09 +02:00
if ($nano === true) {
echo 'Slept for ' . $args['coolDown'] . ' microseconds' . "\r\n";
2013-10-12 08:40:09 +02:00
} elseif ($nano === false) {
echo 'Sleeping failed' . "\r\n";
} elseif (is_array($nano)) {
echo 'Interrupted by a signal' . "\r\n";
echo 'Time remaining: ' . $nano['seconds'] . ' seconds, ' . $nano['nanoseconds'] . ' nanoseconds' . "\r\n";
2013-08-28 22:47:04 +02:00
}
}
}
} else {
print "Error: " . $serverlist[0]['msg'] . "\r\n";
}
2013-08-28 22:47:04 +02:00
}
2013-08-28 22:47:04 +02:00
if (isset($connection)) {
$connection->CloseConnection();
sleep(1);
}
}
}
}
2013-08-28 22:47:04 +02:00
flush();
# MySQL table sizes
if ($checkTypeOfServer == 'all' or $checkTypeOfServer == 'my') {
$query = $sql->prepare("SELECT `id`,`ip`,`port`,`user`,AES_DECRYPT(`password`,?) AS `decryptedpassword` FROM `mysql_external_servers` WHERE `active`='Y'");
$query2 = $sql->prepare("SELECT `id` FROM `mysql_external_dbs` WHERE `sid`=? AND `dbname`=? LIMIT 1");
$query3 = $sql->prepare("UPDATE `mysql_external_dbs` SET `dbSize`=? WHERE `id`=? LIMIT 1");
$query->execute(array($aeskey));
foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $row) {
$remotesql = new ExternalSQL ($row['ip'], $row['port'], $row['user'], $row['decryptedpassword']);
if ($remotesql->error == 'ok') {
$list = $remotesql->getDBSizeList();
if (is_array($list)) {
foreach ($list as $db) {
$query2->execute(array($row['id'], $db['dbName']));
$dbID = $query2->fetchColumn();
if (isid($dbID, 10)) {
echo 'Found DB ' . $db['dbName'] . ' with size ' . $db['dbSize'] . "\r\n";
$query3->execute(array(round($db['dbSize']), $dbID));
} else {
echo 'Cannot find DB ' . $db['dbName'] . ' with size ' . $db['dbSize'] . "\r\n";
}
}
} else {
echo 'Error getting DB list for DB Server ' . $row['ip'] . ':' . $row['port'] . ': ' . $list . "\r\n";
}
} else {
echo 'Error connecting to DB Server ' . $row['ip'] . ':' . $row['port'] . ': ' . $remotesql->error . "\r\n";
}
}
}
2014-01-10 22:16:51 +01:00
$query = $sql->prepare("UPDATE `settings` SET `lastCronStatus`=UNIX_TIMESTAMP()");
2013-08-28 22:47:04 +02:00
$query->execute();
2013-08-28 22:47:04 +02:00
} else {
header('Location: login.php');
die('Statuscheck can only be run via console or a cronjob');
}