Code

Added support for master-key encrypted passwords in gosa.conf
[gosa.git] / plugins / addons / logview / class_logview.inc
index f1ebe05183ee71be10a4bda5cb07e5c31894e5b6..ce6947d1cfe9f9957b20b2112843a85bf8567e9e 100644 (file)
@@ -16,6 +16,7 @@ class logview extends plugin
   var $loglevellist= array();
   var $tilist= array();
   var $fields= array("log_level", "host", "time_stamp", "message");
+  var $last= array("log_level", "host", "time", "regex");
   var $range = 25;
 
   function logview ($config, $dn= NULL)
@@ -26,67 +27,13 @@ class logview extends plugin
         /* Get global filter config */
         if (!is_global("logfilter")){
                 $logfilter= array("time" => "1",
-                                "log_level" => "!ALL",
+                                "log_level" => "!All",
                                 "host" => "!All",
                                 "regex" => "*");
                 register_global("logfilter", $logfilter);
         }
 
-       /* Get list of hosts and log levels */
-       if (!isset($this->config->data['SERVERS']['LOG'])){
-               print_red (_("No LOG servers defined!"));
-               return;
-       }
-
-       if(!is_callable("mysql_connect")){
-               return;
-       }
-
-       $cfg= $this->config->data['SERVERS']['LOG'];
-       $tmp= set_error_handler('dummy_error_handler');
-       $link = @mysql_pconnect($cfg['SERVER'], $cfg['LOGIN'], $cfg['PASSWORD']);
-       set_error_handler($tmp);
-       if ($link === FALSE){
-               return;
-       }
-       if (! @mysql_select_db("gomon")){
-               print_red(_("Can't select log database for log generation!"));
-               return;
-       }
-
-       /* Host list */
-       $query= "SELECT DISTINCT host FROM golog LIMIT 200;";
-       @DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__, $query, "Database query");
-       $result = @mysql_query($query);
-       if ($result === false){
-               print_red(_("Query for log database failed!"));
-               return;
-       }
-       while ($line = mysql_fetch_array($result, MYSQL_ASSOC)){
-               $this->hostlist[$line['host']]= $line['host'];
-       }
-       $this->hostlist['!All']= _("All");
-       ksort($this->hostlist);
 
-       /* Log level list */
-       $query= "SELECT DISTINCT log_level FROM golog LIMIT 200;";
-       @DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__, $query, "Database query");
-       $result = @mysql_query($query);
-       if ($result === false){
-               print_red(_("Query for log database failed!"));
-               return;
-       }
-       while ($line = mysql_fetch_array($result, MYSQL_ASSOC)){
-               $this->loglevellist[$line['log_level']]= $line['log_level'];
-       }
-       $this->loglevellist['!All']= _("All");
-       ksort($this->loglevellist);
-
-       /* Time interval */
-       $this->tilist= array("0" => _("one hour"), "1" => _("6 hours"),
-                       "2" => _("12 hours"), "3" => _("24 hours"),
-                       "4" => _("2 days"), "5" => _("one week"),
-                       "6" => _("2 weeks"), "7" => _("one month"));
   }
 
   function execute()
@@ -94,55 +41,139 @@ class logview extends plugin
        /* Call parent execute */
        plugin::execute();
 
-       if(isset($_POST['EntriesPerPage'])){
-               $this->range = $_POST['EntriesPerPage'];
-       }
+       $logfilter= get_global("logfilter");
+       $smarty= get_smarty();
+       $smarty->assign("search_result", "");
+       $smarty->assign("plug", "?plug=".validate($_GET['plug']));
+       $smarty->assign("search_image", get_template_path('images/search.png'));
+       $smarty->assign("time_image", get_template_path('images/time.png'));
+       $smarty->assign("server_image", get_template_path('images/server.png'));
+       $smarty->assign("log_image", get_template_path('images/log_warning.png'));
+       $smarty->assign("ruleset_image", get_template_path('images/edit.png'));
+       $smarty->assign("launchimage", get_template_path('images/launch.png'));
+       $smarty->assign("hostlist", $this->hostlist);
+       $smarty->assign("loglevellist", $this->loglevellist);
+       $smarty->assign("tilist", $this->tilist);
+       $smarty->assign("mode0", "");
+       $smarty->assign("mode1", "");
+       $smarty->assign("mode2", "");
+       $smarty->assign("mode3", "");
 
-       /* Ignore if not defined */
-       if (!isset($this->config->data['SERVERS']['LOG'])){
-               return;
+       $logfilter['regex']= preg_replace('/\%/', '*', $logfilter['regex']);
+       foreach( array("host", "log_level", "time", "regex") as $type){
+               $smarty->assign("$type", $logfilter[$type]);
        }
 
-    if(!is_callable("mysql_connect")){
-        print_red(_("There is no mysql extension available in your php setup, can't perform any query."));
-        return;
-    }
+       if (!isset($this->config->data['SERVERS']['LOG'])){
+               print_red (_("No LOG servers defined!"));
+               return ($smarty->fetch (get_template_path('contents.tpl', TRUE)));
+       }elseif(!is_callable("mysql_connect")){
+               print_red(_("There is no mysql extension available, please check your php setup."));
+               return ($smarty->fetch (get_template_path('contents.tpl', TRUE)));
+       }else{
+               $cfg= $this->config->data['SERVERS']['LOG'];
+               
+               $link = @mysql_pconnect($cfg['SERVER'], $cfg['LOGIN'], $cfg['PASSWORD']);
+               if ($link === FALSE){
+                       print_red(_("Can't connect to log database, no logs can be shown!"));
+                       return ($smarty->fetch (get_template_path('contents.tpl', TRUE)));
+               }
+               if (! @mysql_select_db("gomon")){
+                       print_red(_("Can't select log database for log generation!"));
+                       return ($smarty->fetch (get_template_path('contents.tpl', TRUE)));
+               }
 
+               /* Host list */
+               $query= "SELECT DISTINCT host FROM golog LIMIT 200;";
+               @DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__, $query, "Database query");
+               $result = @mysql_query($query);
+               if ($result === false){
+                       print_red(_("Query for log database failed!"));
+                       return ($smarty->fetch (get_template_path('contents.tpl', TRUE)));
+               }
+               
+               if(count($this->hostlist) == 0){
+                       while ($line = mysql_fetch_array($result, MYSQL_ASSOC)){
+                               $this->hostlist[$line['host']]= $line['host'];
+                       }
+                       $this->hostlist['!All']= _("All");
+                       ksort($this->hostlist);
+                       $smarty->assign("hostlist", $this->hostlist);
+               }
 
+               /* Log level list */
+               $query= "SELECT DISTINCT log_level FROM golog LIMIT 200;";
+               @DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__, $query, "Database query");
+               $result = @mysql_query($query);
+               if ($result === false){
+                       print_red(_("Query for log database failed!"));
+                       return ($smarty->fetch (get_template_path('contents.tpl', TRUE)));
+               }
+               
+               if(count($this->loglevellist) == 0){
+                       while ($line = mysql_fetch_array($result, MYSQL_ASSOC)){
+                               $this->loglevellist[$line['log_level']]= $line['log_level'];
+                       }
+                       $this->loglevellist['!All']= _("All");
+                       ksort($this->loglevellist);
+                       $smarty->assign("loglevellist", $this->loglevellist);
+               }
+       }
 
-        /* Save data */
-        $logfilter= get_global("logfilter");
-        foreach( array("host", "time", "log_level", "regex") as $type){
-                if (isset($_POST[$type])){
-                        $logfilter[$type]= $_POST[$type];
-                }
-        }
+       if(count($this->tilist) == 0){
+               /* Time interval */
+               $this->tilist= array("0" => _("one hour"), "1" => _("6 hours"),
+                               "2" => _("12 hours"), "3" => _("24 hours"),
+                               "4" => _("2 days"), "5" => _("one week"),
+                               "6" => _("2 weeks"), "7" => _("one month"));
+               $smarty->assign("tilist", $this->tilist);
+       }
+       
+       if(isset($_POST['EntriesPerPage'])){
+               $this->range = $_POST['EntriesPerPage'];
+       }
+
+       /* Save data */
+       $logfilter= get_global("logfilter");
+       $logfilter_changed = 0;
+       foreach( array("host", "time", "log_level", "regex") as $type){
+               $last[$type] = $logfilter[$type];
+               if (isset($_POST[$type])){
+                       $logfilter[$type]= $_POST[$type];
+               }
+               if ($last[$type] != $logfilter[$type]){
+                       $logfilter_changed = 1;
+               }
+       }
+       $smarty->assign("regex", $logfilter['regex']);
        if ($logfilter['regex'] == ""){
                $logfilter['regex']= '%';
        } else {
                $logfilter['regex']= preg_replace('/\*/', '%', $logfilter['regex']);
        }
-        register_global("logfilter", $logfilter);
+       register_global("logfilter", $logfilter);
 
-       $smarty= get_smarty();
        if (isset($_GET['start'])){
-                $this->start= (int)$_GET['start'];
-        }
+               $this->start= (int)$_GET['start'];
+       }
+       if ($logfilter_changed > 0){
+               $this->start= 0;
+       }
 
-        /* Adapt sorting */
-        if (isset($_GET['sort'])){
-                if ($this->sort == (int)$_GET['sort']){
-                        if ($this->sort_direction == "down"){
-                                $this->sort_direction= "up";
-                        } else {
-                                $this->sort_direction= "down";
-                        }
-                }
-                $this->sort= (int)$_GET['sort'];
-                if ($this->sort < 0 || $this->sort > 3){
-                        $this->sort= 0;
-                }
-        }
+       /* Adapt sorting */
+       if (isset($_GET['sort'])){
+               if ($this->sort == (int)$_GET['sort']){
+                       if ($this->sort_direction == "down"){
+                               $this->sort_direction= "up";
+                       } else {
+                               $this->sort_direction= "down";
+                       }
+               }
+               $this->sort= (int)$_GET['sort'];
+               if ($this->sort < 0 || $this->sort > 3){
+                       $this->sort= 0;
+               }
+       }
 
        /* Query stuff */
        $res= "";
@@ -157,15 +188,6 @@ class logview extends plugin
                        print_red(_("Can't select log database for log generation!"));
                } else {
 
-                       /* Get number of entries */
-                       $query= "SELECT COUNT(*) FROM golog;";
-                       $result = @mysql_query($query);
-                       $line= mysql_fetch_array($result, MYSQL_ASSOC);
-                       $count= $line['COUNT(*)'];
-                       if ($count > 25){
-                               $smarty->assign("range_selector", range_selector($count, $this->start, $this->range,"EntriesPerPage"));
-                       }
-
                        /* Assemble time query */
                        switch ($logfilter['time']){
                                case '0':
@@ -208,28 +230,42 @@ class logview extends plugin
                        } else {
                                $ll= "AND log_level='".$logfilter['log_level']."'";
                        }
+                       $smarty->assign("log_level", $logfilter['log_level']);
                        if ($logfilter['host'] == '!All'){
                                $hf= "";
                        } else {
                                $hf= "AND host='".$logfilter['host']."'";
                        }
+                       $smarty->assign("host", $logfilter['host']);
 
                        /* Order setting */
                        if ($this->sort_direction == "down"){
                                $desc= "DESC";
+                               $sort_sign = "\\/";
                        } else {
                                $desc= "";
+                               $sort_sign="/\\";
                        }
+                       $smarty->assign("mode".$this->sort, $sort_sign);
 
-                       $end= date ("YmdHis");
-                       $query= "SELECT * FROM golog WHERE message like '".$logfilter['regex']."' $ll $hf AND time_stamp <= $end AND time_stamp >= $start ORDER BY ".$this->fields[$this->sort]." $desc LIMIT ".$this->start.",25;";
-                       @DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__, $query, "Database query");
+                       $query_base= " FROM golog WHERE message like '".$logfilter['regex']."' $ll $hf AND time_stamp >= $start";
+
+                       /* Get number of entries */
+                       $query= "SELECT COUNT(*)".$query_base.";";
                        $result = @mysql_query($query);
-                       if ($result === false){
-                               print_red(_("Query for log database failed!"));
-                               return;
+                       $line= mysql_fetch_array($result, MYSQL_ASSOC);
+                       $count= $line['COUNT(*)'];
+                       if ($count > 25){
+                               $smarty->assign("range_selector", range_selector($count, $this->start, $this->range,"EntriesPerPage"));
+                       } else {
+                               $smarty->assign("range_selector", "");
                        }
 
+                       /* Query results */
+                       $query= "SELECT *".$query_base." ORDER BY ".$this->fields[$this->sort]." $desc LIMIT ".$this->start.",".$this->range.";";
+                       @DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__, $query, "Database query");
+                       $result = @mysql_query($query);
+
                        /* Display results */
                        $mod= 0;
                        while ($line = mysql_fetch_array($result, MYSQL_ASSOC)){
@@ -241,37 +277,20 @@ class logview extends plugin
 
                                $res.="<tr style=\"$col\">\n";
                                $res.="<td style=\"text-align:center\">
-                                               <img alt=\"\" src=\"".get_template_path('images/log_'.strtolower($line['log_level'])).".png\" title=\"Log level is '".$line['log_level']."'\"></td><td>".$line['host']."</td>";
+                                       <img alt=\"".$line['log_level']."\" src=\"".get_template_path('images/log_'.strtolower($line['log_level'])).".png\" title=\"Log level is '".$line['log_level']."'\"></td><td>".$line['host']."</td>";
                                $res.="<td>".$line['time_stamp']."</td><td width=\"100%\">".$line['message']."</td>";
                                $res.="</tr>\n";
                        }
                        mysql_close($link);
+                       $smarty->assign("search_result", $res);
                }
        }
-
-       /* Show main page */
-       $smarty->assign("search_result", $res);
-       $smarty->assign("plug", "?plug=".validate($_GET['plug']));
-       $smarty->assign("search_image", get_template_path('images/search.png'));
-       $smarty->assign("time_image", get_template_path('images/time.png'));
-       $smarty->assign("server_image", get_template_path('images/server.png'));
-       $smarty->assign("log_image", get_template_path('images/log_warning.png'));
-       $smarty->assign("ruleset_image", get_template_path('images/edit.png'));
-       $smarty->assign("launchimage", get_template_path('images/launch.png'));
-
-
-       $smarty->assign("hostlist", $this->hostlist);
-
-       $smarty->assign("loglevellist", $this->loglevellist);
-
-       $smarty->assign("tilist", $this->tilist);
-       
        $logfilter['regex']= preg_replace('/\%/', '*', $logfilter['regex']);
        foreach( array("host", "log_level", "time", "regex") as $type){
-                $smarty->assign("$type", $logfilter[$type]);
-        }
-       $smarty->assign("mode".$this->sort, "<img alt=\"\" src=\"images/sort_".$this->sort_direction.
-                        ".png\" border=0 align=middle>");
+               $smarty->assign("$type", $logfilter[$type]);
+       }
+
+       /* Show main page */
        return ($smarty->fetch (get_template_path('contents.tpl', TRUE)));
   }