Code

Upps
[gosa.git] / plugins / admin / fai / class_faiTemplateEntry.inc
index 21c824033fffa76b7ab8d6f9f2f05007b8536dab..57eee41245f8440b826e34ff19138ea7672279f2 100644 (file)
@@ -25,21 +25,30 @@ class faiTemplateEntry extends plugin
   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 = $name;
         $this->$oname=$value;
       }
+
+      if(isset($this->attrs['FAIstate'][0])){
+        $this->FAIstate = $this->attrs['FAIstate'][0];
+      }
+
     }else{
       $this->status = "new";
-      $this->orig_cn       = false;
+      $this->orig_cn= false;
     }
+
     $this->user = explode( '.', $this->FAIowner );
     $this->group = $this->user[1];
     $this->user = $this->user[0];
@@ -50,8 +59,12 @@ class faiTemplateEntry extends plugin
     $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));
@@ -62,17 +75,26 @@ class faiTemplateEntry extends plugin
         $this->FAItemplateFile = $str;
 
         /* If we don't have a filename set it from upload filename. */
-        if( 0 == strlen( $this->FAItemplatePath ) )
+        if( 0 == strlen( $this->FAItemplatePath )){
           $this->FAItemplatePath = $_FILES['FAItemplateFile']['name'];
+        }
+
+        $_SESSION['binary']     = $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($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
@@ -103,6 +125,14 @@ class faiTemplateEntry extends plugin
 
     $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","  ");
+      }
+    }
+
     $display.= $smarty->fetch(get_template_path('faiTemplateEntry.tpl', TRUE));
     return($display);
   }
@@ -113,7 +143,7 @@ class faiTemplateEntry extends plugin
     if (!isset($_POST['FAItemplatePath'])){
       return;
     }
-    if(isset($_POST['SubObjectFormSubmitted'])){
+    if((isset($_POST['SubObjectFormSubmitted'])) && ($this->FAIstate != "freeze")){
       foreach($this->attributes as $attrs){
         if($attrs == "FAItemplateFile") 
           continue;
@@ -127,28 +157,29 @@ class faiTemplateEntry extends plugin
           $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;
+      /* 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;
         }
-        $nr+= $nr;
+        $tmode= $tmode.$dest;
       }
-      $tmode= $tmode.$dest;
+      $this->FAImode= $tmode;
     }
-    $this->FAImode= $tmode;
   }
 
   /* Check supplied data */
   function check()
   {
-    $message= array();
+    /* Call common method to give check the hook */
+    $message= plugin::check();
+
     if(empty($this->FAItemplateFile)){
       $message[]=_("Please specify a value for attribute 'file'.");
     }