]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - server_bans.php
Rename tkl.php -> server_bans.php for consistency
[irc/unrealircd/unrealircd-webpanel.git] / server_bans.php
CommitLineData
fe2a6f27
VP
1<?php
2require_once "common.php";
3
4require_once "header.php";
5
6if (!empty($_POST))
7{
8
9 do_log($_POST);
10
11 if (!empty($_POST['tklch'])) // User has asked to delete these tkls
12 {
13 foreach ($_POST as $key => $value) {
14 foreach ($value as $tok) {
15 $tok = explode(",", $tok);
16 $ban = base64_decode($tok[0]);
17 $type = base64_decode($tok[1]);
18 if ($rpc->serverban()->delete($ban, $type))
19 Message::Success("$type has been removed for $ban");
20 else
21 Message::Fail("Unable to remove $type on $ban: $rpc->error");
22 }
23 }
24 }
25 else if (!($iphost = $_POST['tkl_add']))
26 Message::Fail("No user was specified");
27 else if (!($bantype = (isset($_POST['bantype'])) ? $_POST['bantype'] : false))
28 {
29 Message::Fail("Unable to add Server Ban: No ban type selected");
30 }
31 else /* It did */
32 {
33
34 if ((
35 $bantype == "gline" ||
36 $bantype == "gzline" ||
37 $bantype == "shun" ||
38 $bantype == "eline"
39 ) && strpos($iphost, "@") == false) // doesn't have full mask
40 $iphost = "*@" . $iphost;
41
42 $soft = ($_POST['soft']) ? true : false;
43
44 if ($soft)
45 $iphost = "%" . $iphost;
46 /* duplicate code for now [= */
47 $banlen_w = (isset($_POST['banlen_w'])) ? $_POST['banlen_w'] : NULL;
48 $banlen_d = (isset($_POST['banlen_d'])) ? $_POST['banlen_d'] : NULL;
49 $banlen_h = (isset($_POST['banlen_h'])) ? $_POST['banlen_h'] : NULL;
50 $duration = "";
51 if (!$banlen_d && !$banlen_h && !$banlen_w)
52 $duration .= "0";
53
54 else
55 {
56 if ($banlen_w)
57 $duration .= $banlen_w;
58 if ($banlen_d)
59 $duration .= $banlen_d;
60 if ($banlen_h)
61 $duration .= $banlen_h;
62 }
63 $msg_msg = ($duration == "0" || $duration == "0w0d0h") ? "permanently" : "for ".rpc_convert_duration_string($duration);
64 $reason = (isset($_POST['ban_reason'])) ? $_POST['ban_reason'] : "No reason";
0d846731
VP
65 if ($bantype == "qline")
66 {
67 if ($rpc->nameban()->add($iphost, $reason, $duration))
68 Message::Success("Name Ban set against \"$iphost\": $reason");
69 else
70 Message::Fail("Name Ban could not be set against \"$iphost\": $rpc->error");
71 }
62d4ea03
VP
72 elseif ($bantype == "except")
73 {
74 if ($rpc->exception()->add($iphost, "", $duration, $reason))
75 Message::Success("Exception set for \"$iphost\": $reason");
76 else
77 Message::Fail("Exception could not be set \"$iphost\": $rpc->error");
78 }
0d846731 79 else if ($rpc->serverban()->add($iphost, $bantype, $duration, $reason))
fe2a6f27
VP
80 {
81 Message::Success("Host / IP: $iphost has been $bantype" . "d $msg_msg: $reason");
82 }
83 else
84 Message::Fail("The $bantype against \"$iphost\" could not be added: $rpc->error");
85 }
86}
87
88$tkl = $rpc->serverban()->getAll();
62d4ea03
VP
89foreach ($rpc->nameban()->getAll() as $v)
90 $tkl[] = $v;
fe2a6f27 91?>
0d846731
VP
92<h4>Server Bans Overview</h4><br>
93<p><button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">
94 Add entry
95 </button></p></table>
96 <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="confirmModalCenterTitle" aria-hidden="true">
97 <div class="modal-dialog modal-dialog-centered" role="document">
98 <div class="modal-content">
99 <div class="modal-header">
71ef1a7f 100 <h5 class="modal-title" id="myModalLabel">Add new Server Ban</h5>
0d846731
VP
101 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
102 <span aria-hidden="true">&times;</span>
103 </button>
104 </div>
105 <div class="modal-body">
fe2a6f27 106
0c12196e 107 <form method="post">
0d846731
VP
108 <div class="align_label">IP / Host: </div> <input class="curvy" type="text" id="tkl_add" name="tkl_add"><br>
109 <div class="align_label">Ban Type: </div> <select class="curvy" name="bantype" id="bantype">
fe2a6f27
VP
110 <option value=""></option>
111 <optgroup label="Bans">
112 <option value="kline">Kill Line (KLine)</option>
113 <option value="gline">Global Kill Line (GLine)</option>
114 <option value="zline">Zap Line (ZLine)</option>
115 <option value="gzline">Global Zap Line (GZLine)</option>
116
117 </optgroup>
118 <optgroup label="Restrictions">
119 <option value="local-qline">Reserve Nick Locally(QLine)</option>
120 <option value="qline">Reserve Nick Globally (QLine)</option>
121 <option value="shun">Shun</option>
122
123 </optgroup>
124 <optgroup label="Settings">
125 <option value="except">Global Exception (ELine)</option>
126 <option value="local-exception">Local Exception (ELine)</option>
127 </optgroup>
128 </select><br>
129 <div class="align_label"><label for="banlen_w">Duration: </label></div>
0d846731 130 <select class="curvy" name="banlen_w" id="banlen_w">
fe2a6f27
VP
131 <?php
132 for ($i = 0; $i <= 56; $i++)
133 {
134 if (!$i)
135 echo "<option value=\"0w\"></option>";
136 else
137 {
138 $w = ($i == 1) ? "week" : "weeks";
139 echo "<option value=\"$i" . "w\">$i $w" . "</option>";
140 }
141 }
142 ?>
143 </select>
0d846731 144 <select class="curvy" name="banlen_d" id="banlen_d">
fe2a6f27
VP
145 <?php
146 for ($i = 0; $i <= 31; $i++)
147 {
148 if (!$i)
149 echo "<option value=\"0d\"></option>";
150 else
151 {
152 $d = ($i == 1) ? "day" : "days";
153 echo "<option value=\"$i" . "d\">$i $d" . "</option>";
154 }
155 }
156 ?>
157 </select>
0d846731 158 <select class="curvy" name="banlen_h" id="banlen_h">
fe2a6f27
VP
159 <?php
160 for ($i = 0; $i <= 24; $i++)
161 {
162 if (!$i)
163 echo "<option value=\"0d\"></option>";
164 else
165 {
166 $h = ($i == 1) ? "hour" : "hours";
167 echo "<option value=\"$i" . "h\">$i $h" . "</option>";
168 }
169 }
170 ?>
171 </select>
172 <br><div class="align_label"><label for="ban_reason">Reason: </label></div>
0d846731
VP
173 <input class="curvy input_text" type="text" id="ban_reason" name="ban_reason"><br>
174 <input class="curvy input_text" type="checkbox" id="soft" name="soft">Don't affect logged-in users (soft)
175
176 </div>
177
178 <div class="modal-footer">
179 <button id="CloseButton" type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
180 <button type="submit" action="post" class="btn btn-danger">Add Ban</button>
181 </form>
182 </div>
183 </div>
fe2a6f27 184 </div>
0d846731
VP
185 </div>
186
d1d9caa9
VP
187 <table class="table table-responsive caption-top table-striped">
188 <thead class="table-primary">
0c12196e 189 <form method="post">
fe2a6f27
VP
190 <th><input type="checkbox" label='selectall' onClick="toggle_tkl(this)" />Select all</th>
191 <th>Mask</th>
192 <th>Type</th>
193 <th>Set By</th>
194 <th>Set On</th>
195 <th>Expires</th>
196 <th>Duration</th>
197 <th>Reason</th>
0d846731 198 </thead>
fe2a6f27
VP
199
200 <?php
201 foreach($tkl as $tkl)
202 {
203 echo "<tr>";
204 echo "<td><input type=\"checkbox\" value='" . base64_encode($tkl->name).",".base64_encode($tkl->type) . "' name=\"tklch[]\"></td>";
205 echo "<td>".$tkl->name."</td>";
206 echo "<td>".$tkl->type_string."</td>";
d843c1de 207 $set_by = ($tkl->set_by == "-config-") ? "<span class=\"badge-pill badge-secondary\">Config</span>" : $tkl->set_by;
a2bcc69b 208 echo "<td>".$set_by."</td>";
fe2a6f27
VP
209 echo "<td>".$tkl->set_at_string."</td>";
210 echo "<td>".$tkl->expire_at_string."</td>";
211 echo "<td>".$tkl->duration_string."</td>";
212 echo "<td>".$tkl->reason."</td>";
213 }
c88945a1
VP
214 ?></table><p><button type="button" class="btn btn-danger" data-toggle="modal" data-target="#myModal2">
215 Delete selected
216 </button></p>
217 <div class="modal fade" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="confirmModalCenterTitle" aria-hidden="true">
218 <div class="modal-dialog modal-dialog-centered" role="document">
219 <div class="modal-content">
220 <div class="modal-header">
e3f034ee 221 <h5 class="modal-title" id="myModalLabel">Confirm deletion</h5>
c88945a1
VP
222 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
223 <span aria-hidden="true">&times;</span>
224 </button>
225 </div>
226 <div class="modal-body">
227 Are you sure you want to do this?<br>
228 This cannot be undone.
229 </div>
230 <div class="modal-footer">
e3f034ee 231 <button id="CloseButton" type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
c88945a1
VP
232 <button type="submit" action="post" class="btn btn-danger">Delete</button>
233
234 </div>
235 </div>
236 </div>
237 </div></form></div></div>
fe2a6f27
VP
238
239<?php require_once 'footer.php'; ?>