mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-05-23 16:32:45 +00:00
280 lines
9.3 KiB
PHP
280 lines
9.3 KiB
PHP
<?php
|
|
namespace litebans;
|
|
|
|
use PDO;
|
|
use PDOException;
|
|
|
|
class Page {
|
|
public function __construct($name, $header = true) {
|
|
if ($header) {
|
|
require_once './includes/head.php';
|
|
require_once './includes/header.php';
|
|
}
|
|
require_once './includes/settings.php';
|
|
$settings = new Settings();
|
|
$this->conn = $settings->conn;
|
|
$this->settings = $settings;
|
|
$this->uuid_name_cache = array();
|
|
$this->time = microtime(true);
|
|
$this->page = 1;
|
|
if (isset($_GET['page'])) {
|
|
$page = $_GET['page']; // user input
|
|
if (filter_var($page, FILTER_VALIDATE_INT)) {
|
|
$this->page = (int)$page;
|
|
}
|
|
}
|
|
$this->name = $name;
|
|
switch ($name) {
|
|
case "ban":
|
|
case "bans":
|
|
$this->type = "ban";
|
|
$this->table = $settings->table['bans'];
|
|
break;
|
|
case "mute":
|
|
case "mutes":
|
|
$this->type = "mute";
|
|
$this->table = $settings->table['mutes'];
|
|
break;
|
|
case "warn":
|
|
case "warnings":
|
|
$this->type = "warn";
|
|
$this->table = $settings->table['warnings'];
|
|
break;
|
|
case "kick":
|
|
case "kicks":
|
|
$this->type = "kick";
|
|
$this->table = $settings->table['kicks'];
|
|
break;
|
|
}
|
|
$this->permanent = array(
|
|
'ban' => 'Permanent Ban',
|
|
'mute' => 'Permanent Mute',
|
|
'warn' => 'Permanent',
|
|
'kick' => null,
|
|
);
|
|
$this->expired = array(
|
|
'ban' => '(Unbanned)',
|
|
'mute' => '(Unmuted)',
|
|
'warn' => '(Expired)',
|
|
'kick' => null,
|
|
);
|
|
}
|
|
|
|
function run_query() {
|
|
try {
|
|
$table = $this->table;
|
|
$active_query = $this->settings->active_query;
|
|
$limit = $this->settings->limit_per_page;
|
|
|
|
$offset = 0;
|
|
if ($this->settings->show_pager) {
|
|
$page = $this->page - 1;
|
|
$offset = ($limit * $page);
|
|
}
|
|
$query = "SELECT * FROM $table $active_query GROUP BY $table.id ORDER BY time DESC LIMIT :limit OFFSET :offset";
|
|
$st = $this->conn->prepare($query);
|
|
|
|
$st->bindParam(':offset', $offset, PDO::PARAM_INT);
|
|
$st->bindParam(':limit', $limit, PDO::PARAM_INT);
|
|
|
|
$st->execute();
|
|
|
|
return $st;
|
|
} catch (PDOException $ex) {
|
|
die($ex->getMessage());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns an <img> tag representing the Minecraft avatar for a specific name.
|
|
* @param string
|
|
* @return string
|
|
*/
|
|
function get_avatar($name) {
|
|
return "<img class='avatar noselect' src='https://cravatar.eu/avatar/$name/25'/>$name";
|
|
}
|
|
|
|
/**
|
|
* Returns the last name for a UUID, or null if their name is not recorded in the database.
|
|
* @param string
|
|
* @return null|string
|
|
*/
|
|
function get_name($uuid) {
|
|
if (array_key_exists($uuid, $this->uuid_name_cache)) return $this->uuid_name_cache[$uuid];
|
|
$history = $this->settings->table['history'];
|
|
$stmt = $this->conn->prepare("SELECT name FROM $history WHERE uuid=? ORDER BY date DESC LIMIT 1");
|
|
if ($stmt->execute(array($uuid)) && $row = $stmt->fetch()) {
|
|
$banner = $row['name'];
|
|
$this->uuid_name_cache[$uuid] = $banner;
|
|
return $banner;
|
|
}
|
|
$this->uuid_name_cache[$uuid] = null;
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Returns the banner name for a specific row in the database
|
|
* using their UUID->name if possible, otherwise returns their last recorded name.
|
|
* @param row
|
|
* @return string
|
|
*/
|
|
function get_banner_name($row) {
|
|
$uuid = $row['banned_by_uuid'];
|
|
$name = $this->get_name($uuid);
|
|
if ($name !== null) {
|
|
return $name;
|
|
}
|
|
$name = $row['banned_by_name'];
|
|
return $this->clean($name);
|
|
}
|
|
|
|
/**
|
|
* Converts a timestamp (in milliseconds) to a date using the configured date format.
|
|
* @param int
|
|
* @return string
|
|
*/
|
|
function millis_to_date($millis) {
|
|
return date($this->settings->date_format, $millis / 1000);
|
|
}
|
|
|
|
/**
|
|
* Prepares text to be displayed on the web interface.
|
|
* Removes chat colours, replaces newlines with proper HTML, and sanitizes the text.
|
|
* @param string
|
|
* @return string
|
|
*/
|
|
function clean($text) {
|
|
if (strstr($text, "\xa7") || strstr($text, "&")) {
|
|
$text = preg_replace("/(?i)(\xa7|&)[0-9A-FK-OR]/", "", $text);
|
|
}
|
|
$text = htmlspecialchars($text, ENT_QUOTES, "UTF-8");
|
|
if (strstr($text, "\n")) {
|
|
$text = preg_replace("/\n/", "<br>", $text);
|
|
}
|
|
return $text;
|
|
}
|
|
|
|
/**
|
|
* Returns a string that shows the expiry date of a punishment.
|
|
* If the punishment does not expire, it will be shown as permanent.
|
|
* If the punishment has already expired, it will show as expired.
|
|
* @param row
|
|
* @return string
|
|
*/
|
|
public function expiry($row) {
|
|
if ($row['until'] <= 0) {
|
|
return $this->permanent[$this->type];
|
|
}
|
|
$until = $this->millis_to_date($row['until']);
|
|
if ($this->settings->show_inactive_bans && !$row['active']) {
|
|
$until .= ' ' . $this->expired[$this->type];
|
|
}
|
|
return $until;
|
|
}
|
|
|
|
function title() {
|
|
return ucfirst($this->name);
|
|
}
|
|
|
|
function print_title() {
|
|
$title = $this->title();
|
|
$name = $this->settings->name;
|
|
echo "<title>$title - $name</title>";
|
|
}
|
|
|
|
function print_table_rows($row, $array) {
|
|
$id = $row['id'];
|
|
$type = $this->type;
|
|
echo "<tr>";
|
|
foreach ($array as $header => $text) {
|
|
$style = "";
|
|
if ($header === "Reason") {
|
|
$style = "style=\"width: 30%;\"";
|
|
}
|
|
echo "<td $style><a style=\"color: #fcfcfc;\" href=\"info.php?type=$type&id=$id\">$text</a></td>";
|
|
}
|
|
echo "</tr>";
|
|
}
|
|
|
|
function print_page_header() {
|
|
$title = $this->title();
|
|
//$type = ($title === "Bans") ? "modal-header" : "navbar-header";
|
|
$type = "modal-header";
|
|
echo("
|
|
<div class=\"row\">
|
|
<div style=\"text-align: center;\" class=\"col-lg-12\">
|
|
<h1 class=\"$type\">$title</h1>
|
|
</div>
|
|
</div>
|
|
");
|
|
}
|
|
|
|
function table_print_headers($headers) {
|
|
echo("<thead><tr>");
|
|
foreach ($headers as $header) {
|
|
echo "<th><div style=\"text-align: center;\">$header</div></th>";
|
|
}
|
|
echo("<tbody>");
|
|
}
|
|
|
|
function print_check_form() {
|
|
$table = $this->name;
|
|
echo('
|
|
<div style="text-align: left;" class="row">
|
|
<div style="margin-left: 15px;">
|
|
<form onsubmit="captureForm(event);" class="form-inline"><div class="form-group"><input type="text" class="form-control" id="user" placeholder="Player"></div><button type="submit" class="btn btn-default" style="margin-left: 5px;">Check</button></form>
|
|
</div>
|
|
<script type="text/javascript">function captureForm(b){o=$("#output");o.removeClass("in");x=setTimeout(function(){o.html("<br>")}, 150);$.ajax({type:"POST",url:"check.php",data:{name:$("#user").val(),table:"' . $table . '"}}).done(function(c){clearTimeout(x);o.html(c);o.addClass("in")});b.preventDefault();return false};</script>
|
|
<div id="output" class="success fade" data-alert="alert" style="margin-left: 15px;"><br></div>
|
|
</div>
|
|
');
|
|
}
|
|
|
|
function print_pager() {
|
|
$table = $this->table;
|
|
$page = $this->name . ".php";
|
|
|
|
if (!$this->settings->show_pager) return;
|
|
$result = $this->conn->query("SELECT COUNT(*) AS count FROM $table")->fetch(PDO::FETCH_ASSOC);
|
|
$total = $result['count'];
|
|
|
|
$pages = (int)($total / $this->settings->limit_per_page) + 1;
|
|
|
|
$cur = $this->page;
|
|
$prev = $cur - 1;
|
|
$next = $this->page + 1;
|
|
|
|
$prev_active = ($cur > 1);
|
|
$next_active = ($cur < $pages);
|
|
|
|
$prev_class = $prev_active ? "pager-active" : "pager-inactive";
|
|
$next_class = $next_active ? "pager-active" : "pager-inactive";
|
|
|
|
$pager_prev = "<div class=\"$prev_class\" style=\"float:left; font-size:30px;\">«</div>";
|
|
if ($cur > 1) {
|
|
$pager_prev = "<a href=\"$page?page=$prev\">$pager_prev</a>";
|
|
}
|
|
|
|
$pager_next = "<div class=\"$next_class\" style=\"float: right; font-size:30px;\">»</div>";
|
|
if ($cur < $pages) {
|
|
$pager_next = "<a href=\"$page?page=$next\">$pager_next</a>";
|
|
}
|
|
$pager_count = "<div style=\"margin-top: 32px;\"><div style=\"text-align: center; font-size:15px;\">Page $cur/$pages</div></div>";
|
|
echo "$pager_prev $pager_next $pager_count";
|
|
}
|
|
|
|
function print_footer() {
|
|
include './includes/footer.php';
|
|
$time = microtime(true) - $this->time;
|
|
echo "<!-- Page generated in $time seconds. -->";
|
|
}
|
|
|
|
public function table_begin() {
|
|
echo '<table class="table table-striped table-bordered table-condensed">';
|
|
}
|
|
|
|
public function table_end() {
|
|
echo '</table>';
|
|
}
|
|
}
|