34 lines
2.0 KiB
PHP
34 lines
2.0 KiB
PHP
<?php
|
|
$createStatement = $RUNTIME['PDO']->prepare("CREATE TABLE IF NOT EXISTS `regions_info` (`regionID` VARCHAR(36) NOT NULL COLLATE 'utf8_unicode_ci', `RegionVersion` VARCHAR(128) NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci', `ProcMem` INT(11) NOT NULL, `Prims` INT(11) NOT NULL, `SimFPS` INT(11) NOT NULL, `PhyFPS` INT(11) NOT NULL, PRIMARY KEY (`regionID`) USING BTREE) COLLATE='utf8_unicode_ci' ENGINE=InnoDB;");
|
|
$createStatement->execute();
|
|
|
|
$statement = $RUNTIME['PDO']->prepare("SELECT * FROM regions");
|
|
$statement->execute();
|
|
|
|
ini_set('default_socket_timeout', 3);
|
|
|
|
$ctx = stream_context_create(array('http'=>
|
|
array(
|
|
'timeout' => 3,
|
|
)
|
|
));
|
|
|
|
while($row = $statement->fetch())
|
|
{
|
|
$result = @file_get_contents($row['serverURI']."jsonSimStats", false, $ctx);
|
|
|
|
if($result == FALSE || $result == "")
|
|
{
|
|
sendInworldIM("00000000-0000-0000-0000-000000000000", $row['owner_uuid'], "Inventory", $RUNTIME['GRID']['HOMEURL'], "WARNUNG: Deine Region '".$row['regionName']."' ist nicht erreichbar und wurde deshalb aus dem Grid entfernt.");
|
|
echo "Die Region ".$row['regionName']." von ".$RUNTIME['OPENSIM']->getUserName($row['owner_uuid'])." ist nicht erreichbar.\n";
|
|
|
|
$statementUpdate = $RUNTIME['PDO']->prepare('DELETE FROM regions WHERE uuid = :uuid');
|
|
$statementUpdate->execute(['uuid' => $row['uuid']]);
|
|
}else{
|
|
$regionData = json_decode($result);
|
|
|
|
$statementAccounts = $RUNTIME['PDO']->prepare('REPLACE INTO `regions_info` (`regionID`, `RegionVersion`, `ProcMem`, `Prims`, `SimFPS`, `PhyFPS`) VALUES (:regionID, :RegionVersion, :ProcMem, :Prims, :SimFPS, :PhyFPS)');
|
|
$statementAccounts->execute(['regionID' => $row['uuid'], 'RegionVersion' => $regionData->Version, 'ProcMem' => $regionData->ProcMem, 'Prims' => $regionData->Prims, 'SimFPS' => $regionData->SimFPS, 'PhyFPS' => $regionData->PhyFPS]);
|
|
}
|
|
}
|
|
?>
|