]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - users/index.php
Use responsive datatables in Users view: automatic column priority etc.
[irc/unrealircd/unrealircd-webpanel.git] / users / index.php
index b95d70a07a9fe2282ec50a9fe1c769ff8b696099..6f64a871ae13263db9862296b9d4048254bbebaa 100644 (file)
@@ -1,6 +1,6 @@
 <?php
-require_once "../common.php";
-require_once "../header.php";
+require_once "../inc/common.php";
+require_once "../inc/header.php";
 
 if (!empty($_GET))
 {
@@ -9,18 +9,29 @@ if (!empty($_GET))
 
        if (isset($_GET['operonly']) && !isset($_POST['operonly']))
                $_POST['operonly'] = $_GET['operonly'];
+
+       if (isset($_GET['servicesonly']) && !isset($_POST['servicesonly']))
+               $_POST['servicesonly'] = $_GET['servicesonly'];
 }
 
-if (!empty($_POST)) {
+if (!empty($_POST))
+{
+       require_once "../inc/connection.php";
        do_log($_POST);
-       $bantype = $_POST['bantype'];
+       $bantype = (isset($_POST['bantype'])) ? $_POST['bantype'] : NULL;
+
        if (isset($_POST['userch'])) {
-               foreach ($_POST["userch"] as $user) {
+               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");
-                       } else {
+                       }
+                       
+                       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;
@@ -37,15 +48,29 @@ if (!empty($_POST)) {
                                                $duration .= $banlen_h;
                                }
                                $user = $rpc->user()->get($user);
+
                                if (!$user && $bantype !== "qline") {
                                        Message::Fail("Could not find that user: User not online");
-                               } else {
+                               }
+                               
+                               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 ($bantype == "kill")
+                                       {
+                                               if ($rpc->user()->kill($user->id, $reason))
+                                                       Message::Success($user->name . "(*@" . $user->hostname . ") has been killed: $reason");
+                                               else
+                                                       Message::Fail("Could not kill $user->name: $rpc->error");
+                                       }
                                        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");
                                }
@@ -54,14 +79,12 @@ if (!empty($_POST)) {
        }
 }
 
-/* Get the user list */
-$users = $rpc->user()->getAll();
 ?>
 <h4>Users Overview</h4>
 
 Click on a username to view more information.
 
-<div id="Users">
+<div class="usertable">
        
        <?php
 
@@ -82,99 +105,26 @@ Click on a username to view more information.
 
 
        ?>
-       <table class="container-xxl 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" colspan="2">Server <input name="uf_server" type="text" class="form-control short-form-control"></th>
-               <th scope="col" colspan="2"><input <?php echo (isset($_POST['operonly'])) ? "checked" : ""; ?> name="operonly" type="checkbox" value=""> Opers Only</th>
-               <th scope="col"> <input class="btn btn-primary" type="submit" value="Search"></th></form>
-       </thead></table>
 
-       <table class="container-xxl table table-sm table-responsive caption-top table-striped">
-       <thead class="table-primary">
+       <!-- The user list -->
+       <!-- table id="data_list" class="container-xxl table table-sm table-responsive caption-top table-striped" -->
+       <!-- <table id="data_list" class="table table-striped table-bordered dt-responsive nowrap" style="width:400px"> -->
+       <table id="data_list" class="display responsive nowrap" style="width:100%">
+       <thead>
                <th scope="col"><input type="checkbox" label='selectall' onClick="toggle_user(this)" /></th>
                <th scope="col">Nick</th>
-               <th scope="col">Host / IP</th>
-               <th scope="col"><span data-toggle="tooltip" data-placement="bottom" title="The services account name, if the user identified to services." style="border-bottom: 1px dotted #000000">Account</span></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"><span data-toggle="tooltip" data-placement="bottom" title="This shows [Secure] if the user is using SSL/TLS or is on localhost." style="border-bottom: 1px dotted #000000">Secure</span></th>
-               <th scope="col">Connected to</th>
-               <th scope="col"><span data-toggle="tooltip" data-placement="bottom" title="The reputation score gets higher when someone with this IP address has been connected in the past weeks. A low reputation score (like <10) is an indication of a new IP." style="border-bottom: 1px dotted #000000">Reputation</span> <a href="https://www.unrealircd.org/docs/Reputation_score" target="_blank">ℹ️</a></th>
+               <th class="countrycol" scope="col">Country</th>
+               <th class="hostname" scope="col">Host / IP</th>
+               <th class="accountcol" scope="col"><span data-toggle="tooltip" data-placement="bottom" title="The services account name, if the user identified to services." style="border-bottom: 1px dotted #000000">Account</span></th>
+               <th class="umodescol" scope="col">Usermodes <a href="https://www.unrealircd.org/docs/User_modes" target="_blank">ℹ️</a></th>
+               <th class="opercol" scope="col">Oper</th>
+               <th class="securecol" scope="col"><span data-toggle="tooltip" data-placement="bottom" title="This shows [Secure] if the user is using SSL/TLS or is on localhost." style="border-bottom: 1px dotted #000000">Secure</span></th>
+               <th class="uplinkcol" scope="col">Connected to</th>
+               <th class="reputationcol" scope="col"><span id="reputationheader" data-toggle="tooltip" data-placement="bottom" title="The reputation score gets higher when someone with this IP address has been connected in the past weeks. A low reputation score (like <10) is an indication of a new IP." style="border-bottom: 1px dotted #000000">Rep.</span> <a href="https://www.unrealircd.org/docs/Reputation_score" target="_blank">ℹ️</a></th>
        </thead>
-       
-       <tbody>
-       <form 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 &&
-                       strpos(strtolower($user->name), strtolower($_POST['uf_nick'])) == false)
-                               continue;
-
-                       /* Some basic filtering for HOST */
-                       if (isset($_POST['uf_host']) && strlen($_POST['uf_host']) && 
-                       strpos(strtolower($user->hostname), strtolower($_POST['uf_host'])) !== 0 &&
-                       strpos(strtolower($user->hostname), strtolower($_POST['uf_host'])) == false)
-                               continue;
-
-                       /* Some basic filtering for IP */
-                       if (isset($_POST['uf_ip']) && strlen($_POST['uf_ip']) && 
-                       strpos(strtolower($user->ip), strtolower($_POST['uf_ip'])) !== 0 &&
-                       strpos(strtolower($user->ip), strtolower($_POST['uf_ip'])) == false)
-                               continue;
-
-                       /* Some basic filtering for ACCOUNT */
-                       if (isset($_POST['uf_account']) && strlen($_POST['uf_account']) && 
-                       strpos(strtolower($user->user->account), strtolower($_POST['uf_account'])) !== 0 &&
-                       strpos(strtolower($user->user->account), strtolower($_POST['uf_account'])) == false)
-                               continue;
+       </table>
 
-                       /* Some basic filtering for ACCOUNT */
-                       if (isset($_POST['uf_server']) && strlen($_POST['uf_server']) && 
-                       strpos(strtolower($user->user->servername), strtolower($_POST['uf_server'])) !== 0 &&
-                       strpos(strtolower($user->user->servername), strtolower($_POST['uf_server'])) == false)
-                               continue;
-
-                       /* Some basic filtering for OPER */
-                       if (isset($_POST['operonly']) &&
-                       (strpos($user->user->modes, "o") == false || strpos($user->user->modes,"S") !== false))
-                               continue;
-
-                       echo "\n<tr>";
-                       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 rounded-pill badge-dark">Bot</span>' : "";
-                       echo "<td><a href=\"details.php?nick=".$user->id."\">$user->name$isBot</a></td>";
-                       echo "<td>".$user->hostname." (".$user->ip.")</td>";
-                       $account = (isset($user->user->account)) ? "<a href=\"".BASE_URL."users/?account=".$user->user->account."\">".$user->user->account."</a>" : '<span class="badge rounded-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=\"badge rounded-pill badge-secondary\">".$user->user->operclass."</span>" : "";
-                       if (!strlen($oper))
-                               $oper = (strpos($user->user->modes, "S") !== false) ? '<span class="badge rounded-pill badge-warning">Services Bot</span>' : "";
-                       echo "<td>".$oper."</td>";
-
-                       $secure = (isset($user->tls)) ? "<span class=\"badge rounded-pill badge-success\">Secure</span>" : "<span class=\"badge rounded-pill badge-danger\">Insecure</span>";
-                       if (strpos($user->user->modes, "S") !== false)
-                               $secure = "";
-                       echo "<td>".$secure."</td>";
-                       echo "<td><a href=\"".BASE_URL."servers/details.php?server=".substr($user->id, 0, 3)."\">".$user->user->servername."</a></td>";
-                       echo "<td>".$user->user->reputation."</td>";
-                       echo "</tr>";
-               }
-       ?>
-       </tbody></table>
+       <!-- User Actions -->
        <table class="table table-responsive table-light">
        <tr>
        <td colspan="2">
@@ -184,6 +134,7 @@ Click on a username to view more information.
                <optgroup label="Bans">
                        <option value="gline">GLine</option>
                        <option value="gzline">GZLine</option>
+                       <option value="kill">Kill</option>
                </optgroup>
        </select></td><td colspan="2">
        <label for="banlen_w">Duration: </label>
@@ -229,18 +180,22 @@ Click on a username to view more information.
                        }
                        
                        ?>
-       </select><br></td><tr><td colspan="3">
+       </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
+       <input class="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="#ban_confirmation">
+                       Apply
        </button></td></table>
-       <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="confirmModalCenterTitle" aria-hidden="true">
+
+       <!-- Ban confirmation modal -->
+       <div class="modal fade" id="ban_confirmation" 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>
+                       <h5 class="modal-title" id="ban_confirmation_label">Apply ban</h5>
                        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                        <span aria-hidden="true">&times;</span>
                        </button>
@@ -251,7 +206,7 @@ Click on a username to view more information.
                </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>
+                       <button type="submit" action="post" class="btn btn-danger">Apply</button>
                        
                </div>
                </div>
@@ -259,14 +214,114 @@ Click on a username to view more information.
        </div>
        
        </form>
-       
-               </div>
+
+       <style>
+               #rclickmenu {
+                       position: fixed;
+                       z-index: 10000;
+                       width: 250px;
+                       background: #1b1a1a;
+                       border-radius: 5px;
+                       transform: scale(0);
+                       transform-origin: top left;
+               }
+               #rclickmenu.visible {
+                       transform: scale(1);
+                       transition: transform 120ms ease-in-out;
+               }
+               #rclickmenu .item {
+                       padding: 8px 10px;
+                       font-size: 15px;
+                       color: #eee;
+                       cursor: pointer;
+                       border-radius: inherit;
+               }
+               #rclickmenu .item:hover {
+                       background: #343434;
+                       text-decoration: none;
+               }
+       </style>
+
+       <div id='rclickmenu' class="nav-item list-group">
+               <div id="rclick_opt1" class="item list-group-item-action">View details</div>
+               <div id="rclick_opt2" class="item list-group-item-action">Kill</div>
+               <div id="rclick_opt3" class="item list-group-item-action">Copy
+       </div>
+</div>
 
 <script>
-    
-    $("#myModal").on('shown.bs.modal', function(){
-        $("#CloseButton").focus();
-    });
+       var rclickmenu = document.getElementById('rclickmenu');
+       var scopes = document.querySelectorAll('.userselector');
+       document.addEventListener("click", (e) =>
+       {
+               if (e.target.offsetParent != rclickmenu)
+               {
+                       rclickmenu.classList.remove("visible");
+               }
+       });
+       scopes.forEach((scope) => {
+               scope.addEventListener("contextmenu", (event) =>
+               {
+                       event.preventDefault();
+                       var { clientX: mouseX, clientY: mouseY } = event;
+                       var name = $('#' + scope.id).attr('value')
+                       document.getElementById("rclick_opt1").innerHTML = 'View details for ' + name;
+                       rclickmenu.style.top = `${mouseY}px`;
+                       rclickmenu.style.left = `${mouseX}px`;
+                       rclickmenu.classList.remove("visible");
+                       setTimeout(() => { rclickmenu.classList.add("visible"); });
+               });
+       });
+       document.addEventListener('keydown', (event) => {
+       if (event.key === 'Escape')
+       {
+               rclickmenu.classList.remove("visible");
+       }
+});
+
+$(document).ready( function () {
+       args = {
+               'responsive': true,
+               'fixedHeader': {
+                       header: true,
+                       headerOffset: 53
+               },
+               'ajax': {
+                       'url': '<?php echo get_config("base_url"); ?>api/users.php',
+                       dataSrc: ''
+               },
+               'pageLength':100,
+               'order':[[1,'asc']],
+               'columns': [
+                       { 'data': 'Select', 'responsivePriority': 1 },
+                       { 'data': 'Nick', 'responsivePriority': 1 },
+                       { 'data': 'Country', 'className':'countrycol', 'responsivePriority': 2 },
+                       { 'data': 'Host/IP', 'className':'hostname', 'responsivePriority': 5 },
+                       { 'data': 'Account', 'className':'accountcol', 'responsivePriority': 3 },
+                       { 'data': 'Usermodes', 'className':'umodescol', 'responsivePriority': 7 },
+                       { 'data': 'Oper', 'className':'opercol', 'responsivePriority': 8 },
+                       { 'data': 'Secure', 'className':'securecol', 'responsivePriority': 9 },
+                       { 'data': 'Connected to', 'className':'uplinkcol', 'responsivePriority': 6 },
+                       { 'data': 'Reputation', 'className':'reputationcol', 'responsivePriority': 4 },
+               ],
+       };
+       /* Hide on mobile */
+       if (window.innerWidth > 800)
+       {
+               args['dom'] = 'Pfrtip';
+               args['searchPanes'] = {
+                       'initCollapsed': 'true',
+                       'columns': [2,8],
+                       'dtOpts': {
+                               select: { style: 'multi'},
+                               order: [[ 1, "desc" ]]
+                       },
+               }
+       }
+
+       $('#data_list').DataTable(args);
+} );
+
 </script>
 
-<?php require_once UPATH.'/footer.php'; ?>
+<?php require_once UPATH.'/inc/footer.php'; ?>