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