What did you do?!?!?
Error: = $idError ?>
'Global', 1 => 'Hacking', 2 => 'Chat Abuse' ); const dataDir = 'data/'; const collapsedMessageCount = 20; // In Java this is "DateTimeFormatter.ISO_LOCAL_DATE_TIME" const jsonDateTimeFormat = 'Y-m-d\TH:i:s'; /** @var mysqli[] $connections */ $connections = array(); // String index = Connection name /** @var User[] $users */ // Account id index $users = array(); /** PARSE DB CONNECTIONS */ $dbConfigFile = new SplFileObject('database-config.dat'); if ($dbConfigFile->isFile()) { while (!$dbConfigFile->eof()) { $line = trim($dbConfigFile->fgets()); if ($line) // check not empty line { $parts = explode(' ', $line); $fullUrl = $parts[1]; $urlParts = explode('/', $fullUrl); $host = $urlParts[0]; $database = $urlParts[1]; $name = $parts[0]; $username = $parts[2]; $password = $parts[3]; $connection = new mysqli($host, $username, $password, $database); if ($connection->connect_error) { die("Connection \"$name\" failed: $connection->connect_error"); } $connections[$name] = $connection; } } } else { die('database-config.dat does not exist or is not a file.'); } /** * @param String $name * @return mysqli */ function getConnection($name) { global $connections; return $connections[$name]; } /** * @param Int $reportId * @return Report */ function getReport($reportId) { $connection = getConnection("ACCOUNT"); $statement = $connection->prepare('SELECT * FROM reports LEFT JOIN reportHandlers ON reports.id = reportHandlers.reportId LEFT JOIN reportResults ON reports.id = reportResults.reportId WHERE reports.id = ?'); try { $statement->bind_param('i', $reportId); $statement->execute(); $result = $statement->get_result(); if ($row = $result->fetch_assoc()) { $suspectUser = getUser($row['suspectId']); $categoryId = $row['categoryId']; $reportReasons = getReporters($reportId); $handlerUser = null; if (isset($row['handlerId'])) { $handlerUser = getUser($row['handlerId']); } return new Report($reportId, $handlerUser, $suspectUser, $reportReasons, $categoryId); } } finally { $statement->close(); } return null; } function getSnapshot($reportId) { /** @var $messages Message[] */ $messages = array(); $connection = getConnection("ACCOUNT"); $statement = $connection->prepare("SELECT id, senderId, snapshotType, `server`, `time`, message FROM reportSnapshots, snapshots WHERE snapshots.id = reportSnapshots.snapshotId AND reportSnapshots.reportId = ?"); try { $statement->bind_param('i', $reportId); $statement->execute(); $statement->bind_result($snapshotId, $senderId, $snapshotType, $server, $time, $message); $statement->store_result(); while ($statement->fetch()) { $recipients = getUsers(getSnapshotRecipients($snapshotId)); $message = new Message(getUser($senderId), $recipients, $time, $snapshotType, $message, $server); array_push($messages, $message); } } finally { $statement->close(); } $snapshotUsers = array(); foreach ($messages as $message) { $sender = $message->getSender(); $snapshotUsers[$sender->getId()] = $sender; foreach ($message->getRecipients() as $recipient) { $snapshotUsers[$recipient->getId()] = $recipient; } } return new Snapshot($reportId, $messages, $snapshotUsers); } /** * @param $snapshotId * @return Integer[] array */ function getSnapshotRecipients($snapshotId) { $recipientIds = array(); $connection = getConnection("ACCOUNT"); $statement = $connection->prepare("SELECT recipientId FROM snapshotRecipients WHERE snapshotId = ?"); try { $statement->bind_param('i', $snapshotId); $statement->execute(); $statement->bind_result($recipientId); while ($statement->fetch()) { array_push($recipientIds, $recipientId); } } finally { $statement->close(); } return $recipientIds; } /** * @param Integer[] $ids * @return User[] array */ function getUsers($ids) { $users = array(); foreach ($ids as $id) { array_push($users, getUser($id)); } return $users; } /** * @param $id * @return User */ function getUser($id) { if (isset($users[$id])) { return $users[$id]; } else { $connection = getConnection("ACCOUNT"); $statement = $connection->prepare('SELECT uuid, `name`, rank FROM accounts WHERE id = ?'); try { $statement->bind_param('i', $id); $statement->execute(); $statement->bind_result($uuid, $name, $rank); $statement->fetch(); $user = new User($id, $uuid, $name, $rank); $users[$id] = $user; return $user; } finally { $statement->close(); } } } /** * @param int $reportId * @return UserReport[] */ function getReporters($reportId) { $connection = getConnection("ACCOUNT"); $statement = $connection->prepare("SELECT reporterId, `time`, reason FROM reportReasons WHERE reportId = ?"); $reportReasons = array(); try { $statement->bind_param('i', $reportId); $statement->execute(); $statement->bind_result($reporterId, $time, $reason); $statement->store_result(); // prevents issues with other queries running before this statement is closed while ($statement->fetch()) { $reportReasons[$reporterId] = new UserReport(getUser($reporterId), new DateTime($time), $reason); } } finally { $statement->close(); } return $reportReasons; } /** * @param Snapshot $snapshot * @param Report $report * @return User[] */ function getInvolvedUsers($snapshot, $report) { $involvedUsers = $snapshot->getPlayers(); $involvedUsers[$report->getSuspect()->getId()] = $report->getSuspect(); /** @var UserReport $reporter */ foreach ($report->getReporters() as $reporterReason) { $reporter = $reporterReason->getUser(); $involvedUsers[$reporter->getId()] = $reporter; } return $involvedUsers; } /** * @param Message $messageA * @param Message $messageB * @return int */ function compareMessageTimes($messageA, $messageB) { return $messageA->getTimestamp()->getTimestamp() - $messageB->getTimestamp()->getTimestamp(); } /** * @param String $dateTime * @param DateTimeZone $timezone * @return DateTime */ function parseDateTime($dateTime, $timezone) { return DateTime::createFromFormat(jsonDateTimeFormat, $dateTime, $timezone); } /** * Converts an interval to minutes, days or months, depending on the size. * * @param DateInterval $interval * @return string */ function approximateHumanInterval($interval) { if ($interval->y > 0) { $humanString = $interval->y . ' year' . ($interval->y != 0 ? 's' : ''); } else if ($interval->m > 0) { $humanString = $interval->m . ' month' . ($interval->m != 0 ? 's' : ''); } else if ($interval->d > 0) { $humanString = $interval->d . ' day' . ($interval->d != 0 ? 's' : ''); } else if ($interval->h > 0) { $humanString = $interval->h . ' hour' . ($interval->h != 0 ? 's' : ''); } else { $humanString = $interval->i . ' minute' . ($interval->i != 0 ? 's' : ''); } return $humanString; } function getExpandedURL() { $vars = $_GET; $vars['expanded'] = true; return '?' . http_build_query($vars); } $validId = isset($_GET['id']); $idError = ""; $id = null; $expanded = null; $report = null; $snapshot = null; if ($validId) { $id = $_GET['id']; $expanded = isset($_GET['expanded']) && $_GET['expanded']; $report = getReport($id); if ($report) { $snapshot = getSnapshot($id); } else { $validId = false; $idError = "Invalid id."; } } ?>
What did you do?!?!?
Error: = $idError ?>
= $user->getUUID() ?>