moved admin to repo admin
[glcas.git] / plugins / hosts.php
index d2222b6..ef63bbb 100644 (file)
@@ -5,8 +5,8 @@ error_log("hosts loaded");
 global $URL_HANDLERS;
 $URL_HANDLERS["hosts.*"] = "GLCASHosts";
 global $BASE_URL, $MENU_ITEMS;
-$MENU_ITEMS["30hosts"]["name"] = "Known Machines";
-$MENU_ITEMS["30hosts"]["link"] = "$BASE_URL/hosts";
+$MENU_ITEMS["10hosts"]["name"] = "Known Machines";
+$MENU_ITEMS["10hosts"]["link"] = "$BASE_URL/hosts";
 
 class GLCASHosts {
        function __construct($config)
@@ -28,10 +28,6 @@ class GLCASHosts {
                                        error_log("in add group");
                                        GLCASpageBuilder($this, "addGroup");
                                        return;
-                               case "deletehost":
-                                       error_log("in add group");
-                                       GLCASpageBuilder($this, "deleteHost");
-                                       return;
                                case "scanrange":
                                        GLCASpageBuilder($this, "scanIPRange");
                                        return;
@@ -39,6 +35,7 @@ class GLCASHosts {
                                        GLCASpageBuilder($this, "deleteGroup");
                                        return;
                                case "dooperation":
+                                       error_log("in do operation");
                                        GLCASpageBuilder($this, "doOperation");
                                        return;
                        }
@@ -88,7 +85,7 @@ class GLCASHosts {
                        $hip = $val["name"];
                        $hg = $val["val"];
                        
-                       echo "<br>Checking $hname, $hip, $hg<br>";
+                       //echo "<br>Checking $hname, $hip, $hg<br>";
                        
                        // check if no group is on
                        if($nogroup && $hg == "") {
@@ -114,6 +111,8 @@ class GLCASHosts {
                                        $this->config->addData("hosts", "$hname", "$hip", "$groupop");
                                }
                                if($operation == "delete") {
+                                       $this->config->delData("ping", "$hip");
+                                       $this->config->delData("lastseen", "$hip");
                                        $this->config->delData("hosts", "$hname", "$hip", "$hg");
                                }
                                if($operation == "ping") {
@@ -194,14 +193,6 @@ class GLCASHosts {
                
        }
        
-       function deleteHost($url)
-       {
-               $hostname = $_REQUEST["hostname"];
-               $this->config->delData("hosts", "$hostname");
-               global $WEB_ROOT_FS, $URL_HANDLERS, $BASE_URL;
-               header("Location: $BASE_URL/hosts");
-       }
-       
        function addHost($url)
        {
                $hg = $_REQUEST["hostgroup"];
@@ -287,7 +278,7 @@ class GLCASHosts {
                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>Last Seen</th><th>Last Ping</th><th>Control</th></tr>";
+               echo "<table border=\"1\"><tr><th><input type=\"checkbox\" name=\"nonegroup-selected\"></th><th>Host</th><th>IP</th><th>Last Seen</th><th>Last Ping</th></tr>";
                foreach($hosts as $key => $val) {
                        $hname = $val["category"];
                        $hip = $val["name"];
@@ -308,7 +299,7 @@ class GLCASHosts {
                                        }
                                }
                                $lastseen = glcas_getLastSeen($hip, $this->config->getData("lastseen", "$hip"));
-                               echo "<tr><td><input type=\"checkbox\" name=\"$hname-selecthost\"></td><td>$hname</td><td>$hip</td><td>$lastseen</td><td>$lastping</td><td><a href=\"?action=deletehost&hostname=$hname\">Delete</a></tr>";
+                               echo "<tr><td><input type=\"checkbox\" name=\"$hname-selecthost\"></td><td>$hname</td><td>$hip</td><td>$lastseen</td><td>$lastping</td></tr>";
                        }
                }
                echo "</table>";
@@ -320,7 +311,7 @@ class GLCASHosts {
                                echo "<td>";
                                $grpname = $val["category"];
                                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>Last Seen</th><th>Last Ping</th><th>Control</th></tr>";
+                               echo "<table border=\"1\"><tr><th><input type=\"checkbox\" name=\"$grpname-selectgroup\"></th><th>Host</th><th>IP</th><th>Last Seen</th><th>Last Ping</th></tr>";
                                if($hosts != false) foreach($hosts as $key => $val) {
                                        $hname = $val["category"];
                                        $hip = $val["name"];
@@ -342,7 +333,7 @@ class GLCASHosts {
                                                }
                                                                                                
                                                $lastseen = glcas_getLastSeen($hip, $this->config->getData("lastseen", "$hip"));
-                                               echo "<tr><td><input type=\"checkbox\" name=\"$hname-selecthost\"></td><td>$hname</td><td>$hip</td><td>$lastseen</td><td>$lastping</td><td><a href=\"?action=deletehost&hostname=$hname\">Delete</a></tr>";
+                                               echo "<tr><td><input type=\"checkbox\" name=\"$hname-selecthost\"></td><td>$hname</td><td>$hip</td><td>$lastseen</td><td>$lastping</td></tr>";
                                        }
                                }
                                echo "</table>";