]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - users/index.php
try to make the users table look better on mobile devices
[irc/unrealircd/unrealircd-webpanel.git] / users / index.php
index fb89b201d00cd70fc160b318e01ae81c55ff3005..71cf596473da1d379ea9500a2bf748b0cd68fe87 100644 (file)
@@ -133,12 +133,12 @@ Click on a username to view more information.
                <th scope="col"><input type="checkbox" label='selectall' onClick="toggle_user(this)" /></th>
                <th scope="col">Nick</th>
                <th scope="col">Country</th>
-               <th scope="col">Host / IP</th>
+               <th class="hostname" 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 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 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>
        </thead>
        
@@ -146,6 +146,8 @@ Click on a username to view more information.
        <form method="post">
        <?php
                $currentNumberUsers=0;
+               $currentNumberUsersIdentified=0;
+               $registrationOfaAllFlags = array();
                foreach($users as $user)
                {
 
@@ -199,7 +201,7 @@ Click on a username to view more information.
                        $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>".(isset($user->geoip->country_code) ? '<img src="https://flagcdn.com/48x36/'.htmlspecialchars(strtolower($user->geoip->country_code)).'.png" width="20" height="15"> '.$user->geoip->country_code : "")."</td>";
-                       echo "<td>".htmlspecialchars($user->hostname)." (".htmlspecialchars($user->ip ?? "None").")</td>";
+                       echo "<td class=\"hostname\">".htmlspecialchars($user->hostname)." (".($user->hostname == $user->ip ? 'the same' : htmlspecialchars($user->ip ?? "None")).")</td>";
                        $account = (isset($user->user->account)) ? "<a href=\"".BASE_URL."users/?account=".$user->user->account."\">".htmlspecialchars($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>";
@@ -207,20 +209,25 @@ Click on a username to view more information.
                        $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>";
+                       echo "<td class=\"opercol\">".$oper."</td>";
 
                        $secure = (isset($user->tls) || $user->hostname !== "localhost") ? "<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 class=\"securecol\">".$secure."</td>";
+                       echo "<td class=\"uplinkcol\"><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>";
                        $currentNumberUsers++;
+                       if (isset($user->user->account))
+                       $currentNumberUsersIdentified++;
+                       if (isset($user->geoip->country_code))
+                       array_push($registrationOfaAllFlags, $user->geoip->country_code);
                }
+               $registrationOfaAllFlags = array_count_values($registrationOfaAllFlags);
        ?>
        </tbody></table>
-       <div id="currentNumberUsers"><?=$currentNumberUsers?> connected users</div>
+       <div id="currentNumberUsers"><?=$currentNumberUsers?> connected users including <?=$currentNumberUsersIdentified?> identified and <?=($currentNumberUsers-$currentNumberUsersIdentified)?> not identified.</div>
        <table class="table table-responsive table-light">
        <tr>
        <td colspan="2">
@@ -308,14 +315,50 @@ Click on a username to view more information.
        </div>
        
        </form>
-       
-               </div>
+
+<?php /* ?>
+       <h3>Top country</h3>
+       <div id="top-country">
+               <ul>
+               <?php
+                       arsort($registrationOfaAllFlags);
+                       foreach($registrationOfaAllFlags as $country_code => $count){
+                               echo '<li>
+                               <div class="drag"><img src="https://flagcdn.com/108x81/'.htmlspecialchars(strtolower($country_code)).'.png" width="108" height="81"><br />
+                               '.$country_code . '
+                               </div>
+                               <div class="count">' . $count . ' <span>connected</span></div>
+                               </li>';
+                       }
+               ?>
+               </ul>
+       </div>
+<?php */ ?>
+
+</div>
 
 <script>
     
     $("#myModal").on('shown.bs.modal', function(){
         $("#CloseButton").focus();
     });
+
+       function resize_check()
+       {
+               var width = window.innerWidth;
+               var elements = document.querySelectorAll('.hostname, .opercol, .uplinkcol, .securecol');
+               var show = '';
+               if (width < 900 || alert(typeof screen.orientation) !== 'undefined')
+                       show = 'none';
+
+               for (let i = 0; i < elements.length; i++)
+                       elements[i].style.display = show;
+
+       }
+       resize_check();
+       window.addEventListener('resize', function() {
+               resize_check();
+       });
 </script>
 
 <?php require_once UPATH.'/footer.php'; ?>