Code

Fixed attachment for printer
[gosa.git] / plugins / admin / applications / class_applicationGeneric.inc
index 44c07f444b818bf795b3714e10d68ebca06dd8d8..0918b0f031cf82a4d098f4af11b6e6eea0b153f1 100644 (file)
@@ -14,6 +14,7 @@ class application extends plugin
   var $gosaApplicationName= "";
   var $gosaApplicationFlags= "";
   var $gosaApplicationIcon= "";
+  var $gotoLogonScript ="";
   var $iconData;
 
   /* Headpage attributes */
@@ -22,7 +23,7 @@ class application extends plugin
 
   /* attribute list for save action */
   var $attributes= array("cn", "description", "gosaApplicationExecute", "gosaApplicationName",
-                       "gosaApplicationFlags");
+                       "gosaApplicationFlags","gotoLogonScript");
   var $objectclasses= array("top", "gosaApplication");
 
   function application ($config, $dn= NULL)
@@ -31,58 +32,113 @@ class application extends plugin
 
        /* Load icon */
        $ldap= $config->get_ldap_link();
-       $this->iconData= $ldap->get_attribute($dn, "gosaApplicationIcon");
+       if ($dn != 'new'){
+               $this->iconData= $ldap->get_attribute($dn, "gosaApplicationIcon");
+       }
        if ($this->iconData == ""){
                $this->set_picture("");
        }
-       $_SESSION['picture']= $this->iconData;
+       $_SESSION['binary']= $this->iconData;
+       $_SESSION['binarytype']= "image/jpeg";
        $this->gosaApplicationIcon= $this->iconData;
 
        /* This is always an account */
        $this->is_account= TRUE;
 
-        if ($this->dn == "new"){
-               $ui= get_userinfo();
-               $this->base= dn2base($ui->dn);
+       if ($this->dn == "new"){
+               if(isset($_SESSION['appfilter']['depselect'])){
+                       $this->base=$_SESSION['appfilter']['depselect'];
+               }else{
+                       $ui= get_userinfo();
+                       $this->base= dn2base($ui->dn);
+               }
        } else {
-                $this->base= preg_replace ("/^[^,]+,[^,]+,/", "", $this->dn);
-        }
+               $this->base= preg_replace ("/^[^,]+,[^,]+,/", "", $this->dn);
+       }
+  }
+
+
+  function generateTemplate(){
+       $str= "# This code is part of GOsa (https://gosa.gonicus.de)\n#\n";
+
+       $values = array();
+       $names  = array();
+       if($this->parent->by_object['applicationParameters']->is_account){
+               $names = $this->parent->by_object['applicationParameters']->option_name;
+               $values = $this->parent->by_object['applicationParameters']->option_value;
+       }
+
+       if (count($names)){
+               $str .="# This plugin handles these environment variables:\n";
+       } else {
+               $str .="# This plugin handles no environment variables.\n";
+       }
+
+       foreach($names as $index => $name){
+
+               // Fix length
+               for($i = strlen($name) ; $i < 30 ; $i++){
+                       $name= $name." ";
+               }
+               if((isset($values[$index]))&&(!empty($values[$index]))){
+                       $str.= "# ".$name."\t(e.g. '".$values[$index]."')\n";
+               }else{
+                       $str.= "# ".$name."\t("._("no example").")\n";
+               }
+       }
+       $str .= "#\n".
+                       "# Don't remove the following tag, it is used for header update.\n".
+                       "### END HEADER ###";
+       return($str);
   }
 
   function execute()
   {
+       /* Call parent execute */
+       plugin::execute();
+
+       $smarty= get_smarty();
+
        /* Do we represent a valid group? */
        if (!$this->is_account && $this->parent == NULL){
-                $display= "<img src=\"images/stop.png\" align=center>&nbsp;<b>".
+                $display= "<img alt=\"\" src=\"images/stop.png\" align=\"middle\">&nbsp;<b>".
                         _("This 'dn' is no application.")."</b>";
                 return ($display);
        }
-  
-        /* Fill templating stuff */
-        $smarty= get_smarty();
-        $smarty->assign("cn", $this->cn);
-        $smarty->assign("bases", $this->config->idepartments);
+
+       $head = $this->generateTemplate();
+       $this->gotoLogonScript= $this->generateTemplate().preg_replace('/.*### END HEADER ###/s', '', $this->gotoLogonScript);
+       
+       if((isset($_POST['upLoad']))&&(isset($_FILES['ScriptFile']))){
+               $str = file_get_contents($_FILES['ScriptFile']['tmp_name']);
+               $this->gotoLogonScript = $str;
+       }
+       /* Fill templating stuff */
+       $smarty->assign("cn", $this->cn);
+       $smarty->assign("bases", $this->config->idepartments);
        if ($this->dn == "new"){
-                $smarty->assign("selectmode", "");
-                $smarty->assign("namemode", "");
-        } else {
-                $smarty->assign("namemode", "readonly");
-                $smarty->assign("selectmode", "disabled");
-        }
+               $smarty->assign("selectmode", "");
+               $smarty->assign("namemode", "");
+       } else {
+               $smarty->assign("namemode", "readonly");
+               $smarty->assign("selectmode", "disabled");
+       }
 
        /* Get random number for pictures */
-        srand((double)microtime()*1000000);
+       srand((double)microtime()*1000000);
        $smarty->assign("rand", rand(0, 10000));
 
-        /* Variables */
-        foreach(array("description", "gosaApplicationExecute", "gosaApplicationName") as $val){
-
-                $smarty->assign($val, $this->$val);
-                $smarty->assign($val."ACL", chkacl($this->acl, $val));
-        }
+       /* Variables */
+       foreach(array("description", "gosaApplicationExecute", "gosaApplicationName","cn") as $val){
+               $smarty->assign($val, $this->$val);
+               $smarty->assign($val."ACL", chkacl($this->acl, $val));
+       }
 
        /* Checkboxes */
        foreach (array("G" => "exec_for_groupmembers", "O" => "overwrite_config",
+                       "L" => "place_on_kicker",
                        "D" => "place_on_desktop", "M" => "place_in_startmenu") as $key => $val){
                if (preg_match("/$key/", $this->gosaApplicationFlags)){
                        $smarty->assign("$val", "checked");
@@ -90,6 +146,7 @@ class application extends plugin
                        $smarty->assign("$val", "");
                }
        }
+       $smarty->assign("gotoLogonScript",$this->gotoLogonScript);
        $smarty->assign("base_select", $this->base);
        $smarty->assign("gosaApplicationFlagsACL", chkacl($this->acl, "gosaApplicationFlags"));
 
@@ -97,6 +154,7 @@ class application extends plugin
        return($smarty->fetch (get_template_path('generic.tpl', TRUE)));
   }
 
+
   function remove_from_parent()
   {
        $ldap= $this->config->get_ldap_link();
@@ -113,6 +171,12 @@ class application extends plugin
                unset($og->member[$this->dn]);
                $og->save ();
        }
+       $ldap->search ("(&(objectClass=posixGroup)(gosaMemberApplication=".$this->cn."))", array("cn"));
+       while ($attrs= $ldap->fetch()){
+               $ag= new appgroup($this->config, $ldap->getDN());
+               $ag->removeApp($this->cn);
+               $ag->save ();
+       }
 
   }
 
@@ -121,6 +185,7 @@ class application extends plugin
   function save_object()
   {
        if (isset($_POST['cn'])){
+       
                plugin::save_object();
 
                /* Save application flags */
@@ -131,6 +196,9 @@ class application extends plugin
                if (isset($_POST['place_on_desktop']) && $_POST['place_on_desktop'] == 1){
                        $flag.= "D";
                }
+               if (isset($_POST['place_on_kicker']) && $_POST['place_on_kicker'] == 1){
+                       $flag.= "L";
+               }
                if (isset($_POST['place_in_startmenu']) && $_POST['place_in_startmenu'] == 1){
                        $flag.= "M";
                }
@@ -142,34 +210,60 @@ class application extends plugin
                }
 
                /* Check for picture upload */
-
-
                if (isset($_FILES['picture_file']['name']) && $_FILES['picture_file']['name'] != ""){
                        if (!is_uploaded_file($_FILES['picture_file']['tmp_name'])) {
                                print_red (_("The specified picture has not been uploaded correctly."));
                        }
        
-                       /* Load the new uploaded Photo */
-                       if(!$handle  =  imagick_ReadImage($_FILES['picture_file']['tmp_name']))  {
-                         gosa_log("Can't Load image");
-                       }
-
-                       /* Resizing image to 147x200 and blur */
-                       if(!imagick_resize($handle,48,48,IMAGICK_FILTER_GAUSSIAN,0)){
-                         gosa_log("imagick_resize failed");
-                       }
-
-                       /* Converting image to JPEG */
-                       if(!imagick_convert($handle,"PNG")) {
-                         gosa_log("Can't Convert to PNG");
+                       if (!function_exists("imagick_blob2image")){
+                               /* Get temporary file name for conversation */
+                               $fname = tempnam ("/tmp", "GOsa");
+
+                               /* Open file and write out photoData */
+                               $fp = fopen ($fname, "w");
+                               fwrite ($fp, $_FILES['picture_file']['tmp_name']);
+                               fclose ($fp);
+
+                               /* Build conversation query. Filename is generated automatically, so
+                                  we do not need any special security checks. Exec command and save
+                                  output. For PHP safe mode, you'll need a configuration which respects
+                                  image magick as executable... */
+                               $query= "convert -size 48x48 $fname -resize 48x48 +profile \"*\" -";
+                               @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $query, "Execute");
+
+                               /* Read data written by convert */
+                               $output= "";
+                               $sh= popen($query, 'r');
+                               while (!feof($sh)){
+                                       $output.= fread($sh, 4096);
+                               }
+                               pclose($sh);
+
+                               unlink($fname); 
+                       } else {
+
+                               /* Load the new uploaded Photo */
+                               if(!$handle  =  imagick_ReadImage($_FILES['picture_file']['tmp_name'])){
+                                 gosa_log("Can't Load image");
+                               }
+
+                               /* Resizing image to 147x200 and blur */
+                               if(!imagick_resize($handle,48,48,IMAGICK_FILTER_GAUSSIAN,0)){
+                                 gosa_log("imagick_resize failed");
+                               }
+
+                               /* Converting image to JPEG */
+                               if(!imagick_convert($handle,"PNG")) {
+                                 gosa_log("Can't Convert to PNG");
+                               }
+
+                               if(imagick_writeimage($handle,$_FILES['picture_file']['tmp_name'])){
+                                 gosa_log("can't write to specified folder");
+                               }
+                               
+                               imagick_free($handle);
                        }
 
-                       if(imagick_writeimage($handle,$_FILES['picture_file']['tmp_name'])){
-                         gosa_log("can't write to specified folder");
-                       }
-                       
-                       imagick_free($handle);
-
                        /* Activate new picture */
                        $this->set_picture($_FILES['picture_file']['tmp_name']);
                        }       
@@ -206,6 +300,11 @@ class application extends plugin
        if ($this->cn == ""){
                $message[]= _("Required field 'Name' is not filled.");
        }
+
+       if(preg_match("/[^a-z0-9]/",$this->cn)) {
+               $message[]=_("Invalid character in application name. Only a-z 0-9 are allowed.");
+       }
+
        if ($this->gosaApplicationExecute == ""){
                $message[]= _("Required field 'Execute' is not filled.");
        }
@@ -213,7 +312,7 @@ class application extends plugin
        /* Check for existing application */
        $ldap= $this->config->get_ldap_link();
        $ldap->cd($this->config->current["BASE"]);
-       $ldap->search("(&(objectClass=gosaApplication)(cn=$this->cn))");
+       $ldap->search("(&(objectClass=gosaApplication)(cn=$this->cn))",array("cn"));
        $ldap->fetch();
        if ($ldap->count() != 0 && $this->dn == "new"){
                $message[]= _("There's already an application with this 'Name'.");
@@ -257,7 +356,8 @@ class application extends plugin
        if (file_exists($filename)){
                $fd = fopen ($filename, "rb");
                $this->iconData= fread ($fd, filesize ($filename));
-               $_SESSION['picture']= $this->iconData;
+               $_SESSION['binary']= $this->iconData;
+               $_SESSION['binarytype']= "image/jpeg";
                $this->gosaApplicationIcon= $this->iconData;
 
                fclose ($fd);