Code

Macro setting will be saved in Extension_table for asterisk
[gosa.git] / include / functions.inc
index 4e8434a828ae7bfecef4796a0f214fb92f42d712..27f188dcb96f64629b80b85fc83000a51326f10f 100644 (file)
@@ -21,6 +21,7 @@
 /* Configuration file location */
 define ("CONFIG_DIR", "/etc/gosa");
 define ("CONFIG_TEMPLATE_DIR", "../contrib/");
+define ("HELP_BASEDIR", "/home/cajus/");
 
 /* Define globals for revision comparing */
 $svn_path = '$HeadURL$';
@@ -35,7 +36,7 @@ require_once ("class_pluglist.inc");
 require_once ("class_tabs.inc");
 require_once ("class_mail-methods.inc");
 require_once("class_password-methods.inc");
-require_once ("debuglib.inc");
+require_once ("functions_debug.inc");
 
 /* Define constants for debugging */
 define ("DEBUG_TRACE",   1);
@@ -177,7 +178,7 @@ function get_template_path($filename= '', $plugin= FALSE, $path= "")
 {
   global $config, $BASE_DIR;
 
-  if (!isset($config->data['MAIN']['THEME'])){
+  if (!@isset($config->data['MAIN']['THEME'])){
     $theme= 'default';
   } else {
     $theme= $config->data['MAIN']['THEME'];
@@ -301,7 +302,6 @@ function ldap_login_user ($username, $password)
 
     /* user not found */
     case 0:    return (NULL);
-            break;
 
             /* valid uniq user */
     case 1: 
@@ -464,6 +464,48 @@ function get_lock ($object)
 }
 
 
+function get_list2($subtreeACL, $filter, $subsearch= TRUE, $base="", $attrs= array(), $flag= FALSE)
+{
+ global $config;
+
+  /* Base the search on default base if not set */
+  $ldap= $config->get_ldap_link($flag);
+  if ($base == ""){
+    $ldap->cd ($config->current['BASE']);
+  } else {
+    $ldap->cd ($base);
+  }
+
+  /* Perform ONE or SUB scope searches? */
+  $ldap->ls ($filter);
+
+  /* Check for size limit exceeded messages for GUI feedback */
+  if (preg_match("/size limit/i", $ldap->error)){
+    $_SESSION['limit_exceeded']= TRUE;
+  } else {
+    $_SESSION['limit_exceeded']= FALSE;
+  }
+  $result= array();
+
+
+  /* Crawl through reslut entries and perform the migration to the
+     result array */
+  while($attrs = $ldap->fetch()) {
+    $dn= preg_replace("/[ ]*,[ ]*/", ",", $ldap->getDN());
+    foreach ($subtreeACL as $key => $value){
+      if (preg_match("/$key/", $dn)){
+        $attrs["dn"]= convert_department_dn($dn);
+        $result[]= $attrs;
+        break;
+      }
+    }
+  }
+
+
+  return ($result);
+
+}
+
 function get_list($subtreeACL, $filter, $subsearch= TRUE, $base="", $attrs= array(), $flag= FALSE)
 {
   global $config;
@@ -700,6 +742,22 @@ function convert_department_dn($dn)
   return rtrim($dep, "/");
 }
 
+function convert_department_dn2($dn)
+{
+  $dep= "";
+
+  /* Build a sub-directory style list of the tree level
+     specified in $dn */
+  $tmp = split (",", $dn);
+
+  $dep= preg_replace("%^.*/([^/]+)$%", "\\1", $tmp[0]);
+  
+  
+  /* Return and remove accidently trailing slashes */
+  $tmp = rtrim($dep, "/");
+  return $tmp;
+}
+
 
 function get_ou($name)
 {
@@ -895,7 +953,7 @@ function print_red()
   if (isset($_SESSION['DEBUGLEVEL'])){
     $_SESSION['errors'].= "<div align=\"left\" style=\"border-width:5px;".
       "border-style:solid;border-color:red; background-color:black;".
-      "margin-bottom:10px; padding:8px;\"><table><tr><td><img alt=\"\" src=\"".
+      "margin-bottom:10px; padding:8px;\"><table summary=''><tr><td><img alt=\"\" src=\"".
       get_template_path('images/warning.png')."\"></td>".
       "<td width=\"100%\" align=\"center\"><font color=\"#FFFFFF\">".
       "<b style='font-size:16px;'>$string</b></font></td><td>".
@@ -965,7 +1023,7 @@ function get_printer_list($cups_server)
 
     /* CUPS is not available, try lpstat as a replacement */
   } else {
-    unset ($ar);
+    $ar = false;
     exec("lpstat -p", $ar);
     foreach($ar as $val){
       list($dummy, $printer, $rest)= split(' ', $val, 3);
@@ -1133,8 +1191,12 @@ function range_selector($dcnt,$start,$range=25)
   }
 
   $numpages= (($dcnt / $range));
-  if(((int)($numpages))!=($numpages))
+  if(((int)($numpages))!=($numpages)){
     $numpages = (int)$numpages + 1;
+  }
+  if (((int)$numpages) <= 1 ){
+    return ("");
+  }
   $ppage= (int)(($start / $range) + 0.5);
 
 
@@ -1155,6 +1217,8 @@ function range_selector($dcnt,$start,$range=25)
     $begin= $end - $max_entries;
   }
 
+  $output.= "<div style='border:1px solid #E0E0E0; background-color:#FFFFFF;'>";
+
   /* Draw decrement */
   if ($start > 0 ) {
     $output.="  <a href= \"main.php?plug=".validate($_GET['plug'])."&amp;start=".
@@ -1181,6 +1245,8 @@ function range_selector($dcnt,$start,$range=25)
       "<img alt=\"\" src=\"images/forward.png\" border=0 align=\"middle\"></a>";
   }
 
+  $output.= "</div>";
+
   return($output);
 }
 
@@ -1190,7 +1256,7 @@ function apply_filter()
   $apply= "";
 
   $apply= ''.
-    '<table width="100%"  style="border-top:1px solid #B0B0B0;"><tr><td width="100%" align="right">'.
+    '<table summary=""  width="100%"  style="background:#EEEEEE;border-top:1px solid #B0B0B0;"><tr><td width="100%" align="right">'.
     '<input type="submit" name="apply" value="'._("Apply").'"></td></tr></table>';
 
   return ($apply);
@@ -1515,113 +1581,53 @@ function get_gosa_version()
   }
 }
 
-function gosaRaiseError($errno, $errstr, $errfile, $errline)
-{
-  global $error_collector;
 
-  /* Return if error reporting is set to zero */
-  if (error_reporting() == 0){
-    return;
-  }
-
-  /* Workaround for buggy imap_open error outputs */
-  if (preg_match('/imap_open/', $errstr)){
-    return;
-  }
-
-  /* FIXME: Workaround for PHP5 error message flooding. The new OOM
-     code want's us to use public/protected/private instead of flat
-     var declarations. For now I can't workaround this - let's ignore
-     the messages till the next major release which may drop support
-     for PHP4. */
-  if (preg_match('/var: Deprecated./', $errstr)){
-    return;
-  }
-
-  /* FIXME: Same as above. Compatibility does error flooding.*/
-  if (preg_match('/zend.ze1_compatibility_mode/', $errstr)){
-    return;
-  }
-
-  /* FIXME: Hide ldap size limit messages */
-  if (preg_match('/ldap_error/', $errstr)){
-    if (preg_match('/sizelimit/', $errstr)){
-      return;
+function rmdirRecursive($path, $followLinks=false) {
+  $dir= opendir($path);
+  while($entry= readdir($dir)) {
+    if(is_file($path."/".$entry) || ((!$followLinks) && is_link($path."/".$entry))) {
+      unlink($path."/".$entry);
+    } elseif (is_dir($path."/".$entry) && $entry!='.' && $entry!='..') {
+      rmdirRecursive($path."/".$entry);
     }
   }
+  closedir($dir);
+  return rmdir($path);
+}
 
-  /* Create header as needed */
-  if ($error_collector == ""){
-    if ($_SESSION['js']==FALSE){
-      $error_collector= "<div>";
-    } else {
-      $error_collector= "<table width=\"100%\" style='background-color:#E0E0E0;border-bottom:1px solid black'><tr><td><img alt=\"\" align=\"middle\" src='".get_template_path('images/warning.png')."'>&nbsp;<font style='font-size:14px;font-weight:bold'>"._("Generating this page caused the PHP interpreter to raise some errors!")."</font></td><td align=right><button onClick='toggle(\"errorbox\")'>"._("Toggle information")."</button></td></tr></table><div id='errorbox' style='position:absolute; z-index:0; visibility: hidden'>";
-    }
-  }
-  /* Create error header */
-  $error_collector.= "<table width=\"100%\" cellspacing=0 style='background-color:#402005;color:white;border:2px solid red'><tr><td colspan=3><h1 style='color:white'>"._("PHP error")." \"$errstr\"</h1></td></tr>";
-  
-  /* Extract traceback data - if available */
-  if (function_exists('debug_backtrace')){
-    $trace= debug_backtrace();
-
-    /* Generate trace history */
-    for ($index= 1; $index<count($trace); $index++){
-      $ct= $trace[$index];
-      $loc= "";
-      if (isset($ct['class'])){
-        $loc.= _("class")." ".$ct['class'];
-        if (isset($ct['function'])){
-          $loc.= " / ";
-        }
-      }
-      if (isset($ct['function'])){
-        $loc.= _("function")." ".$ct['function'];
-      }
-      if (isset($ct['type'])){
-        switch ($ct['type']){
-          case "::":
-            $type= _("static");
-          break;
+function scan_directory($path,$sort_desc=false)
+{
+$ret = false;
 
-          case "->":
-            $type= _("method");
-          break;
-        }
-      } else {
-        $type= "-";
-      }
-      $args= "";
-      foreach ($ct['args'] as $arg){
-        $args.= htmlentities("\"$arg\", ");
-      }
-      $args= preg_replace("/, $/", "", $args);
-      if ($args == ""){
-        $args= "-";
+/* is this a dir ? */
+if(is_dir($path)) {
+  
+  /* is this path a readable one */
+  if(is_readable($path)){
+    
+    /* Get contents and write it into an array */   
+    $ret = array();    
+  
+    $dir = opendir($path);
+    
+    /* Is this a correct result ?*/
+    if($dir){
+      while($fp = readdir($dir))
+        $ret[]= $fp;
       }
-      $file= $ct['file'];
-      $line= $ct['line'];
-      $color= ($index&1)?'#404040':'606060';
-      $error_collector.= "<tr style='background-color:$color'><td style='padding-left:20px' width=\"30%\">"._("Trace")."[$index]: $loc</td>";
-      $error_collector.= "<td>"._("File").": $file ("._('Line')." $line)</td><td width=\"10%\">"._("Type").": $type</td></tr>";
-      $error_collector.= "<tr style='background-color:$color'><td colspan=3 style='padding-left:20px;'>"._("Arguments").": $args</td></tr>";
     }
   }
+  /* Sort array ascending , like scandir */
+  sort($ret);
 
-  /* Close error table */
-  $error_collector.= "</table>";
+  /* Sort descending if parameter is sort_desc is set */
+  if($sort_desc) {
+    $ret = array_reverse($ret);
+    }
 
-  /* Write to syslog */
-  gosa_log ("PHP error: $errstr ($errfile, line $errline)");
+  return($ret);
 }
 
-
-function dummy_error_handler()
-{
-}
-
-
 function clean_smarty_compile_dir($directory)
 {
   global $svn_revision;
@@ -1639,15 +1645,23 @@ function clean_smarty_compile_dir($directory)
       # contents should match the revision number
       if(!compare_revision($revision_file, $svn_revision)){
         // If revision differs, clean compile directory
-        foreach(scandir($directory) as $file) {
+        foreach(scan_directory($directory) as $file) {
+          if(($file==".")||($file=="..")) continue;
           if( is_file($directory."/".$file) &&
               is_writable($directory."/".$file)) {
               // delete file
               if(!unlink($directory."/".$file)) {
+                print_red("File ".$directory."/".$file." could not be deleted.");
                 // This should never be reached
               }
+          } elseif(is_dir($directory."/".$file) &&
+                    is_writable($directory."/".$file)) {
+                    // Just recursively delete it
+             rmdirRecursive($directory."/".$file);
           }
         }
+        // We should now create a fresh revision file
+        clean_smarty_compile_dir($directory);
       } else {
         // Revision matches, nothing to do
       }
@@ -1670,7 +1684,7 @@ function create_revision($revision_file, $revision)
     }
     fclose($fh);
   } else {
-    // Can not write to file
+    print_red("Can not write to revision file");
   }
 
   return $result;
@@ -1698,5 +1712,70 @@ function compare_revision($revision_file, $revision)
   return $result;
 }
 
+function progressbar($percentage,$width=100,$height=15,$showvalue=false)
+{
+  $str = ""; // Our return value will be saved in this var
+
+  $color  = dechex($percentage+150);
+  $color2 = dechex(150 - $percentage);
+  $bgcolor= $showvalue?"FFFFFF":"DDDDDD";
+
+  $progress = (int)(($percentage /100)*$width);
+
+  /* Abort printing out percentage, if divs are to small */
+
+
+  /* If theres a better solution for this, use it... */
+  $str = "
+    <div style=\" width:".($width)."px; 
+    height:".($height)."px;
+  background-color:#000000;
+padding:1px;\">
+
+          <div style=\" width:".($width)."px;
+        background-color:#$bgcolor;
+height:".($height)."px;\">
+
+         <div style=\" width:".$progress."px;
+height:".$height."px;
+       background-color:#".$color2.$color2.$color."; \">";
+
+
+       if(($height >10)&&($showvalue)){
+         $str.=                 "<font style=\"font-size:".($height-2)."px;color:#FF0000;align:middle;padding-left:".((int)(($width*0.4)))."px;\">
+           <b>".$percentage."%</b>
+           </font>";
+       }
+
+       $str.= "</div></div></div>";
+
+       return($str);
+}
+
+
+function search_config($arr, $name, $return)
+{
+  if (is_array($arr)){
+    foreach ($arr as $a){
+      if (isset($a['CLASS']) &&
+          strtolower($a['CLASS']) == strtolower($name)){
+
+        if (isset($a[$return])){
+          return ($a[$return]);
+        } else {
+          return ("");
+        }
+      } else {
+        $res= search_config ($a, $name, $return);
+        if ($res != ""){
+          return $res;
+        }
+      }
+    }
+  }
+  return ("");
+}
+
+
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>