config('domain')) : new LoginRequiredMiddleware($app, $app->config('domain'))); } public function get(): void { $table = ''; $showAll = isset($_GET['SHOWALL']) && $_GET['SHOWALL'] == "1"; $statement = $this->app->db()->prepare("SELECT uuid,regionName,owner_uuid,locX,locY FROM regions ".($showAll ? "ORDER BY owner_uuid ASC" : "WHERE owner_uuid = ? ORDER BY uuid ASC")); $statement->execute($showAll ? array() : array($_SESSION['UUID'])); $opensim = new OpenSim($this->app->db()); $csrf = $this->app->csrfField(); while ($row = $statement->fetch()) { $stats = $this->getRegionStatsData($row['uuid']); $table = $table.''; } $this->app->template('__dashboard.php')->vars([ 'title' => isset($_GET["SHOWALL"]) ? 'Regionen verwalten' : 'Deine Regionen', 'username' => $_SESSION['DISPLAYNAME'] ])->unsafeVar('child-content', $table.'
Region NameEigentümerPositionAktionen
'.htmlspecialchars($row['regionName']).''.htmlspecialchars($opensim->getUserName($row['owner_uuid'])).''.Util::fillString(($row['locX'] / 256), 4).' / '.Util::fillString(($row['locY'] / 256), 4).'
'.$csrf.'
')->render(); } public function post(): void { $validator = new FormValidator(array( 'remove' => array('required' => true), 'region' => array('required' => true, 'regex' => '/^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$/') )); if ($validator->isValid($_POST)) { if (isset($_GET['SHOWALL'])) { $statementMembership = $this->app->db()->prepare("DELETE FROM regions WHERE uuid = ?"); $statementMembership->execute(array($_POST['region'])); } else { $statementMembership = $this->app->db()->prepare("DELETE FROM regions WHERE uuid = ? AND owner_uuid = ?"); $statementMembership->execute(array($_POST['region'], $_SESSION['UUID'])); } } header('Location: index.php?page=regions'); } private function cleanSize($bytes) { if ($bytes > 0) { $unit = intval(log($bytes, 1024)); $units = array('B', 'KB', 'MB', 'GB'); if (array_key_exists($unit, $units) === true) { return sprintf('%d %s', $bytes / pow(1024, $unit), $units[$unit]); } } return $bytes; } private function getRegionStatsData($regionID) { $statement = $this->app->db()->prepare("SELECT Prims,SimFPS,PhyFPS,ProcMem,RegionVersion FROM regions_info WHERE regionID = ?"); $statement->execute([$regionID]); if ($row = $statement->fetch()) { $return = array(); $return['Prims'] = $row['Prims']; $return['SimFPS'] = $row['SimFPS']; $return['PhyFPS'] = $row['PhyFPS']; $return['ProcMem'] = $this->cleanSize(str_replace(".", "", str_replace(",", ".", $row['ProcMem']))."000"); $return['RegionVersion'] = trim($row['RegionVersion']); return $return; } return array(); } }