X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_log.inc;h=fa4482e6b3b97ad794f8abde63e86ee546fb8179;hb=0a8eb52048cd81d884b8e3f63613dc70e444fc27;hp=daad88908e19a8211f9338350e61f0021f146f40;hpb=894aa86d1d4d57416d43052ea7b781ff680f03c9;p=gosa.git diff --git a/gosa-core/include/class_log.inc b/gosa-core/include/class_log.inc index daad88908..fa4482e6b 100644 --- a/gosa-core/include/class_log.inc +++ b/gosa-core/include/class_log.inc @@ -1,24 +1,25 @@ \version 2.6 @@ -51,11 +52,11 @@ class log { } $entry = array(); - if(!isset($_SESSION['config'])){ + if(!session::is_set('config')){ $entry['user']= "unkown"; }else{ - $this->config = &$_SESSION['config']; + $this->config = session::get('config'); $ui = get_userinfo(); $entry['user']= @$ui->dn; } @@ -84,7 +85,7 @@ class log { if(count($msgs)){ foreach($msgs as $msg){ trigger_error("Logging failed, reason was: ".$msg); - print_red("Logging failed, reason was: ".$msg); + msg_dialog::display(_("Internal error"), sprintf(_("Logging failed: %s"), $msg), ERROR_DIALOG); } }else{ @@ -98,13 +99,7 @@ class log { $this->log_into_syslog($entry); } if(isset($this->config->current['LOGGING']) && preg_match("/(^|,)mysql(,|$)/i",$this->config->current['LOGGING'])){ - $res = $this->log_into_db($entry); - - if(!$res){ - global $config; - $config->current['LOGGING'] = preg_replace("/(^|,)mysql(,|$)/",",",$config->current['LOGGING']); - msg_dialog::display(_("Logging to MySQL disabled"),_("The logging to a MySQL database is now disabled for this session of GOsa, due to communication errors with the specified logging database."), INFO_DIALOG); - } + $this->log_into_db($entry); } } } @@ -116,11 +111,11 @@ class log { $msgs = array(); if(!isset($entry['action']) || !in_array($entry['action'],array("modify","create","remove","copy","snapshot","view","security","debug"))){ - $msgs[] = "Invalid option specified '".$entry['action']."'"; + $msgs[] = sprintf(_("Invalid option '%s' specified!"), $entry['action']); } if(!isset($entry['objecttype']) || empty($entry['objecttype'])){ - $msgs[] = "Specified objectType is empty or invalid."; + $msgs[] = _("Specified objectType is empty or invalid!"); } return($msgs); @@ -135,53 +130,120 @@ class log { } + function disable_mysql_log($server,$error) + { + global $config; + msg_dialog::display(_("Error"), $error, ERROR_DIALOG); + msg_dialog::display(_("MySQL error"),sprintf(_("Logging to MySQL database will be disabled for server '%s'!"),$server), INFO_DIALOG); + unset($config->data['SERVERS']['LOGGING'][$server]) ; + $this->config = $config; + } + + /* Log into configured logging databses.*/ function log_into_db($entry) { if(isset($this->config->data['SERVERS']['LOGGING'])){ $servers = $this->config->data['SERVERS']['LOGGING']; }else{ - print_red(_("You have enabled the logging into mysql databse, but there are no logging servers available.")); return(FALSE); } + /* Log into each configured server + */ foreach($servers as $server_name => $server){ - + + $error = ""; + + /* Connect to the database + */ $con = @mysql_pconnect($server_name,$server['USER'],$server['PWD']); if(!$con){ - print_red(sprintf(_("Could not connect to logging server %s."),$server_name)); - return(FALSE); - }else{ - $db = mysql_select_db($server['DB'],$con); - if(!$db){ - print_red(sprintf(_("Could not select database %s on server %s. Server says :%s"),$server['DB'],$server['SERVER'],mysql_error($con))); - return(FALSE); - }else{ - - /* Create mysql syntax */ - $query ="INSERT INTO gosa_log - (timestamp,user,action,objecttype,object,changes,result) - VALUES - ( - \"".addslashes($entry['timestamp'])."\", - \"".addslashes($entry['user'])."\", - \"".addslashes($entry['action'])."\", - \"".addslashes($entry['objecttype'])."\", - \"".addslashes($entry['object'])."\", - \"".addslashes($entry['changes'])."\", - \"".addslashes($entry['result'])."\" - ); - "; - $res = mysql_query($query,$con); - if(!$res){ - print_red(sprintf(_("Could not query database %s on server %s. Server says :%s"),$server['DB'],$server['SERVER'],mysql_error($con))); - return(FALSE); - } + $error = msgPool::dbconnect(_("MySQL logging"),mysql_error()); + $this->disable_mysql_log($server_name,$error); + continue; + } + + /* Check if the database is available + */ + $db = @mysql_select_db($server['DB'],$con); + if(!$db){ + $error = msgPool::dbselect(_("MySQL logging"),mysql_error()); + $this->disable_mysql_log($server_name,$error); + continue; + } + + /* Check if our current location is already registerd + in this case get its id. + If it wasn't registered yet, create it. + */ + $base = mysql_escape_string($this->config->current['BASE']); + $query= "SELECT id FROM gosa_locations WHERE location=\"".$base."\";"; + $res = mysql_query($query); + if(!$res){ + $error = msgPool::dbquery(_("MySQL logging"),mysql_error()); + $this->disable_mysql_log($server_name,$error); + continue; + } + + $location_id = -1; + while($attrs = mysql_fetch_assoc($res)){ + $location_id = $attrs['id']; + break; + } + + /* No location found that matches our location. + Create it. + */ + if($location_id == -1){ + $query = "INSERT INTO gosa_locations (location) VALUES ('".$base."');"; + if(!mysql_query($query,$con)){ + $error = msgPool::dbquery(_("MySQL logging"),mysql_error()); + $this->disable_mysql_log($server_name,$error); + continue; + } + + /* Try to detect the location again + */ + $query= "SELECT id FROM gosa_locations WHERE location=\"".$base."\";"; + $res = mysql_query($query); + $location_id = -1; + while($attrs = mysql_fetch_assoc($res)){ + $location_id = $attrs['id']; + break; + } + if($location_id == -1){ + $error = sprintf(_("Cannot add location to the database!")."

"._("Error").": %s",mysql_error($con)); + $this->disable_mysql_log($server_name,$error); + continue; } + } + + /* Create mysql syntax */ + $query ="INSERT INTO gosa_log + (timestamp,user,action,objecttype,object,changes,result,location_id) + VALUES + ( + \"".mysql_escape_string($entry['timestamp'])."\", + \"".mysql_escape_string($entry['user'])."\", + \"".mysql_escape_string($entry['action'])."\", + \"".mysql_escape_string($entry['objecttype'])."\", + \"".mysql_escape_string($entry['object'])."\", + \"".mysql_escape_string($entry['changes'])."\", + \"".mysql_escape_string($entry['result'])."\", + \"".mysql_escape_string($location_id)."\" + ); + "; + $res = mysql_query($query,$con); + if(!$res){ + $error = dbquery(_("MySQL logging"), mysql_error()); + $this->disable_mysql_log($server_name,$error); + continue; + } + if(is_resource($con)){ mysql_close($con); } } - return(TRUE); } }