release 1.2.8

This commit is contained in:
Newcomer1989
2018-07-22 19:29:41 +02:00
parent 5e66c5d5cb
commit b0d36f783c
43 changed files with 867 additions and 754 deletions

View File

@@ -1,6 +1,6 @@
<?PHP
function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) {
$newversion = '1.2.7';
$newversion = '1.2.8';
enter_logfile($logpath,$timezone,5,"Check Ranksystem database for updates...");
function set_new_version($mysqlcon,$dbname,$timezone,$newversion,$logpath) {
@@ -246,9 +246,11 @@ function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) {
}
if($mysqlcon->exec("CREATE TABLE `$dbname`.`user_iphash` (`uuid` varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY,`iphash` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci,`ip` varchar(39) CHARACTER SET utf8 COLLATE utf8_unicode_ci)") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.7] Created table user_iphash successfully.");
}
}
}
if(version_compare($currvers, '1.2.7', '<=')) {
if($mysqlcon->exec("UPDATE `$dbname`.`job_check` SET `timestamp`='".time()."' WHERE `job_name`='last_update'") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.7] Stored timestamp of last update successfully.");
enter_logfile($logpath,$timezone,4," [1.2.8] Stored timestamp of last update successfully.");
}
}
$currvers = set_new_version($mysqlcon,$dbname,$timezone,$newversion,$logpath);

View File

@@ -11,7 +11,10 @@ function clean($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$cleanclients,$c
$break=200;
$count_tsuser['count'] = 0;
$clientdblist=array();
enter_logfile($logpath,$timezone,6,"Get TS3 Clientlist...".$start);
while($getclientdblist=$ts3->clientListDb($start, $break)) {
$ts3->serverInfoReset(); //TeamSpeak gets very slow on sending dblist.. needs to hold the connection
#enter_logfile($logpath,$timezone,6,"Round TS3 Clientlist ".$start);
$clientdblist=array_merge($clientdblist, $getclientdblist);
$start=$start+$break;
$count_tsuser=array_shift($getclientdblist);
@@ -20,6 +23,7 @@ function clean($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$cleanclients,$c
}
usleep($slowmode);
}
enter_logfile($logpath,$timezone,6,"Get TS3 Clientlist [DONE]");
foreach($clientdblist as $uuidts) {
$single_uuid = $uuidts['client_unique_identifier']->toString();
$uidarrts[$single_uuid]= 1;