]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - index.php
Updates for new style of unrealircd-json-rpc:
[irc/unrealircd/unrealircd-webpanel.git] / index.php
CommitLineData
896b6cdc 1<!DOCTYPE html>
4d834e71 2<title>UnrealIRCd Panel</title>
26971737 3<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
46b1c955 4<link href="css/unrealircd-admin.css" rel="stylesheet">
26971737 5<body class="body-for-sticky">
82f5bcbf 6<div id="headerContainer">
babf1a0e 7<h2><a href="">UnrealIRCd <small>Administration Panel</small></a></h2></div>
709b97f3
VP
8<script src="js/unrealircd-admin.js" defer></script>
9<div class="topnav">
10 <a data-tab-target="#overview" class="active" href="#overview">Overview</a>
11 <a data-tab-target="#Users" href="#Users">Users</a>
12 <a data-tab-target="#Channels" href="#Channels">Channels</a>
13 <a data-tab-target="#TKL" href="#TKL">Server Bans</a>
14 <a data-tab-target="#Spamfilter" href="#Spamfilter">Spamfilter</a>
26971737 15 <a data-tab-target="#News" href="#News">News</a>
709b97f3
VP
16</div>
17<?php
26971737 18define('UPATH', dirname(__FILE__));
03ddd26b
BM
19require_once "config.php";
20require_once UPATH . '/vendor/autoload.php';
21require_once "connection.php";
22require_once "Classes/class-log.php";
23require_once "Classes/class-message.php";
24require_once "Classes/class-rpc.php";
25
26971737 26do_log($_POST);
709b97f3 27
26971737 28if (!empty($_POST)) {
b063b4b2 29 if (!($bantype = $_POST['bantype'])) {
26971737
VP
30
31 } else if (!($users = $_POST["userch"])) {
32 Message::Fail("No user was specified");
33 } else {
34 foreach ($_POST["userch"] as $user) {
35 $user = base64_decode($user);
b063b4b2
VP
36 $bantype = (isset($_POST['bantype'])) ? $_POST['bantype'] : NULL;
37 if (!$bantype)
38 {
39 Message::Fail("An error occured");
40 return;
41 }
42 $banlen_w = (isset($_POST['banlen_w'])) ? $_POST['banlen_w'] : NULL;
43 $banlen_d = (isset($_POST['banlen_d'])) ? $_POST['banlen_d'] : NULL;
44 $banlen_h = (isset($_POST['banlen_h'])) ? $_POST['banlen_h'] : NULL;
45
46 $duration = "";
47 if (!$banlen_d && !$banlen_h && !$banlen_w)
48 $duration .= "0";
49
50 else
51 {
52 if ($banlen_w)
53 $duration .= $banlen_w;
54 if ($banlen_d)
55 $duration .= $banlen_d;
56 if ($banlen_h)
57 $duration .= $banlen_h;
58 }
59
0d0013bb 60 $nick = $rpc->user()->get($user);
b063b4b2
VP
61 if (!$nick)
62 {
63 Message::Fail("Could not find that user. Maybe they disconnected after you clicked this?");
64 return;
65 }
66
ffd01497 67 $msg_msg = ($duration == "0" || $duration == "0w0d0h") ? "permanently" : "for ".rpc_convert_duration_string($duration);
b3898fc7 68 $reason = (isset($_POST['ban_reason'])) ? $_POST['ban_reason'] : "No reason";
0d0013bb 69 if ($rpc->serverban()->add($user, $bantype, $duration, $reason))
b063b4b2 70 {
0d0013bb
BM
71 $c = $nick->client;
72 Message::Success($c->name . " (*@".$c->hostname.") has been $bantype" . "d $msg_msg: $reason");
b063b4b2 73 }
76200e36
VP
74 }
75 }
76
26971737
VP
77 if (!empty($_POST['tklch']))
78 foreach ($_POST as $key => $value) {
79 foreach ($value as $tok) {
80 $tok = explode(",", $tok);
17311eb0
BM
81 $ban = base64_decode($tok[0]);
82 $type = base64_decode($tok[1]);
83 if ($rpc->serverban()->delete($ban, $type))
84 Message::Success("$type has been removed for $ban");
85 else
86 Message::Fail("Unable to remove $type on $ban: $rpc->error");
26971737
VP
87 }
88 }
89
90 if (!empty($_POST['sf']))
91 foreach ($_POST as $key => $value) {
92 foreach ($value as $tok) {
93 $tok = explode(",", $tok);
17311eb0
BM
94 $name = base64_decode($tok[0]);
95 $match_type = base64_decode($tok[1]);
96 $spamfilter_targets = base64_decode($tok[2]);
97 $ban_action = base64_decode($tok[3]);
98 if ($rpc->spamfilter()->delete($name, $match_type, $spamfilter_targets, $ban_action))
99 Message::Success("Spamfilter on $name has been removed");
100 else
101 Message::Fail("Unable to remove spamfilter on $name: $rpc->error");
26971737
VP
102 }
103 }
104}
105
b063b4b2 106rpc_pop_lists();
709b97f3 107?>
82f5bcbf
VP
108
109<div class="tab-content\">
110<div id="overview" data-tab-content class="active">
896b6cdc
VP
111 <table class='unrealircd_overview'>
112 <th>Chat Overview</th><th></th>
113 <tr><td><b>Users</b></td><td><?php echo count(RPC_List::$user); ?></td></tr>
114 <tr><td><b>Opers</b></td><td><?php echo RPC_List::$opercount; ?></td></tr>
115 <tr><td><b>Services</b></td><td><?php echo RPC_List::$services_count; ?></td></tr>
116 <tr><td><b>Most popular channel</b></td><td><?php echo RPC_List::$most_populated_channel; ?> (<?php echo RPC_List::$channel_pop_count; ?> users)</td></tr>
117 <tr><td><b>Channels</b></td><td><?php echo count(RPC_List::$channel); ?></td></tr>
118 <tr><td><b>Server bans</b></td><td><?php echo count(RPC_List::$tkl); ?></td></tr>
119 <tr><td><b>Spamfilter entries</b></td><td><?php echo count(RPC_List::$spamfilter); ?></td></tr></th>
120 </table></div></div>
b3898fc7 121
ef866d8c
VP
122 <div class="tab-content\">
123 <div id="Users" data-tab-content>
4d834e71
VP
124 <table class='users_filter'>
125 <th class="thuf">Filter by: </th>
126 <th>
127 <form action="" method="post">
128 Nick: <input name="uf_nick" id="uf_nick" type="text">
129 <input class="cute_button2" type="submit" value="Search">
130 </form>
131 </th>
132 <th>
133 <form action="" method="post">
134 Hostname: <input name="uf_host" id="uf_host" type="text">
135 <input class="cute_button2" type="submit" value="Search">
136 </form>
137 </th>
138 <th>
139 <form action="" method="post">
140 IP: <input name="uf_ip" id="uf_ip" type="text">
141 <input class="cute_button2" type="submit" value="Search">
142 </form>
143 </th>
144 <th class="thuffer">
babf1a0e 145 <form action="" method="post">
4d834e71
VP
146 Account: <input name="uf_account" id="uf_account" type="text">
147 <input class="cute_button2" type="submit" value="Search">
148 </form>
149 </th>
150 </form>
151 </table>
152 <?php
babf1a0e
VP
153 if (isset($_POST['uf_nick']) && strlen($_POST['uf_nick']))
154 Message::Info("Listing users which match nick: \"" . $_POST['uf_nick'] . "\"");
155
156 if (isset($_POST['uf_ip']) && strlen($_POST['uf_ip']))
f63cfca8 157 Message::Info("Listing users which match IP: \"" . $_POST['uf_ip'] . "\"");
babf1a0e
VP
158
159 if (isset($_POST['uf_host']) && strlen($_POST['uf_host']))
160 Message::Info("Listing users which match hostmask: \"" . $_POST['uf_host'] . "\"");
161
162 if (isset($_POST['uf_account']) && strlen($_POST['uf_account']))
163 Message::Info("Listing users which match account: \"" . $_POST['uf_account'] . "\"");
164
4d834e71 165 ?>
896b6cdc 166 <table class='users_overview'>
26971737 167 <th><input type="checkbox" label='selectall' onClick="toggle_user(this)" />Select all</th>
896b6cdc
VP
168 <th>Nick</th>
169 <th>UID</th>
ef866d8c 170 <th>Host / IP</th>
896b6cdc 171 <th>Account</th>
02c4da66 172 <th>Usermodes<a href="https://www.unrealircd.org/docs/User_modes" target="_blank">ℹ️</a></th>
896b6cdc
VP
173 <th>Oper</th>
174 <th>Secure</th>
175 <th>Connected to</th>
02c4da66 176 <th>Reputation <a href="https://www.unrealircd.org/docs/Reputation_score" target="_blank">ℹ️</a></th>
896b6cdc 177
b3898fc7 178 <form action="" method="post">
896b6cdc
VP
179 <?php
180 foreach(RPC_List::$user as $user)
181 {
4d834e71 182
babf1a0e 183 /* Some basic filtering for NICK */
4d834e71 184 if (isset($_POST['uf_nick']) && strlen($_POST['uf_nick']) &&
03ddd26b
BM
185 strpos(strtolower($user->name), strtolower($_POST['uf_nick'])) !== 0 &&
186 strpos(strtolower($user->name), strtolower($_POST['uf_nick'])) == false)
4d834e71
VP
187 continue;
188
babf1a0e
VP
189 /* Some basic filtering for HOST */
190 if (isset($_POST['uf_host']) && strlen($_POST['uf_host']) &&
03ddd26b
BM
191 strpos(strtolower($user->hostname), strtolower($_POST['uf_host'])) !== 0 &&
192 strpos(strtolower($user->hostname), strtolower($_POST['uf_host'])) == false)
babf1a0e
VP
193 continue;
194
195 /* Some basic filtering for IP */
196 if (isset($_POST['uf_ip']) && strlen($_POST['uf_ip']) &&
03ddd26b
BM
197 strpos(strtolower($user->ip), strtolower($_POST['uf_ip'])) !== 0 &&
198 strpos(strtolower($user->ip), strtolower($_POST['uf_ip'])) == false)
babf1a0e
VP
199 continue;
200
201 /* Some basic filtering for ACCOUNT */
202 if (isset($_POST['uf_account']) && strlen($_POST['uf_account']) &&
03ddd26b
BM
203 strpos(strtolower($user->user->account), strtolower($_POST['uf_account'])) !== 0 &&
204 strpos(strtolower($user->user->account), strtolower($_POST['uf_account'])) == false)
babf1a0e
VP
205 continue;
206
896b6cdc 207 echo "<tr>";
03ddd26b
BM
208 echo "<td><input type=\"checkbox\" value='" . base64_encode($user->id)."' name=\"userch[]\"></td>";
209 $isBot = (strpos($user->user->modes, "B") !== false) ? ' <span class="label">Bot</span>' : "";
210 echo "<td>".$user->name.$isBot.'</td>';
211 echo "<td>".$user->id."</td>";
212 echo "<td>".$user->hostname." (".$user->ip.")</td>";
213 $account = (isset($user->user->account)) ? '<span class="label">'.$user->user->account.'</span>' : '<span class="label noaccount">None</span>';
896b6cdc 214 echo "<td>".$account."</td>";
03ddd26b 215 $modes = (isset($user->user->modes)) ? "+" . $user->user->modes : "<none>";
896b6cdc 216 echo "<td>".$modes."</td>";
03ddd26b 217 $oper = (isset($user->user->operlogin)) ? '<span class="label">'.$user->user->operlogin."</span> <span class=\"label operclass-label\">".$user->user->operclass."</span>" : "";
2494eefd 218 if (!strlen($oper))
03ddd26b 219 $oper = (strpos($user->user->modes, "S") !== false) ? '<span class="label secure-connection">Service</span>' : "";
896b6cdc 220 echo "<td>".$oper."</td>";
03ddd26b 221 $secure = (isset($user->tls)) ? "<span class=\"label secure-connection\">Secure</span>" : "<span class=\"label noaccount\">Insecure</span>";
896b6cdc 222 echo "<td>".$secure."</td>";
03ddd26b
BM
223 echo "<td>".$user->user->servername."</td>";
224 echo "<td>".$user->user->reputation."</td>";
896b6cdc 225 }
26971737 226 ?></table>
1d7e7ff8 227 <label for="bantype">Apply action: </label><br>
26971737
VP
228 <select name="bantype" id="bantype">
229 <option value=""></option>
230 <optgroup label="Bans">
231 <option value="gline">GLine</option>
232 <option value="gzline">GZLine</option>
233 </optgroup>
234 </select>
235 <br>
1d7e7ff8 236 <label for="banlen_w">Duration: </label><br>
26971737
VP
237 <select name="banlen_w" id="banlen_w">
238 <?php
239 for ($i = 0; $i <= 56; $i++)
240 {
241 if (!$i)
242 echo "<option value=\"0w\"></option>";
243 else
244 {
245 $w = ($i == 1) ? "week" : "weeks";
246 echo "<option value=\"$i" . "w\">$i $w" . "</option>";
247 }
248 }
249 ?>
250 </select>
251 <select name="banlen_d" id="banlen_d">
252 <?php
253 for ($i = 0; $i <= 31; $i++)
254 {
255 if (!$i)
256 echo "<option value=\"0d\"></option>";
257 else
258 {
259 $d = ($i == 1) ? "day" : "days";
260 echo "<option value=\"$i" . "d\">$i $d" . "</option>";
261 }
262 }
263 ?>
264 </select>
265 <select name="banlen_h" id="banlen_h">
266 <?php
267 for ($i = 0; $i <= 24; $i++)
268 {
269 if (!$i)
270 echo "<option value=\"0d\"></option>";
271 else
272 {
273 $h = ($i == 1) ? "hour" : "hours";
274 echo "<option value=\"$i" . "h\">$i $h" . "</option>";
275 }
276 }
277 ?>
278 </select>
1d7e7ff8
VP
279 <br><label for="ban_reason">Reason:<br></label>
280 <textarea name="ban_reason" id="ban_reason">No reason</textarea><br>
281 <input class="cute_button" type="submit" value="Apply">
26971737
VP
282 </form>
283
284 </div></div>
82f5bcbf 285
ef866d8c
VP
286 <div class="tab-content\">
287 <div id="Channels" data-tab-content>
288 <p></p>
289 <table class='users_overview'>
290 <th>Name</th>
291 <th>Created</th>
292 <th>User count</th>
293 <th>Topic</th>
294 <th>Topic Set</th>
295 <th>Modes</th>
296
297 <?php
298 foreach(RPC_List::$channel as $channel)
299 {
300 echo "<tr>";
03ddd26b
BM
301 echo "<td>".$channel->name."</td>";
302 echo "<td>".$channel->creation_time."</td>";
303 echo "<td>".$channel->num_users."</td>";
304 $topic = (isset($channel->topic)) ? $channel->topic : "";
ef866d8c 305 echo "<td>".$topic."</td>";
03ddd26b 306 $setby = (isset($channel->topic)) ? "By ".$channel->topic_set_by .", at ".$channel->topic_set_at : "";
ef866d8c 307 echo "<td>".$setby."</td>";
03ddd26b 308 $modes = (isset($channel->modes)) ? "+" . $channel->modes : "<none>";
ef866d8c
VP
309 echo "<td>".$modes."</td>";
310 }
311 ?></table></div></div>
312
313
314 <div class="tab-content\">
315 <div id="TKL" data-tab-content>
76200e36 316
ef866d8c 317 <table class='users_overview'>
76200e36 318 <form action="" method="post">
26971737 319 <th><input type="checkbox" label='selectall' onClick="toggle_tkl(this)" />Select all</th>
ef866d8c
VP
320 <th>Mask</th>
321 <th>Type</th>
322 <th>Set By</th>
323 <th>Set On</th>
324 <th>Expires</th>
325 <th>Duration</th>
326 <th>Reason</th>
327
328 <?php
329 foreach(RPC_List::$tkl as $tkl)
330 {
331 echo "<tr>";
03ddd26b
BM
332 echo "<td><input type=\"checkbox\" value='" . base64_encode($tkl->name).",".base64_encode($tkl->type) . "' name=\"tklch[]\"></td>";
333 echo "<td>".$tkl->name."</td>";
334 echo "<td>".$tkl->type_string."</td>";
335 echo "<td>".$tkl->set_by."</td>";
336 echo "<td>".$tkl->set_at_string."</td>";
337 echo "<td>".$tkl->expire_at_string."</td>";
338 echo "<td>".$tkl->duration_string."</td>";
339 echo "<td>".$tkl->reason."</td>";
ef866d8c 340 }
76200e36 341 ?></table><p><input class="cute_button" type="submit" value="Delete selected"></p></form></div></div>
ef866d8c
VP
342
343
344 <div class="tab-content\">
345 <div id="Spamfilter" data-tab-content>
346 <p></p>
347 <table class='users_overview'>
26971737
VP
348 <form action="" method="post">
349 <th><input type="checkbox" label='selectall' onClick="toggle_sf(this)" />Select all</th>
ef866d8c
VP
350 <th>Mask</th>
351 <th>Type</th>
352 <th>Set By</th>
353 <th>Set On</th>
354 <th>Expires</th>
355 <th>Duration</th>
356 <th>Match Type</th>
357 <th>Action</th>
358 <th>Action Duration</th>
359 <th>Target</th>
360 <th>Reason</th>
361
362 <?php
363 foreach(RPC_List::$spamfilter as $sf)
364 {
365 echo "<tr>";
03ddd26b
BM
366 echo "<td><input type=\"checkbox\" value='" . base64_encode($sf->name).",".base64_encode($sf->match_type).",".base64_encode($sf->spamfilter_targets).",".base64_encode($sf->ban_action) . "' name=\"sf[]\"></td>";
367 echo "<td>".$sf->name."</td>";
368 echo "<td>".$sf->type_string."</td>";
369 echo "<td>".$sf->set_by."</td>";
370 echo "<td>".$sf->set_at_string."</td>";
371 echo "<td>".$sf->expire_at_string."</td>";
372 echo "<td>".$sf->duration_string."</td>";
373 echo "<td>".$sf->match_type."</td>";
374 echo "<td>".$sf->ban_action."</td>";
375 echo "<td>".$sf->ban_duration_string."</td>";
376 for ($i = 0, $targs = ""; $i < strlen($sf->spamfilter_targets); $i++)
ef866d8c 377 {
03ddd26b 378 $c = $sf->spamfilter_targets[$i];
ef866d8c
VP
379 if ($c == "c")
380 $targs .= "Channel, ";
381 else if ($c == "p")
382 $targs .= "Private,";
383 else if ($c == "n")
384 $targs .= "Notice, ";
385 else if ($c == "N")
386 $targs .= "Channel notice, ";
387 else if ($c == "P")
388 $targs .= "Part message, ";
389 else if ($c == "q")
390 $targs .= "Quit message, ";
391 else if ($c == "d")
392 $targs .= "DCC filename, ";
393 else if ($c == "a")
394 $targs .= "Away message, ";
395 else if ($c == "t")
396 $targs .= "Channel topic, ";
397 else if ($c == "T")
398 $targs .= "MessageTag, ";
399 else if ($c == "u")
400 $targs .= "Usermask, ";
ef866d8c 401 }
03ddd26b 402 $targs = rtrim($targs,", ");
ef866d8c 403 echo "<td>".$targs."</td>";
03ddd26b 404 echo "<td>".$sf->reason."</td>";
ef866d8c
VP
405
406 }
26971737
VP
407 ?></table><p><input class="cute_button" type="submit" value="Delete selected"></p></form></div></div>
408
409
410
411 <div class="tab-content\">
412 <div id="News" data-tab-content>
413 <iframe style="border:none;" height="1000" width="600" data-tweet-url="https://twitter.com/Unreal_IRCd" src="data:text/html;charset=utf-8,%3Ca%20class%3D%22twitter-timeline%22%20href%3D%22https%3A//twitter.com/Unreal_IRCd%3Fref_src%3Dtwsrc%255Etfw%22%3ETweets%20by%20Unreal_IRCd%3C/a%3E%0A%3Cscript%20async%20src%3D%22https%3A//platform.twitter.com/widgets.js%22%20charset%3D%22utf-8%22%3E%3C/script%3E%0A%3Cstyle%3Ehtml%7Boverflow%3Ahidden%20%21important%3B%7D%3C/style%3E"></iframe>
414 <iframe style="border:none;" height="1000" width="600" data-tweet-url="https://twitter.com/irc_stats" src="data:text/html;charset=utf-8,%3Ca%20class%3D%22twitter-timeline%22%20href%3D%22https%3A//twitter.com/irc_stats%3Fref_src%3Dtwsrc%255Etfw%22%3ETweets%20by%20IRC%20Stats%3C/a%3E%0A%3Cscript%20async%20src%3D%22https%3A//platform.twitter.com/widgets.js%22%20charset%3D%22utf-8%22%3E%3C/script%3E%0A%3Cstyle%3Ehtml%7Boverflow%3Ahidden%20%21important%3B%7D%3C/style%3E"></iframe>
415 </div></div>
ef866d8c 416
896b6cdc 417</body>