]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - misc/channel-lookup-misc.php
Add Plugins: remove author from card footer
[irc/unrealircd/unrealircd-webpanel.git] / misc / channel-lookup-misc.php
index d2de46c74505f3060880bb4b29c6f0ef80bb2f0c..0ec18720adbbd1a47a8b63db1baa956622887079 100644 (file)
@@ -1,10 +1,9 @@
 <?php
-
 function generate_chanbans_table($channel)
 {
        global $rpc;
        $channel = $rpc->channel()->get($channel->name);
-       ?><p><table class="container-xxl table table-responsive caption-top table-striped">
+       ?><p><table class="container-xxl table table-sm table-responsive caption-top table-striped">
        <button class="btn btn-primary mr-1 btn-sm" data-toggle="modal" data-target="#ban">Add New</button>
        <form method="post">
        <button class="btn btn-info btn-sm" type="submit" name="delete_sel_ban">Delete</button>
@@ -41,7 +40,7 @@ function generate_chaninvites_table($channel)
 {
        global $rpc;
        $channel = $rpc->channel()->get($channel->name);
-       ?><p><table class="table table-responsive table-hover caption-top table-striped">
+       ?><p><table class="table table-sm table-responsive table-hover caption-top table-striped">
        <button class="btn btn-primary btn-sm mr-1" data-toggle="modal" data-target="#invite">Add New</button>
        <form method="post">
        <button class="btn btn-info btn-sm" type="submit" name="delete_sel_inv">Delete</button>
@@ -79,11 +78,11 @@ function generate_chaninvites_table($channel)
 function generate_chanexcepts_table($channel)
 {
        global $rpc;
-       echo "<form method=\"post\">";
+       
        $channel = $rpc->channel()->get($channel->name);
-       ?><p><table class="table table-responsive table-hover caption-top table-striped">
+       ?><p><table class="table table-sm table-responsive table-hover caption-top table-striped">
        <button class="btn btn-primary mr-1 btn-sm" data-toggle="modal" data-target="#except">Add New</button>
-       
+       <form method="post">
        <button class="btn btn-info btn-sm" type="submit" name="delete_sel_ex">Delete</button>
        </p>
        
@@ -135,12 +134,14 @@ function generate_chan_occupants_table($channel)
        <thead class="table-info">
                <th><input type="checkbox" label='selectall' onClick="toggle_checkbox(this)" /></th>
                <th>Name</th>
-               <th>Host</th>
                <th>Status</th>
+               <th>Host</th>
        </thead>
        <tbody>
                <?php
                $m = sort_user_list($channel->members);
+
+               $i = 0;
                foreach ($m as $member)
                {
                        $lvlstring = "";
@@ -152,37 +153,37 @@ function generate_chan_occupants_table($channel)
                                        switch ($m)
                                        {
                                                case "v":
-                                                       $lvlstring .= "<div class='badge rounded-pill badge-primary'>Voice</div>";
+                                                       $lvlstring .= "<div class='badge rounded-pill badge-primary'>Voice</div> ";
                                                        break;
                                                case "h":
-                                                       $lvlstring .= "<div class='badge rounded-pill badge-secondary'>Half-Op</div>";
+                                                       $lvlstring .= "<div class='badge rounded-pill badge-secondary'>Half-Op</div> ";
                                                        break;
                                                case "o":
-                                                       $lvlstring .= "<div class='badge rounded-pill badge-warning'>Op</div>";
+                                                       $lvlstring .= "<div class='badge rounded-pill badge-warning'>Op</div> ";
                                                        break;
                                                case "a":
-                                                       $lvlstring .= "<div class='badge rounded-pill badge-danger'>Admin</div>";
+                                                       $lvlstring .= "<div class='badge rounded-pill badge-danger'>Admin</div> ";
                                                        break;
                                                case "q":
-                                                       $lvlstring .= "<div class='badge rounded-pill badge-success'>Owner</div>";
+                                                       $lvlstring .= "<div class='badge rounded-pill badge-success'>Owner</div> ";
                                                        break;
                                                
                                                // providing support third/ojoin
                                                case "Y":
-                                                       $lvlstring .= "<div class='badge rounded-pill'>OJOIN</div>";
+                                                       $lvlstring .= "<div class='badge rounded-pill'>OJOIN</div> ";
                                                        break;
                                        }
                                }
                        }
+                       
                        echo "<tr>";
                        ?><form method="post" action=""><?php
-                       $target = $rpc->user()->get($member->id);
                        $disabled = (current_user_can(PERMISSION_EDIT_CHANNEL_USER)) ? "" : "disabled";
                        $disabledcolor = ($disabled) ? "btn-secondary" : "btn-primary";
                        echo "<td scope=\"row\"><input type=\"checkbox\" value='$member->id' name=\"checkboxes[]\"></td>";
-                       echo "<td><a href=\"".BASE_URL."users/details.php?nick=$member->id\">".htmlspecialchars($member->name)."</a></td>";
-                       echo "<td><code>".htmlspecialchars($target->hostname)."</code></td>";
+                       echo "<td><a href=\"".get_config("base_url")."users/details.php?nick=$member->id\">".htmlspecialchars($member->name)."</a></td>";
                        echo "<td class='text-right'>$lvlstring</td>";
+                       echo "<td><code>".((property_exists($member, 'hostname')) ? htmlspecialchars($member->hostname) : "")."</code></td>";
                        echo "</tr>";
                }
 
@@ -196,9 +197,8 @@ function generate_chan_occupants_table($channel)
 
 function generate_html_chansettings($channel)
 {
-       global $rpc;
        ?>
-
+       
     <table class="table-sm table-responsive caption-top table-hover">
         <tbody>
            <?php
@@ -211,25 +211,17 @@ function generate_html_chansettings($channel)
                                $tok = split($fmodes);
                                $modes = $tok[0];
                                $params = rparv($fmodes);
-                               $uplink = NULL;
+                               $paramed_modes = sort_paramed_modes($modes, $params);
 
-                               /* We get our uplink server so we can see what modes there are and in what group */
-                               $servlist = $rpc->server()->getAll();
-                               foreach($servlist as $serv) // find the one with no "->server->uplink" which will be our uplink
-                                       if (BadPtr($serv->server->uplink)) // found it
-                                               $uplink = $serv;
-
-                               if (!$uplink) // whaaaa?!¿
-                                       die("Could not find our uplink. Weird and should not have happened");
-                               
-                               $groups = $uplink->server->features->chanmodes;
-                               
                 for ($i=0; ($mode = (isset($modes[$i])) ? $modes[$i] : NULL); $i++)
                 {
-                                       $modeinfo = IRCList::$cmodes[$mode];
+                                       $modeinfo = IRCList::lookup($mode);
+                                       if (!$modeinfo)
+                                               continue;
                                        ?>
                                                <tr>
                                                        <th><?php echo $modeinfo['name']; ?></th>
+                                                       <td><code><?php echo isset($paramed_modes[$mode]) ? $paramed_modes[$mode] : ""; ?></code></td>
                                                        <td>
                                                                <?php echo $modeinfo['description']; ?>
                                                        </td>
@@ -245,6 +237,116 @@ function generate_html_chansettings($channel)
     <?php
 }
 
+/** Return user-friendly mode group names as an array like:
+ * "Join restrictions"=>"kliRzOL", ...
+ * The group "Other" has a number of preset ones PLUS
+ * will be automatically filled with any remaining modes
+ * that are detected and that we forgot to put in Other.
+ */
+function group_modes()
+{
+       $modes = '';
+       foreach(IRCList::$uplink as $mode_groups)
+               $modes .= $mode_groups;
+               
+       $grouping = IRCList::$grouping;
+
+       foreach (str_split($modes) as $letter)
+       {
+               $found = false;
+               foreach($grouping as $groupname=>$value)
+               {
+                       if (str_contains($value, $letter))
+                       {
+                               $found = true;
+                               break;
+                       }
+               }
+               if (!$found)
+                       $grouping["Other"] .= $letter;
+               
+       }
+       return $grouping;
+}
+
+function generate_edit_chmodes($chan)
+{
+       ?>
+           <?php
+               if (!isset($chan->modes))
+               {
+                       echo "No modes set";
+                       return;
+               }
+               $fmodes = $chan->modes;
+               $tok = split($fmodes);
+               $modes = $tok[0];
+               $params = rparv($fmodes);
+               $paramed_modes = sort_paramed_modes($modes, $params);
+
+               $all_modes = IRCList::$uplink;
+               $groups = group_modes();
+
+               foreach ($groups as $group_name=>$m)
+               {
+                       echo "<fieldset class=\"border p-1 col-sm-6\">\n";
+                       echo "<legend class=\"w-auto\" style=\"font-size: 16px\">$group_name</legend>\n";
+                       for ($i=0; ($mode = (isset($m[$i])) ? $m[$i] : NULL); $i++)
+                       {
+                               $group = get_chmode_group($mode);
+                               if (!$group || $group == 1)
+                                       continue;
+                               $modeinfo = IRCList::lookup($mode);
+                               $checked = (strstr($modes,$mode)) ? "checked " : " ";
+
+                               $disabled = "";
+                               if (isset($modeinfo) && $modeinfo['requires'] == "Server")
+                                               $disabled = "disabled";
+                               
+                               ?>
+                               <div class="form-group row">
+                                       <div class="col-sm-5">
+                                               <input <?php echo $checked.$disabled; ?> type="checkbox" value='<?php echo $mode; ?>' name="newmodes[]">
+                                               <span data-toggle="tooltip" data-placement="top" title="<?php echo htmlspecialchars($modeinfo['description']); ?>"><?php echo htmlspecialchars($modeinfo['name'])." (<code>+$mode</code>)";  ?>
+                                       </div>
+                                       <div class="col-sm-2">
+                                               <?php
+                                                       
+                                                       if ($group == 2 || $group == 3)
+                                                       { 
+                                                               ?><input type="text" class="input-group-sm" name="paramed_modes[<?php echo $mode; ?>]"
+                                                               id="<?php echo $mode; ?>" value="<?php echo ($checked)
+                                                               ?
+                                                                       htmlspecialchars(
+                                                                               isset($paramed_modes[$mode])
+                                                                               ?
+                                                                                       $paramed_modes[$mode]
+                                                                               :
+                                                                                       ""
+                                                                       )
+                                                               :
+                                                                ""; ?>"><?php
+                                                       }
+                                               ?>
+                                       </div>
+                               </div>
+                               <?php
+                       }
+                       echo "</fieldset>\n";
+               }
+           ?>
+    <?php
+}
+
+function get_chmode_group(string $mode) : int
+{
+       foreach(IRCList::$uplink as $i => $grp)
+               if (strstr($grp,$mode))
+                       return $i + 1;
+
+       return 0; // invalid
+}
+
 /**
  *     Force loading of a particular modal by name
  */
@@ -259,6 +361,24 @@ function chlkup_autoload_modal($name)
        <?php
 }
 
+/**
+ * Returns an array of parametered modes and their params
+ */
+function sort_paramed_modes($modes, $params) : array
+{
+       $m = [];
+       for ($i=0; isset($modes[$i]) && $mode = $modes[$i]; $i++)
+       {
+               $group = get_chmode_group($mode);
+               if ($group != 2 && $group != 3)
+                       continue;
+               $p = split($params);
+               $m[$mode] = $p[0];
+               $p[0] = NULL;
+               $params = glue($p);
+       }
+       return $m;
+}
 
 function _do_chan_item_delete($chan, string $type, array $list, array &$errors) : bool
 {