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