]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - users.php
Add "User Lookup" page with cleaner info
[irc/unrealircd/unrealircd-webpanel.git] / users.php
index c99201588f8d449c2578f154757e234c50f6d190..cbc44b07fc664ecd9a9c27598a1a584bd17ebed0 100644 (file)
--- a/users.php
+++ b/users.php
@@ -1,54 +1,45 @@
 <?php
 require_once "common.php";
-
 require_once "header.php";
 
-if (!empty($_POST))
-{
+if (!empty($_POST)) {
        do_log($_POST);
        $bantype = $_POST['bantype'];
-       if (isset($_POST['userch']))
-       {
-               foreach ($_POST["userch"] as $user)
-               {
-                       $user = base64_decode($user);
+       if (isset($_POST['userch'])) {
+               foreach ($_POST["userch"] as $user) {
+                       $user = $name = base64_decode($user);
                        $bantype = (isset($_POST['bantype'])) ? $_POST['bantype'] : NULL;
-                       if (!$bantype) /* shouldn't happen? */
-                       {
+                       if (!$bantype) /* shouldn't happen? */{
                                Message::Fail("An error occured");
-                               return;
-                       }
-                       $banlen_w = (isset($_POST['banlen_w'])) ? $_POST['banlen_w'] : NULL;
-                       $banlen_d = (isset($_POST['banlen_d'])) ? $_POST['banlen_d'] : NULL;
-                       $banlen_h = (isset($_POST['banlen_h'])) ? $_POST['banlen_h'] : NULL;
-
-                       $duration = "";
-                       if (!$banlen_d && !$banlen_h && !$banlen_w)
-                               $duration .= "0";
-                       
-                       else
-                       {
-                               if ($banlen_w)
-                                       $duration .= $banlen_w;
-                               if ($banlen_d)
-                                       $duration .= $banlen_d;
-                               if ($banlen_h)
-                                       $duration .= $banlen_h;
-                       }
-
-                       $nick = $rpc->user()->get($user);
-                       if (!$nick)
-                       {
-                               Message::Fail("Could not find that user. Maybe they disconnected after you clicked this?");
-                               return;
-                       }
-
-                       $msg_msg = ($duration == "0" || $duration == "0w0d0h") ? "permanently" : "for ".rpc_convert_duration_string($duration);
-                       $reason = (isset($_POST['ban_reason'])) ? $_POST['ban_reason'] : "No reason";
-                       if ($rpc->serverban()->add($user, $bantype, $duration, $reason))
-                       {
-                               $c = $nick->client;
-                               Message::Success($c->name . " (*@".$c->hostname.") has been $bantype" . "d $msg_msg: $reason");
+                       } else {
+                               $banlen_w = (isset($_POST['banlen_w'])) ? $_POST['banlen_w'] : NULL;
+                               $banlen_d = (isset($_POST['banlen_d'])) ? $_POST['banlen_d'] : NULL;
+                               $banlen_h = (isset($_POST['banlen_h'])) ? $_POST['banlen_h'] : NULL;
+
+                               $duration = "";
+                               if (!$banlen_d && !$banlen_h && !$banlen_w)
+                                       $duration .= "0";
+                               else {
+                                       if ($banlen_w)
+                                               $duration .= $banlen_w;
+                                       if ($banlen_d)
+                                               $duration .= $banlen_d;
+                                       if ($banlen_h)
+                                               $duration .= $banlen_h;
+                               }
+                               $user = $rpc->user()->get($user);
+                               if (!$user && $bantype !== "qline") {
+                                       Message::Fail("Could not find that user: User not online");
+                               } else {
+                                       $msg_msg = ($duration == "0" || $duration == "0w0d0h") ? "permanently" : "for " . rpc_convert_duration_string($duration);
+                                       $reason = (isset($_POST['ban_reason'])) ? $_POST['ban_reason'] : "No reason";
+                                       if ($bantype == "qline")
+                                               $rpc->nameban()->add($name, $reason, $duration);
+                                       else if ($rpc->serverban()->add($user->id, $bantype, $duration, $reason))
+                                               Message::Success($user->name . " (*@" . $user->hostname . ") has been $bantype" . "d $msg_msg: $reason");
+                                       else
+                                               Message::Fail("Could not add $bantype against $name: $rpc->error");
+                               }
                        }
                }
        }
@@ -57,36 +48,12 @@ if (!empty($_POST))
 /* Get the user list */
 $users = $rpc->user()->getAll();
 ?>
+<h4>Users Overview</h4><br>
+
+Click on a username to view more information.
 
 <div id="Users">
-       <table class='users_filter'>
-       <th class="thuf">Filter by: </th>
-       <th>
-               <form action="users.php" method="post">
-                       Nick: <input name="uf_nick" id="uf_nick" type="text">
-                       <input class="cute_button2" type="submit" value="Search">
-               </form>
-       </th>
-       <th>
-               <form action="" method="post">
-                       Hostname: <input name="uf_host" id="uf_host" type="text">
-                       <input class="cute_button2" type="submit" value="Search">
-               </form>
-       </th>
-       <th>
-               <form action="" method="post">
-                       IP: <input name="uf_ip" id="uf_ip" type="text">
-                       <input class="cute_button2" type="submit" value="Search">
-               </form>
-       </th>
-       <th class="thuffer">
-               <form action="" method="post">
-                       Account: <input name="uf_account" id="uf_account" type="text">
-                       <input class="cute_button2" type="submit" value="Search">
-               </form>
-       </th>
-       </form>
-       </table>
+       
        <?php
        if (isset($_POST['uf_nick']) && strlen($_POST['uf_nick']))
                Message::Info("Listing users which match nick: \"" . $_POST['uf_nick'] . "\"");
@@ -101,23 +68,36 @@ $users = $rpc->user()->getAll();
                Message::Info("Listing users which match account: \"" . $_POST['uf_account'] . "\"");
 
        ?>
-       <table class='users_overview'>
-       <th><input type="checkbox" label='selectall' onClick="toggle_user(this)" />Select all</th>
-       <th>Nick</th>
-       <th>UID</th>
-       <th>Host / IP</th>
-       <th>Account</th>
-       <th>Usermodes <a href="https://www.unrealircd.org/docs/User_modes" target="_blank">ℹ️</a></th>
-       <th>Oper</th>
-       <th>Secure</th>
-       <th>Connected to</th>
-       <th>Reputation <a href="https://www.unrealircd.org/docs/Reputation_score" target="_blank">ℹ️</a></th>
+       <table class="table table-responsive caption-top table-striped">
+       <thead>
+               <th scope="col"><h5>Filter:</h5></th>
+               <form action="" method="post">
+               <th scope="col" colspan="2">Nick <input name="uf_nick" type="text" class="form-control short-form-control">
+               <th scope="col" colspan="2">Host <input name="uf_host" type="text" class="form-control short-form-control"></th>
+               <th scope="col" colspan="2">IP <input name="uf_ip" type="text" class="form-control short-form-control"></th>
+               <th scope="col" colspan="2">Account <input name="uf_account" type="text" class="form-control short-form-control"></th>
+               <th scope="col"> <input class="btn btn-primary" type="submit" value="Search"></th></form>
+       </thead><thead class="table-primary">
+               <th scope="col"><input type="checkbox" label='selectall' onClick="toggle_user(this)" />Select all</th>
+               <th scope="col">Nick</th>
+               <th scope="col">UID</th>
+               <th scope="col">Host / IP</th>
+               <th scope="col">Account</th>
+               <th scope="col">Usermodes <a href="https://www.unrealircd.org/docs/User_modes" target="_blank">ℹ️</a></th>
+               <th scope="col">Oper</th>
+               <th scope="col">Secure</th>
+               <th scope="col">Connected to</th>
+               <th scope="col">Reputation <a href="https://www.unrealircd.org/docs/Reputation_score" target="_blank">ℹ️</a></th>
+       </thead>
        
+       <tbody>
        <form action="users.php" method="post">
        <?php
+
                foreach($users as $user)
                {
 
+               
                        /* Some basic filtering for NICK */
                        if (isset($_POST['uf_nick']) && strlen($_POST['uf_nick']) && 
                        strpos(strtolower($user->name), strtolower($_POST['uf_nick'])) !== 0 &&
@@ -143,35 +123,41 @@ $users = $rpc->user()->getAll();
                                continue;
 
                        echo "<tr>";
-                       echo "<td><input type=\"checkbox\" value='" . base64_encode($user->id)."' name=\"userch[]\"></td>";
-                       $isBot = (strpos($user->user->modes, "B") !== false) ? ' <span class="label">Bot</span>' : "";
-                       echo "<td>".$user->name.$isBot.'</td>';
+                       echo "<th scope=\"row\"><input type=\"checkbox\" value='" . base64_encode($user->id)."' name=\"userch[]\"></th>";
+                       $isBot = (strpos($user->user->modes, "B") !== false) ? ' <span class="badge-pill badge-dark">Bot</span>' : "";
+                       echo "<td><a href=\"user-lookup.php?nick=".$user->id."\">$user->name$isBot</a></td>";
                        echo "<td>".$user->id."</td>";
                        echo "<td>".$user->hostname." (".$user->ip.")</td>";
-                       $account = (isset($user->user->account)) ? $user->user->account : '<span class="label bluelabel ">None</span>';
+                       $account = (isset($user->user->account)) ? $user->user->account : '<span class="badge-pill badge-primary">None</span>';
                        echo "<td>".$account."</td>";
                        $modes = (isset($user->user->modes)) ? "+" . $user->user->modes : "<none>";
                        echo "<td>".$modes."</td>";
-                       $oper = (isset($user->user->operlogin)) ? $user->user->operlogin." <span class=\"label bluelabel\">".$user->user->operclass."</span>" : "";
+                       $oper = (isset($user->user->operlogin)) ? $user->user->operlogin." <span class=\"badge-pill badge-secondary\">".$user->user->operclass."</span>" : "";
                        if (!strlen($oper))
-                               $oper = (strpos($user->user->modes, "S") !== false) ? '<span class="label secure-connection">Service</span>' : "";
+                               $oper = (strpos($user->user->modes, "S") !== false) ? '<span class="badge-pill badge-warning">Services Bot</span>' : "";
                        echo "<td>".$oper."</td>";
-                       $secure = (isset($user->tls)) ? "<span class=\"label secure-connection\">Secure</span>" : "<span class=\"label redlabel\">Insecure</span>";
+
+                       $secure = (isset($user->tls)) ? "<span class=\"badge-pill badge-success\">Secure</span>" : "<span class=\"badge-pill badge-danger\">Insecure</span>";
+                       if (strpos($user->user->modes, "S") !== false)
+                               $secure = "";
                        echo "<td>".$secure."</td>";
                        echo "<td>".$user->user->servername."</td>";
                        echo "<td>".$user->user->reputation."</td>";
                }
-       ?></table>
-       <label for="bantype">Apply action: </label><br>
+       ?>
+       </tbody></table>
+       <table class="table table-responsive table-light">
+       <tr>
+       <td colspan="2">
+       <label for="bantype">Apply action: </label>
        <select name="bantype" id="bantype">
                        <option value=""></option>
                <optgroup label="Bans">
                        <option value="gline">GLine</option>
                        <option value="gzline">GZLine</option>
                </optgroup>
-       </select>
-       <br>
-       <label for="banlen_w">Duration: </label><br>
+       </select></td><td colspan="2">
+       <label for="banlen_w">Duration: </label>
        <select name="banlen_w" id="banlen_w">
                        <?php
                        for ($i = 0; $i <= 56; $i++)
@@ -212,14 +198,46 @@ $users = $rpc->user()->getAll();
                                        echo "<option value=\"$i" . "h\">$i $h" . "</option>";
                                }
                        }
+                       
                        ?>
-       </select>
-       <br><label for="ban_reason">Reason:<br></label>
-       <textarea name="ban_reason" id="ban_reason">No reason</textarea><br>
-       <input class="cute_button" type="submit" value="Apply">
+       </select><br></td><tr><td colspan="3">
+       
+       <label for="ban_reason">Reason: </label>
+       <input class="form-control short-form-control" type="text" name="ban_reason" id="ban_reason" value="No reason">
+       <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">
+                       Apply ban
+       </button></td></table>
+       <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="confirmModalCenterTitle" aria-hidden="true">
+       <div class="modal-dialog modal-dialog-centered" role="document">
+               <div class="modal-content">
+               <div class="modal-header">
+                       <h5 class="modal-title" id="myModalLabel">Apply ban</h5>
+                       <button type="button" class="close" data-dismiss="modal" aria-label="Close">
+                       <span aria-hidden="true">&times;</span>
+                       </button>
+               </div>
+               <div class="modal-body">
+                       Are you sure you want to do this?
+                       
+               </div>
+               <div class="modal-footer">
+                       <button id="CloseButton" type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
+                       <button type="submit" action="post" class="btn btn-danger">Ban</button>
+                       
+               </div>
+               </div>
+       </div>
+       </div>
+       
        </form>
        
-       </div
-</div>
+               </div>
+
+<script>
+    
+    $("#myModal").on('shown.bs.modal', function(){
+        $("#CloseButton").focus();
+    });
+</script>
 
 <?php require_once 'footer.php'; ?>