-
Notifications
You must be signed in to change notification settings - Fork 1
/
users.php
173 lines (166 loc) · 8.62 KB
/
users.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?php
include 'inc/functions.php';
include 'inc/server.php';
require_once "inc/Mobile_Detect.php";
$detect = new Mobile_Detect;
if(isset($_SESSION['UserId'])){
$UserId = $_SESSION['UserId'];
$pdoResult = $PDOdb->prepare("SELECT * FROM WebAddon_Users WHERE Id=:Id LIMIT 1");
$pdoExec = $pdoResult->execute(array(":Id"=>$UserId));
$rowcount = $pdoResult->rowCount();
if($pdoExec){
if($rowcount != 0){
while($row = $pdoResult->fetch(PDO::FETCH_ASSOC)){
$username = $row['Username'];
$Role = $row['Role'];
}
}
}else{
echo '
<div style="background-color: rgba(255,0,0,0.6); position: absolute; top: 0px; left: 0px; bottom:0px; right: 0px; z-index: 5000; cursor: wait;">
<div style="position: absolute;top: 25%; left: 10%;font-size: 50px; width:80%; color: white;">
<p style="text-align: center;">Can`t connect to DataBase<br/>Please check the dbconfig.php file</p>
</div>
</div>';
}
}else{
header('location: ./');
echo '
<script>
location.replace("./");
window.location.href = "./"
</script>
';
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css">
<link rel="stylesheet" href="assets/css/styles.min.css">
<link rel="stylesheet" href="assets/css/styles.min.css">
<title>UltraPunishments - <?php echo $lang->users; ?></title>
<link rel="icon" href="./assets/img/icon.jpg" sizes="16x16">
<meta property="og:title" content="Stats" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="UltraPunishments - Punishments" />
<meta property="og:description" content="View all of Server's Punishments." />
<meta property="og:image" content="./inc/img/upunlogo.jpg"/>
<meta property="og:image:url" content="https://stats.extasynetwork.net"/>
<meta name="theme-color" content="#f77727">
<meta name="msapplication-TileColor" content="#f77727">
</head>
<body>
<?php
if($Role == "admin"){
$newUpdate = CheckForUpdates();
if($newUpdate == true){
echo '
<div class="NewUpdate">
<span><strong>There is a new update available!</strong></span></br>
<span>Go to the settings to download it!</span>
</div>
';
}
}
?>
<div class="LeaveBtnDiv">
<a class="LeaveBtn" href="./inc/logout.php"><i title="<?php echo $lang->signout; ?>" class="fas fa-sign-out-alt"></i></a>
</div>
<div class="row no-gutters justify-content-center bannerrow">
<div class="col-auto"><img class="img-fluid bannerimg" src="assets/img/banner.png"></div>
</div>
<div class="row no-gutters justify-content-center">
<?php
if (!$detect->isMobile() ) {
echo '
<div class="col-1"></div>';
}else{
echo '
<style type="text/css">
.tab{
display: block;
}
</style>
';
}
?>
<div class="col">
<div class="panel">
<h3 class="h3custom">UltraPunishments v<?php echo $version; ?><br></h3><span class="madeby"><?php echo $lang->webaddonby; ?> <a href="https://www.spigotmc.org/members/eazyftw.55966/">EazyFTW</a> & <a href="https://www.spigotmc.org/members/faab007.324536/">Faab007NL</a><br></span>
<div>
<div class="nav">
<ul class="tab tab-block">
<li class="tab-item active" style="border-bottom: solid 1px #e7e9ed;"><a class="link" href="./punishments"><?php echo $lang->punishments; ?></a></li>
<li class="tab-item active" style="border-bottom: solid 1px #e7e9ed;"><a class="link" href="./warnings"><?php echo $lang->warnings; ?></a></li>
<li class="tab-item active" style="border-bottom: solid 1px #f77727;"><a style="color:#f77727;" class="link" href="./users"><?php echo $lang->users; ?></a></li>
<li class="tab-item active" style="border-bottom: solid 1px #e7e9ed;"><a class="link" href="./reports"><?php echo $lang->reports; ?></a></li>
<?php
if($Role == "admin"){
echo '
<li class="tab-item active" style="border-bottom: solid 1px #e7e9ed;"><a class="link" href="./settings">'.$lang->settings.'</a></li>
';
}
?>
</ul>
</div>
<div class="panel-body">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th class="table-header-cell"><?php echo $lang->uuid; ?><br></th>
<th class="table-header-cell"><?php echo $lang->playername; ?></th>
<th class="table-header-cell"><?php echo $lang->ip; ?></th>
<th class="table-header-cell"><?php echo $lang->prevent; ?></th>
<th class="table-header-cell"><?php echo $lang->skull; ?></th>
</tr>
</thead>
<tbody class="table-body">
<?php
$pdoResult = $PDOdb->prepare("SELECT * FROM UltraPunishments_PlayerIndexes ORDER BY UltraPunishments_PlayerIndexes.key DESC");
$pdoExec = $pdoResult->execute();
if($pdoExec){
while($row = $pdoResult->fetch(PDO::FETCH_ASSOC)){
$data = base64_decode($row['value']);
$data = json_decode($data, true);
$prevent = $data['prevent'];
if($prevent == 1){
$prevent = "true";
}else{
$prevent = "false";
}
echo '
<tr>
<td class="table-cell">'.$data['uuid'].'</td>
<td class="table-cell">'.$data['playerName'].'</td>
<td class="table-cell">'.$data['ip'].'</td>
<td class="table-cell">'.$prevent.'</td>
<td class="table-cell"><img src="https://crafatar.com/avatars/'.$data['uuid'].'?overlay&size=50"></td>
</tr>
';
}
}else{
echo 'error Player';
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<?php
if (!$detect->isMobile() ) {
echo '<div class="col-1"></div>';
}
?>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/js/bootstrap.bundle.min.js"></script>
</body>
</html>