host group operations work very well now.
[glcas.git] / plugins / hosts.php
index 3634682..eb93989 100644 (file)
@@ -35,6 +35,12 @@ class GLCASHosts {
                                case "scanrange":
                                        GLCASpageBuilder($this, "scanIPRange");
                                        return;
+                               case "delgroup":
+                                       GLCASpageBuilder($this, "deleteGroup");
+                                       return;
+                               case "dooperation":
+                                       GLCASpageBuilder($this, "doOperation");
+                                       return;
                        }
                }
                
@@ -43,6 +49,106 @@ class GLCASHosts {
                
        }
        
+       
+       // TODO: this whole function wont work correctly
+       // once we move to hosts being in multiple groups..
+       function doOperation($url)
+       {
+               $operation = $_REQUEST["operation"];
+               $groupop = $_REQUEST["groupop"];
+               $hosts = $this->config->getData("hosts");
+               $groups = $this->config->getData("hostgroups");
+               $nogroup = false;
+               $hosts_to_do = null;
+               $nhosts = 0;
+               $groups_to_do = null;
+               $ngroups = 0;
+               
+               // first check if nogroup is selected
+               if(isset($_REQUEST["nonegroup-selected"])) {
+                       //echo "nonegroup operation<br>";
+                       $nogroup = true;
+               }
+               
+               foreach($groups as $key=>$val) {
+                       $grpname = $val["category"];
+                       if(isset($_REQUEST["$grpname-selectgroup"])) {
+                               $group_to_do[$ngroups++] = $grpname;
+                               
+                       }
+               }
+               
+               foreach($hosts as $key=>$val) {
+                       $dohost = false;
+                       $hname = $val["category"];
+                       // this bits annoying TODO: find out why this happens
+                       $thname = preg_replace("/\./", "_", $hname);
+                       $hip = $val["name"];
+                       $hg = $val["val"];
+                       
+                       echo "<br>Checking $hname, $hip, $hg<br>";
+                       
+                       // check if no group is on
+                       if($nogroup && $hg == "") {
+                               //echo "Set doing true on nogroup<br>";
+                               $dohost = true;
+                       }
+                       
+                       // check if host was in a group selected
+                       if($group_to_do !== null) foreach($group_to_do as $dothese) {
+                               if($hg == $dothese) $dohost = true;
+                       }
+                       
+                       // directly selected hosts
+                       if(isset($_REQUEST["$thname-selecthost"])) {
+                               //echo "add host $hname<br>";
+                               $dohost = true;
+                       }
+                       
+                       // now do the op
+                       if($dohost) {
+                               if($operation == "move") {
+                                       $this->config->delData("hosts", "$hname", "$hip", "$hg");
+                                       $this->config->addData("hosts", "$hname", "$hip", "$groupop");
+                               }
+                               if($operation == "delete") {
+                                       $this->config->delData("hosts", "$hname", "$hip", "$hg");
+                               }
+                       }
+               }
+               
+               /*echo "total to do:<br><pre>";
+               print_r($hosts_to_do);
+               print_r($_REQUEST);
+               echo "</pre>";*/
+               
+               global $WEB_ROOT_FS, $URL_HANDLERS, $BASE_URL;
+               header("Location: $BASE_URL/hosts");
+               
+               
+       }
+       
+       function deleteGroup($url)
+       {
+               $grpname = $_REQUEST["grpname"];
+               $this->config->delData("hostgroups", "$grpname");
+               $hosts = $this->config->getData("hosts");
+               foreach($hosts as $key=>$val) {
+                       $hname = $val["category"];
+                       $hip = $val["name"];
+                       $hg = $val["val"];
+                       
+                       if($hg == $grpname) {
+                               $this->config->delData("hosts", "$hname", "$hip", "$hg");
+                               $this->config->addData("hosts", "$hname", "$hip", "");
+                       }
+               }
+               
+               global $WEB_ROOT_FS, $URL_HANDLERS, $BASE_URL;
+               header("Location: $BASE_URL/hosts");
+               
+       }
+       
        function scanIPRange($url)
        {
                $iprange = $_REQUEST["scanip"];
@@ -52,37 +158,19 @@ class GLCASHosts {
                }
                
                // we just assume class c atm
-               $ips_v = explode(".", $iprange);
-               
-               $ips = $ips_v[0].".".$ips_v[1].".".$ips_v[2];
-               
-               for($i = 1; $i < 32; $i++) {
-                       $hostname = "";
-                       $ips_me = "$ips.$i";
-                       echo "Scanning $ips_me<br>";
-                       error_log("Scanning $ips_me<br>");
-                       flush();
-                       $hostname = gethostbyaddr($ips_me);
-                       if($hostname != $ips_me) {
-                               echo "Found host on $ips_me as $hostname<br>";
-                               error_log("Found host on $ips_me as $hostname");
-                               flush();
-                               $hosts = $this->config->getData("hosts");
-                               $exists = false;
-                               foreach($hosts as $key => $val) {
-                                       if($val["category"] == $hostname && $val["name"] == $ips_me) {
-                                               echo "Host in db already<br>";
-                                               $exists = true;
-                                               flush();
-                                       }
-                                       
-                               }
-                               if(!$exists) $this->config->addData("hosts", "$hostname", "$ips_me", "$hostgroup");
-                               
-                               
-                       }
+               error_log("background scanner, start");
+               global $WEB_ROOT_FS, $URL_HANDLERS, $BASE_URL;
+               if(file_exists("$WEB_ROOT_FS/../bin/scanhelper.php")) {
+                       $scall = "/usr/bin/php $WEB_ROOT_FS/../bin/scanhelper.php '$iprange' '$hostgroup' > /tmp/scanlog 2>&1 &";
+                       system($scall);
+               } else {
+                       error_log("cant find download helper... dieing");
                }
-               echo "Finished";
+               
+               global $WEB_ROOT_FS, $URL_HANDLERS, $BASE_URL;
+               header("Location: $BASE_URL/hosts");
+               
+               
        }
        
        function deleteHost($url)
@@ -153,37 +241,69 @@ class GLCASHosts {
                $hosts = $this->config->getData("hosts");
                $groups = $this->config->getData("hostgroups");
                
-               echo "<h2>Hosts</h2>";
-               if($hosts) {
-                       echo "<table border=\"1\"><tr><th>Host</th><th>IP</th><th>Host Group</th><th>Last Seen</th><th>Control</th></tr>";
-                       foreach($hosts as $key => $val) {
-                               $hname = $val["category"];
-                               $hip = $val["name"];
-                               $hg = $val["val"];
-                               if($hg == "") $hg = "-";
-                               echo "<tr><td>$hname</td><td>$hip</td><td>$hg</td><td>...</td><td><a href=\"?action=deletehost&hostname=$hname\">Delete</a></tr>";
-                       }
-                       echo "</table>";
-               } else {
-                       echo "No hosts defined yet<br>"; 
+               $gs = 0;
+               echo "<h2>Hosts and Groups</h2>";
+               echo "<form method=\"post\"action=\"?action=dooperation\">";
+               echo "Selected hosts operation: <select name=\"operation\">";
+               echo "<option value=\"move\">Move To</option>";
+               echo "<option value=\"delete\">Delete</option>";
+               echo "</select>";
+               echo "Group <select name=\"groupop\">";
+               echo "<option value=\"\">None</option>";
+               foreach($groups as $key => $val) {
+                       $grpname = $val["category"];
+                       echo "<option value=\"$grpname\">$grpname</option>";
                }
-               echo "<hr>";
+               echo "</select>";
+               echo "<input type=\"submit\" name=\"Go\" value=\"Go\">";
+               
                
-               // groups
-               echo "<h2>Host Groups</h2>";
+               echo "<table border=\"1\">";
+               
+               $gs++;
+               // fist print ungrouped
+               echo "<tr valign=\"top\">";
+               echo "<td>";
+               echo "<h3>Ungrouped Hosts</h3><br>";
+               echo "<table border=\"1\"><tr><th><input type=\"checkbox\" name=\"nonegroup-selected\"></th><th>Host</th><th>IP</th><th>Host Group</th><th>Last Seen</th><th>Control</th></tr>";
+               foreach($hosts as $key => $val) {
+                       $hname = $val["category"];
+                       $hip = $val["name"];
+                       $hg = $val["val"];
+                       if($hg == "") $hg = "-";
+                       if($hg=="-") echo "<tr><td><input type=\"checkbox\" name=\"$hname-selecthost\"></td><td>$hname</td><td>$hip</td><td>$hg</td><td>...</td><td><a href=\"?action=deletehost&hostname=$hname\">Delete</a></tr>";
+               }
+               echo "</table>";
+               echo "</td>";
+
                if($groups) {
-                       echo "<table border=\"1\"><tr><th>Group Name</th></tr>";
                        foreach($groups as $key=>$val) {
+                               $gs++;
+                               echo "<td>";
                                $grpname = $val["category"];
-                               echo "<tr><td>$grpname</td></tr>";
+                               echo "<h3>Host Group: $grpname <a href=\"?action=delgroup&grpname=$grpname\">Delete</a></h3><br>";
+                               echo "<table border=\"1\"><tr><th><input type=\"checkbox\" name=\"$grpname-selectgroup\"></th><th>Host</th><th>IP</th><th>Host Group</th><th>Last Seen</th><th>Control</th></tr>";
+                               if($hosts != false) foreach($hosts as $key => $val) {
+                                       $hname = $val["category"];
+                                       $hip = $val["name"];
+                                       $hg = $val["val"];
+                                       if($hg == "") $hg = "-";
+                                       if($hg==$grpname) echo "<tr><td><input type=\"checkbox\" name=\"$hname-selecthost\"></td><td>$hname</td><td>$hip</td><td>$hg</td><td>...</td><td><a href=\"?action=deletehost&hostname=$hname\">Delete</a></tr>";
+                               }
+                               echo "</table>";
+                               echo "</td>";
+                               if(($gs%4)==0) echo "</tr><tr>";
                        }
-                       echo "</table>";
-               } else {
-                       echo "No host groups defined yet<br>";
                }
+               
+               
+               echo "</tr></table>";
+               echo "</form>";
+               
                echo "<hr>";
                
                
+               
                echo "<table><tr valign=\"top\"><td>";
                
                // the add hosts dialog