]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blob - index.php
Make things look prettier
[irc/unrealircd/unrealircd-webpanel.git] / index.php
1 <!DOCTYPE html>
2 <link rel="icon" type="image/x-icon" href="/img/favicon.ico">
3 <link href="css/unrealircd-admin.css" rel="stylesheet">
4 <body class="body-for-sticky">
5 <div id="headerContainer">
6 <h2><a href="">UnrealIRCd</a> <small>Administration Panel</small></h2><br>
7 </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) ? "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 <p></p>
115 <table class='users_overview'>
116 <th><input type="checkbox" label='selectall' onClick="toggle_user(this)" />Select all</th>
117 <th>Nick</th>
118 <th>UID</th>
119 <th>Host / IP</th>
120 <th>Account</th>
121 <th>Usermodes</th>
122 <th>Oper</th>
123 <th>Secure</th>
124 <th>Connected to</th>
125 <th>Reputation <a href="https://www.unrealircd.org/docs/Reputation_score">ℹī¸</a></th>
126
127 <form action="" method="post">
128 <?php
129 foreach(RPC_List::$user as $user)
130 {
131 echo "<tr>";
132 echo "<td><input type=\"checkbox\" value='" . base64_encode($user['id'])."' name=\"userch[]\"></td>";
133 echo "<td>".$user['name']."</td>";
134 echo "<td>".$user['id']."</td>";
135 echo "<td>".$user['hostname']." (".$user['ip'].")</td>";
136 $account = (isset($user['user']['account'])) ? $user['user']['account'] : "";
137 echo "<td>".$account."</td>";
138 $modes = (isset($user['user']['modes'])) ? "+" . $user['user']['modes'] : "<none>";
139 echo "<td>".$modes."</td>";
140 $oper = (isset($user['user']['operlogin'])) ? $user['user']['operlogin']." (".$user['user']['operclass'].")" : "";
141 echo "<td>".$oper."</td>";
142 $secure = (isset($user['tls'])) ? "✅" : "❌";
143 echo "<td>".$secure."</td>";
144 echo "<td>".$user['user']['servername']."</td>";
145 echo "<td>".$user['user']['reputation']."</td>";
146 }
147 ?></table>
148 <label for="bantype">Apply action: </label><br>
149 <select name="bantype" id="bantype">
150 <option value=""></option>
151 <optgroup label="Bans">
152 <option value="gline">GLine</option>
153 <option value="gzline">GZLine</option>
154 </optgroup>
155 </select>
156 <br>
157 <label for="banlen_w">Duration: </label><br>
158 <select name="banlen_w" id="banlen_w">
159 <?php
160 for ($i = 0; $i <= 56; $i++)
161 {
162 if (!$i)
163 echo "<option value=\"0w\"></option>";
164 else
165 {
166 $w = ($i == 1) ? "week" : "weeks";
167 echo "<option value=\"$i" . "w\">$i $w" . "</option>";
168 }
169 }
170 ?>
171 </select>
172 <select name="banlen_d" id="banlen_d">
173 <?php
174 for ($i = 0; $i <= 31; $i++)
175 {
176 if (!$i)
177 echo "<option value=\"0d\"></option>";
178 else
179 {
180 $d = ($i == 1) ? "day" : "days";
181 echo "<option value=\"$i" . "d\">$i $d" . "</option>";
182 }
183 }
184 ?>
185 </select>
186 <select name="banlen_h" id="banlen_h">
187 <?php
188 for ($i = 0; $i <= 24; $i++)
189 {
190 if (!$i)
191 echo "<option value=\"0d\"></option>";
192 else
193 {
194 $h = ($i == 1) ? "hour" : "hours";
195 echo "<option value=\"$i" . "h\">$i $h" . "</option>";
196 }
197 }
198 ?>
199 </select>
200 <br><label for="ban_reason">Reason:<br></label>
201 <textarea name="ban_reason" id="ban_reason">No reason</textarea><br>
202 <input class="cute_button" type="submit" value="Apply">
203 </form>
204
205 </div></div>
206
207 <div class="tab-content\">
208 <div id="Channels" data-tab-content>
209 <p></p>
210 <table class='users_overview'>
211 <th>Name</th>
212 <th>Created</th>
213 <th>User count</th>
214 <th>Topic</th>
215 <th>Topic Set</th>
216 <th>Modes</th>
217
218 <?php
219 foreach(RPC_List::$channel as $channel)
220 {
221 echo "<tr>";
222 echo "<td>".$channel['name']."</td>";
223 echo "<td>".$channel['creation_time']."</td>";
224 echo "<td>".$channel['num_users']."</td>";
225 $topic = (isset($channel['topic'])) ? $channel['topic'] : "";
226 echo "<td>".$topic."</td>";
227 $setby = (isset($channel['topic'])) ? "By ".$channel['topic_set_by'] .", at ".$channel['topic_set_at'] : "";
228 echo "<td>".$setby."</td>";
229 $modes = (isset($channel['modes'])) ? "+" . $channel['modes'] : "<none>";
230 echo "<td>".$modes."</td>";
231 }
232 ?></table></div></div>
233
234
235 <div class="tab-content\">
236 <div id="TKL" data-tab-content>
237
238 <table class='users_overview'>
239 <form action="" method="post">
240 <th><input type="checkbox" label='selectall' onClick="toggle_tkl(this)" />Select all</th>
241 <th>Mask</th>
242 <th>Type</th>
243 <th>Set By</th>
244 <th>Set On</th>
245 <th>Expires</th>
246 <th>Duration</th>
247 <th>Reason</th>
248
249 <?php
250 foreach(RPC_List::$tkl as $tkl)
251 {
252 echo "<tr>";
253 echo "<td><input type=\"checkbox\" value='" . base64_encode($tkl['name']).",".base64_encode($tkl['type']) . "' name=\"tklch[]\"></td>";
254 echo "<td>".$tkl['name']."</td>";
255 echo "<td>".$tkl['type_string']."</td>";
256 echo "<td>".$tkl['set_by']."</td>";
257 echo "<td>".$tkl['set_at_string']."</td>";
258 echo "<td>".$tkl['expire_at_string']."</td>";
259 echo "<td>".$tkl['duration_string']."</td>";
260 echo "<td>".$tkl['reason']."</td>";
261 }
262 ?></table><p><input class="cute_button" type="submit" value="Delete selected"></p></form></div></div>
263
264
265 <div class="tab-content\">
266 <div id="Spamfilter" data-tab-content>
267 <p></p>
268 <table class='users_overview'>
269 <form action="" method="post">
270 <th><input type="checkbox" label='selectall' onClick="toggle_sf(this)" />Select all</th>
271 <th>Mask</th>
272 <th>Type</th>
273 <th>Set By</th>
274 <th>Set On</th>
275 <th>Expires</th>
276 <th>Duration</th>
277 <th>Match Type</th>
278 <th>Action</th>
279 <th>Action Duration</th>
280 <th>Target</th>
281 <th>Reason</th>
282
283 <?php
284 foreach(RPC_List::$spamfilter as $sf)
285 {
286 echo "<tr>";
287 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>";
288 echo "<td>".$sf['name']."</td>";
289 echo "<td>".$sf['type_string']."</td>";
290 echo "<td>".$sf['set_by']."</td>";
291 echo "<td>".$sf['set_at_string']."</td>";
292 echo "<td>".$sf['expire_at_string']."</td>";
293 echo "<td>".$sf['duration_string']."</td>";
294 echo "<td>".$sf['match_type']."</td>";
295 echo "<td>".$sf['ban_action']."</td>";
296 echo "<td>".$sf['ban_duration_string']."</td>";
297 for ($i = 0, $targs = ""; ($c = $sf['spamfilter_targets'][$i]); $i++)
298 {
299 if ($c == "c")
300 $targs .= "Channel, ";
301 else if ($c == "p")
302 $targs .= "Private,";
303 else if ($c == "n")
304 $targs .= "Notice, ";
305 else if ($c == "N")
306 $targs .= "Channel notice, ";
307 else if ($c == "P")
308 $targs .= "Part message, ";
309 else if ($c == "q")
310 $targs .= "Quit message, ";
311 else if ($c == "d")
312 $targs .= "DCC filename, ";
313 else if ($c == "a")
314 $targs .= "Away message, ";
315 else if ($c == "t")
316 $targs .= "Channel topic, ";
317 else if ($c == "T")
318 $targs .= "MessageTag, ";
319 else if ($c == "u")
320 $targs .= "Usermask, ";
321
322 $targs = rtrim($targs,", ");
323 }
324 echo "<td>".$targs."</td>";
325 echo "<td>".$sf['reason']."</td>";
326
327 }
328 ?></table><p><input class="cute_button" type="submit" value="Delete selected"></p></form></div></div>
329
330
331
332 <div class="tab-content\">
333 <div id="News" data-tab-content>
334 <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>
335 <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>
336 </div></div>
337
338 </body>