Code

Updated role acl and enabled save button, if we're allowed to do *something* with...
[gosa.git] / plugins / admin / fai / class_faiTemplateEntry.inc
index 4476c548505e5bede0641538d35952fff0dae1f3..98e81bb7f66efc759a01aa1a6153f579272ca9dd 100644 (file)
@@ -9,48 +9,130 @@ class faiTemplateEntry extends plugin
 
   /* attribute list for save action */
   var $ignore_account= TRUE;
-  var $attributes   = array("Object_cn","Object_description","Object_FAItemplateFile","Object_FAItemplatePath");
+  var $attributes   = array("cn","description","FAItemplateFile","FAItemplatePath","FAImode","user","group","binary","FAIowner");
   var $objectclasses= array();
 
   var $orig_cn              = "";
 
-  var $Object_dn            = "";
-  var $Object_cn            = "";
-  var $Object_FAItemplateFile   = "";
-  var $Object_FAItemplatePath   = "";
-  var $Object_description   = "";
-  var $Object_status        = "new";
+  var $dn            = "";
+  var $cn            = "";
+  var $FAItemplateFile   = "";
+  var $FAItemplatePath   = "";
+  var $description   = "";
+  var $status        = "new";
+  var $FAImode       = "0640";
+  var $FAIowner      = "root.root";
+  var $user          = "root";
+  var $group         = "root";
+  var $binary        = false;
+
+  var $FAIstate      = "";
   
   function faiTemplateEntry ($config, $dn= NULL,$object=false)
   {
     plugin::plugin ($config, $dn);
-    if($dn != "new"){
+
+    if((isset($object['cn'])) && (!empty($object['cn']))){
       $this->orig_cn= $object['cn'];
       $this->dn=$object['dn'];
       foreach($object as $name=>$value){
-        $oname = "Object_".$name;
+        $oname = $name;
         $this->$oname=$value;
       }
+
+      if(isset($this->attrs['FAIstate'][0])){
+        $this->FAIstate = $this->attrs['FAIstate'][0];
+      }
+
     }else{
-      $this->Object_status = "new";
-      $this->orig_cn       = false;
+      $this->status = "new";
+      $this->orig_cn= false;
     }
+
+    $this->user = explode( '.', $this->FAIowner );
+    $this->group = $this->user[1];
+    $this->user = $this->user[0];
+    $_SESSION['binary'] = stripslashes($this->FAItemplateFile);
+    $_SESSION['binarytype'] = 'octet-stream';
+    $_SESSION['binaryfile'] = basename( $this->FAItemplatePath );
+    
+    $this->FAImode= sprintf("%0.4s", $this->FAImode)." ";
   }
 
+
   function execute()
   {
+    /* Call parent execute */
+    plugin::execute();
+
     /* Fill templating stuff */
     $smarty     = get_smarty();
+    $smarty->assign("rand", rand(0, 10000));
     $display = "";
 
+    if(isset($_POST['TmpFileUpload'])){
+      if($str=file_get_contents($_FILES['FAItemplateFile']['tmp_name'])){
+        $this->FAItemplateFile = addslashes($str);
+
+        /* If we don't have a filename set it from upload filename. */
+        if( 0 == strlen( $this->FAItemplatePath )){
+          $this->FAItemplatePath = $_FILES['FAItemplateFile']['name'];
+        }
+
+        $_SESSION['binary']     = stripslashes($this->FAItemplateFile);
+        $_SESSION['binarytype'] = 'octet-stream';
+        $_SESSION['binaryfile'] = basename( $this->FAItemplatePath );
+      }
+    }
+    
+    $status= _("no file uploaded yet");
+
+    $bStatus = false; // Hide download icon on default 
+    
+    if(strlen($this->FAItemplateFile)){
+      $status= sprintf(_("exists in database (size: %s bytes)"),strlen( stripslashes( $this->FAItemplateFile)));
+      $bStatus = true;  // Display download icon 
+    }
+    $smarty->assign("status",$status);
+    $smarty->assign("bStatus",$bStatus);
+
+    /* Magic quotes GPC, escapes every ' " \, to solve some security risks 
+     * If we post the escaped strings they will be escaped again
+     */
     foreach($this->attributes as $attrs){
-      $smarty->assign($attrs,stripslashes($this->$attrs));
+      if(get_magic_quotes_gpc()){
+        $smarty->assign($attrs,stripslashes($this->$attrs));
+      }else{
+        $smarty->assign($attrs,($this->$attrs));
+      }
     }
 
-    for($i =1 ; $i <= 100 ; $i++){
-      $Object_FAIprioritys[$i]=$i;
+    /* Assign file modes */
+    $tmode= "$this->FAImode ";
+    foreach (array("s", "u", "g", "o") as $type){
+      $current= substr($tmode, 0, 1);
+      $tmode=   preg_replace("/^./", "", $tmode);
+      $nr= 1;
+      while ($nr < 5){
+        if ($current & $nr){
+          $smarty->assign($type.$nr, "checked");
+        } else {
+          $smarty->assign($type.$nr, "");
+        }
+        $nr+= $nr;
+      }
+    }
+
+    $smarty->assign("FAItemplateFile","");
+
+    foreach($this->attributes as $attr){
+      if(($this->FAIstate == "freeze") || (chkacl($this->acl,$attr)!= "")){
+        $smarty->assign($attr."ACL"," disabled ");
+      }else{
+        $smarty->assign($attr."ACL","  ");
+      }
     }
-    $smarty->assign("Object_FAIprioritys",$Object_FAIprioritys);
+
     $display.= $smarty->fetch(get_template_path('faiTemplateEntry.tpl', TRUE));
     return($display);
   }
@@ -58,42 +140,72 @@ class faiTemplateEntry extends plugin
   /* Save data to object */
   function save_object()
   {
-    if(isset($_POST['SubObjectFormSubmitted'])){
+    if (!isset($_POST['FAItemplatePath'])){
+      return;
+    }
+    if((isset($_POST['SubObjectFormSubmitted'])) && ($this->FAIstate != "freeze")){
       foreach($this->attributes as $attrs){
+        if($attrs == "FAItemplateFile") 
+          continue;
+        if($attrs == "FAIowner") {
+          $this->$attrs = $_POST["user"] . '.' . $_POST["group"];
+          continue;
+        }
         if(isset($_POST[$attrs])){
           $this->$attrs = $_POST[$attrs];
         }else{
           $this->$attrs = "";
         }
       }
+      /* Save mode */
+      $tmode= "";
+      foreach (array("s", "u", "g", "o") as $type){
+        $nr= 1;
+        $dest= 0;
+        while ($nr < 5){
+          if (isset($_POST["$type$nr"])){
+            $dest+= $nr;
+          }
+          $nr+= $nr;
+        }
+        $tmode= $tmode.$dest;
+      }
+      $this->FAImode= $tmode;
     }
   }
 
   /* Check supplied data */
   function check()
   {
-    $message= array();
-    if(empty($this->Object_FAItemplateFile)){
+    /* Call common method to give check the hook */
+    $message= plugin::check();
+
+    if(empty($this->FAItemplateFile)){
       $message[]=_("Please specify a value for attribute 'file'.");
     } 
 
-    if(empty($this->Object_FAItemplatePath)){
+    if(empty($this->FAItemplatePath)){
       $message[]=_("Please specify a value for attribute 'path'.");
     } 
   
-    $str = utf8_encode("üöä");
-
-    if(preg_match("/[^a-z0-9".$str."\.,;:\-_\? ]/i",$this->Object_description)){
-      $message[] = _("Invalid character in description. Please enter a valid description.");
+    if(empty($this->cn)){
+      $message[] = _("Please enter a name.");
     }
 
-    if(empty($this->Object_cn)){
-      $message[] = _("Please enter a name.");
+    if(empty($this->user)){
+      $message[] = _("Please enter a user.");
+    }
+    elseif(preg_match("/[^0-9a-z]/i",$this->user)){
+      $message[] = _("Please enter a valid user. Only a-z/0-9 are allowed.");
     }
 
-    if(preg_match("/[^0-9a-z]/i",$this->Object_cn)){
-      $message[] = _("Please enter a valid name. Only a-Z 0-9 are allowed.");
+    if(empty($this->group)){
+      $message[] = _("Please enter a group.");
     }
+    elseif(preg_match("/[^0-9a-z]/i",$this->group)){
+      $message[] = _("Please enter a valid group. Only a-z/0-9 are allowed.");
+    }
+
     return ($message);
   }
  
@@ -101,8 +213,7 @@ class faiTemplateEntry extends plugin
   {
     $tmp=array();
     foreach($this->attributes as $attrs){ 
-      $attr = preg_replace("/^Object_/","",$attrs);
-      $tmp[$attr] = $this->$attrs;
+      $tmp[$attrs] = $this->$attrs;
     }
 
     if(($this->orig_cn)&&($tmp['cn']!=$this->orig_cn)){
@@ -111,7 +222,7 @@ class faiTemplateEntry extends plugin
     }
   
     $tmp['dn']      = $this->dn;  
-    $tmp['status']  = $this->Object_status;  
+    $tmp['status']  = $this->status;  
 
     return($tmp);
   }